diff --git a/grammar.js b/grammar.js index 6b47c1a..0bf57f8 100644 --- a/grammar.js +++ b/grammar.js @@ -16,7 +16,6 @@ module.exports = grammar({ inline: $ => [ $._statement, - $._statements, $._terminator, $._literal, $._primary_expression, @@ -50,9 +49,19 @@ module.exports = grammar({ rules: { program: $ => optional($._statements), - _terminated_statement: $ => seq( + _statements: $ => prec(1, seq( + repeat(seq( + $._statement, + optional($.heredoc_body), + $._terminator + )), $._statement, optional($.heredoc_body), + optional($._terminator) + )), + + _terminated_statement: $ => seq( + $._statement, $._terminator ), @@ -78,13 +87,6 @@ module.exports = grammar({ $.function_definition ), - _statements: $ => seq( - repeat($._terminated_statement), - $._statement, - optional($.heredoc_body), - optional($._terminator) - ), - redirected_statement: $ => prec(-1, seq( $._statement, repeat1(choice( @@ -129,7 +131,7 @@ module.exports = grammar({ do_group: $ => seq( 'do', - repeat($._terminated_statement), + optional($._statements), 'done' ), @@ -137,7 +139,7 @@ module.exports = grammar({ 'if', $._terminated_statement, 'then', - repeat($._terminated_statement), + optional($._statements), repeat($.elif_clause), optional($.else_clause), 'fi' @@ -147,12 +149,12 @@ module.exports = grammar({ 'elif', $._terminated_statement, 'then', - repeat($._terminated_statement) + optional($._statements) ), else_clause: $ => seq( 'else', - repeat($._terminated_statement) + optional($._statements) ), case_statement: $ => seq( @@ -172,10 +174,7 @@ module.exports = grammar({ $._literal, repeat(seq('|', $._literal)), ')', - optional(seq( - repeat($._terminated_statement), - optional($._statement) - )), + optional($._statements), prec(1, ';;') ), @@ -183,10 +182,7 @@ module.exports = grammar({ $._literal, repeat(seq('|', $._literal)), ')', - optional(seq( - repeat($._terminated_statement), - optional($._statement) - )), + optional($._statements), optional(prec(1, ';;')) ), @@ -200,7 +196,7 @@ module.exports = grammar({ compound_statement: $ => seq( '{', - repeat($._terminated_statement), + optional($._statements), '}' ), diff --git a/script/known-failures.txt b/script/known-failures.txt index 1de3109..ee91a66 100644 --- a/script/known-failures.txt +++ b/script/known-failures.txt @@ -9,12 +9,8 @@ examples/bash-it/completion/available/git.completion.bash examples/bash-it/completion/available/defaults.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/themes/hawaii50/hawaii50.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/brainy/brainy.theme.bash examples/bash-it/themes/nwinkler_random_colors/nwinkler_random_colors.theme.bash -examples/bash-it/themes/kitsune/kitsune.theme.bash examples/bash-it/themes/doubletime/doubletime.theme.bash diff --git a/src/grammar.json b/src/grammar.json index 77958c0..e6340da 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -14,6 +14,71 @@ } ] }, + "_statements": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_statement" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "heredoc_body" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_terminator" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_statement" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "heredoc_body" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, "_terminated_statement": { "type": "SEQ", "members": [ @@ -21,18 +86,6 @@ "type": "SYMBOL", "name": "_statement" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "heredoc_body" - }, - { - "type": "BLANK" - } - ] - }, { "type": "SYMBOL", "name": "_terminator" @@ -112,46 +165,6 @@ } ] }, - "_statements": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_terminated_statement" - } - }, - { - "type": "SYMBOL", - "name": "_statement" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "heredoc_body" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_terminator" - }, - { - "type": "BLANK" - } - ] - } - ] - }, "redirected_statement": { "type": "PREC", "value": -1, @@ -341,11 +354,16 @@ "value": "do" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_terminated_statement" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_statements" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -369,11 +387,16 @@ "value": "then" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_terminated_statement" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_statements" + }, + { + "type": "BLANK" + } + ] }, { "type": "REPEAT", @@ -416,11 +439,16 @@ "value": "then" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_terminated_statement" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_statements" + }, + { + "type": "BLANK" + } + ] } ] }, @@ -432,11 +460,16 @@ "value": "else" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_terminated_statement" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_statements" + }, + { + "type": "BLANK" + } + ] } ] }, @@ -537,28 +570,8 @@ "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_terminated_statement" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_statement" - }, - { - "type": "BLANK" - } - ] - } - ] + "type": "SYMBOL", + "name": "_statements" }, { "type": "BLANK" @@ -606,28 +619,8 @@ "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_terminated_statement" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_statement" - }, - { - "type": "BLANK" - } - ] - } - ] + "type": "SYMBOL", + "name": "_statements" }, { "type": "BLANK" @@ -725,11 +718,16 @@ "value": "{" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_terminated_statement" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_statements" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -1739,7 +1737,7 @@ "value": -1, "content": { "type": "PATTERN", - "value": "([^\"`$]|\\\\.)+" + "value": "([^\"`$\\\\]|\\\\(.|\\n))+" } } }, @@ -2246,7 +2244,6 @@ ], "inline": [ "_statement", - "_statements", "_terminator", "_literal", "_primary_expression", diff --git a/src/parser.c b/src/parser.c index c74c409..b5749c4 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,8 +6,8 @@ #endif #define LANGUAGE_VERSION 9 -#define STATE_COUNT 2885 -#define SYMBOL_COUNT 154 +#define STATE_COUNT 4175 +#define SYMBOL_COUNT 155 #define ALIAS_COUNT 2 #define TOKEN_COUNT 97 #define EXTERNAL_TOKEN_COUNT 13 @@ -111,64 +111,65 @@ enum { anon_sym_LF = 95, anon_sym_AMP = 96, sym_program = 97, - sym__terminated_statement = 98, - 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, + sym__statements = 98, + sym__terminated_statement = 99, + sym_redirected_statement = 100, + sym_for_statement = 101, + sym_c_style_for_statement = 102, + sym_while_statement = 103, + sym_do_group = 104, + sym_if_statement = 105, + sym_elif_clause = 106, + sym_else_clause = 107, + sym_case_statement = 108, + sym_case_item = 109, + sym_last_case_item = 110, + sym_function_definition = 111, + sym_compound_statement = 112, + sym_subshell = 113, + sym_pipeline = 114, + sym_list = 115, + sym_negated_command = 116, + sym_test_command = 117, + sym_declaration_command = 118, + sym_unset_command = 119, + sym_command = 120, + sym_command_name = 121, + sym_variable_assignment = 122, + sym_subscript = 123, + sym_file_redirect = 124, + sym_heredoc_redirect = 125, + sym_heredoc_body = 126, + sym_herestring_redirect = 127, + sym__expression = 128, + sym_binary_expression = 129, + sym_unary_expression = 130, + sym_postfix_expression = 131, + sym_parenthesized_expression = 132, + sym_concatenation = 133, + sym_string = 134, + sym_array = 135, + sym_simple_expansion = 136, + sym_string_expansion = 137, + sym_expansion = 138, + sym_command_substitution = 139, + sym_process_substitution = 140, + aux_sym__statements_repeat1 = 141, + aux_sym_redirected_statement_repeat1 = 142, + aux_sym_for_statement_repeat1 = 143, + aux_sym_if_statement_repeat1 = 144, + aux_sym_case_statement_repeat1 = 145, + aux_sym_case_item_repeat1 = 146, + aux_sym_declaration_command_repeat1 = 147, + aux_sym_unset_command_repeat1 = 148, + aux_sym_command_repeat1 = 149, + aux_sym_command_repeat2 = 150, + aux_sym_heredoc_body_repeat1 = 151, + aux_sym_concatenation_repeat1 = 152, + aux_sym_string_repeat1 = 153, + aux_sym_expansion_repeat1 = 154, + alias_sym_special_variable_name = 155, + alias_sym_word = 156, }; static const char *ts_symbol_names[] = { @@ -270,6 +271,7 @@ static const char *ts_symbol_names[] = { [anon_sym_LF] = "\n", [anon_sym_AMP] = "&", [sym_program] = "program", + [sym__statements] = "_statements", [sym__terminated_statement] = "_terminated_statement", [sym_redirected_statement] = "redirected_statement", [sym_for_statement] = "for_statement", @@ -723,6 +725,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__statements] = { + .visible = false, + .named = true, + }, [sym__terminated_statement] = { .visible = false, .named = true, @@ -1043,14 +1049,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(59); if (lookahead == 'e') ADVANCE(60); + if (lookahead == 'f') + ADVANCE(69); if (lookahead == 'i') - ADVANCE(64); + ADVANCE(71); if (lookahead == '{') - ADVANCE(66); + ADVANCE(73); if (lookahead == '|') - ADVANCE(67); + ADVANCE(74); if (lookahead == '}') - ADVANCE(70); + ADVANCE(77); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') @@ -1626,8 +1634,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(4); - if (lookahead == 's') + if (lookahead == 'l') ADVANCE(61); + if (lookahead == 's') + ADVANCE(66); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1647,8 +1657,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(4); - if (lookahead == 'a') + if (lookahead == 'i') ADVANCE(62); + if (lookahead == 's') + ADVANCE(64); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1661,7 +1673,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || lookahead > ']') && lookahead != '`' && - lookahead != 'a' && (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); @@ -1669,7 +1680,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(4); - if (lookahead == 'c') + if (lookahead == 'f') ADVANCE(63); if (lookahead != 0 && lookahead != '\t' && @@ -1687,7 +1698,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(5); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_esac); + ACCEPT_TOKEN(anon_sym_elif); if (lookahead == '\\') ADVANCE(4); if (lookahead != 0 && @@ -1709,7 +1720,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(4); - if (lookahead == 'n') + if (lookahead == 'e') ADVANCE(65); if (lookahead != 0 && lookahead != '\t' && @@ -1727,7 +1738,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(5); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_else); if (lookahead == '\\') ADVANCE(4); if (lookahead != 0 && @@ -1746,25 +1757,167 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(5); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'a') + ADVANCE(67); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != 'a' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 67: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'c') ADVANCE(68); - if (lookahead == '|') - ADVANCE(69); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_PIPE_AMP); + ACCEPT_TOKEN(anon_sym_esac); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'i') + ADVANCE(70); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_fi); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 71: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'n') + ADVANCE(72); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 72: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 73: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 74: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') + ADVANCE(75); + if (lookahead == '|') + ADVANCE(76); + END_STATE(); + case 75: + ACCEPT_TOKEN(anon_sym_PIPE_AMP); + END_STATE(); + case 76: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 77: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 78: if (lookahead == 0) ADVANCE(1); if (lookahead == '!') @@ -1772,60 +1925,60 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') - ADVANCE(73); + ADVANCE(80); if (lookahead == '\'') ADVANCE(16); if (lookahead == '(') ADVANCE(18); if (lookahead == '<') - ADVANCE(74); + ADVANCE(81); if (lookahead == '>') - ADVANCE(75); + ADVANCE(82); if (lookahead == '[') ADVANCE(53); if (lookahead == '\\') - ADVANCE(76); + ADVANCE(83); if (lookahead == ']') - ADVANCE(77); + ADVANCE(84); if (lookahead == '`') ADVANCE(59); if (lookahead == '{') - ADVANCE(66); + ADVANCE(73); if (lookahead == '}') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(71); + SKIP(78); if ((lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 72: + case 79: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n') - ADVANCE(72); + ADVANCE(79); END_STATE(); - case 73: + case 80: if (lookahead == '>') ADVANCE(14); END_STATE(); - case 74: + case 81: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(37); if (lookahead == '(') ADVANCE(38); END_STATE(); - case 75: + case 82: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '&') ADVANCE(47); @@ -1834,138 +1987,146 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(50); END_STATE(); - case 76: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(71); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - case 77: - ACCEPT_TOKEN(sym__special_characters); - if (lookahead == '[') - ADVANCE(77); - if (lookahead == ']') - ADVANCE(77); - if (lookahead == '{') - ADVANCE(77); - if (lookahead == '}') - ADVANCE(77); - END_STATE(); - case 78: - if (lookahead == '#') - ADVANCE(72); - if (lookahead == ')') - ADVANCE(20); - if (lookahead == '+') - ADVANCE(79); - if (lookahead == '=') - ADVANCE(81); - if (lookahead == '[') - ADVANCE(82); - if (lookahead == '\\') - SKIP(83); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(78); - END_STATE(); - case 79: - if (lookahead == '=') - ADVANCE(80); - END_STATE(); - case 80: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - END_STATE(); - case 81: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 82: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); case 83: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(78); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 84: - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '(') - ADVANCE(85); - if (lookahead == '\\') - SKIP(86); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(84); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(87); + ACCEPT_TOKEN(sym__special_characters); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '}') + ADVANCE(84); END_STATE(); case 85: - if (lookahead == '(') - ADVANCE(19); - END_STATE(); - case 86: + if (lookahead == '#') + ADVANCE(79); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == '+') + ADVANCE(86); + if (lookahead == ';') + ADVANCE(88); + if (lookahead == '=') + ADVANCE(89); + if (lookahead == '[') + ADVANCE(90); + if (lookahead == '\\') + SKIP(91); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(84); + SKIP(85); END_STATE(); - case 87: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) + case 86: + if (lookahead == '=') ADVANCE(87); END_STATE(); + case 87: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); case 88: - if (lookahead == '!') - ADVANCE(3); - if (lookahead == '\"') - ADVANCE(6); + if (lookahead == ';') + ADVANCE(35); + END_STATE(); + case 89: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 90: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 91: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(85); + END_STATE(); + case 92: if (lookahead == '#') - ADVANCE(72); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '\'') - ADVANCE(16); + ADVANCE(79); if (lookahead == '(') - ADVANCE(89); - if (lookahead == '-') - ADVANCE(90); - if (lookahead == '<') - ADVANCE(91); - if (lookahead == '>') - ADVANCE(92); - if (lookahead == '[') - ADVANCE(77); - if (lookahead == '\\') ADVANCE(93); - if (lookahead == ']') - ADVANCE(77); - if (lookahead == '`') - ADVANCE(59); - if (lookahead == '{') - ADVANCE(77); + if (lookahead == '\\') + SKIP(94); if (lookahead == '}') ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(88); + SKIP(92); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(95); + END_STATE(); + case 93: + if (lookahead == '(') + ADVANCE(19); + END_STATE(); + case 94: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(92); + END_STATE(); + case 95: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(95); + END_STATE(); + case 96: + if (lookahead == '!') + ADVANCE(3); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(97); + if (lookahead == '-') + ADVANCE(98); + if (lookahead == '<') + ADVANCE(99); + if (lookahead == '>') + ADVANCE(100); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(101); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(96); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -1973,10 +2134,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 89: + case 97: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 90: + case 98: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(4); @@ -1997,55 +2158,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '`' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 91: + case 99: if (lookahead == '(') ADVANCE(38); END_STATE(); - case 92: + case 100: if (lookahead == '(') ADVANCE(48); END_STATE(); - case 93: + case 101: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(88); + SKIP(96); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 94: + case 102: if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') - ADVANCE(73); + ADVANCE(80); if (lookahead == '\'') ADVANCE(16); if (lookahead == '<') - ADVANCE(74); + ADVANCE(81); if (lookahead == '>') - ADVANCE(75); + ADVANCE(82); if (lookahead == '[') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\\') - ADVANCE(95); + ADVANCE(103); if (lookahead == ']') - ADVANCE(77); + ADVANCE(84); if (lookahead == '`') ADVANCE(59); if (lookahead == '{') - ADVANCE(77); + ADVANCE(84); if (lookahead == '}') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(94); + SKIP(102); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -2053,51 +2214,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 95: + case 103: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(94); + SKIP(102); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 96: + case 104: if (lookahead == '!') ADVANCE(3); if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') - ADVANCE(73); + ADVANCE(80); if (lookahead == '\'') ADVANCE(16); if (lookahead == '(') ADVANCE(18); if (lookahead == '<') - ADVANCE(74); + ADVANCE(81); if (lookahead == '>') - ADVANCE(75); + ADVANCE(82); if (lookahead == '[') ADVANCE(53); if (lookahead == '\\') - ADVANCE(97); + ADVANCE(105); if (lookahead == ']') - ADVANCE(77); + ADVANCE(84); if (lookahead == '`') ADVANCE(59); if (lookahead == '{') - ADVANCE(66); + ADVANCE(73); if (lookahead == '}') - ADVANCE(70); + ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(96); + SKIP(104); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -2105,49 +2266,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 97: + case 105: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(96); + SKIP(104); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 98: + case 106: if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') - ADVANCE(73); + ADVANCE(80); if (lookahead == '\'') ADVANCE(16); if (lookahead == '(') ADVANCE(18); if (lookahead == '<') - ADVANCE(74); + ADVANCE(81); if (lookahead == '>') - ADVANCE(75); + ADVANCE(82); if (lookahead == '[') ADVANCE(53); if (lookahead == '\\') - ADVANCE(99); + ADVANCE(107); if (lookahead == ']') - ADVANCE(77); + ADVANCE(84); if (lookahead == '`') ADVANCE(59); if (lookahead == '{') - ADVANCE(77); + ADVANCE(84); if (lookahead == '}') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(98); + SKIP(106); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -2155,16 +2316,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 99: + case 107: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(98); + SKIP(106); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 100: + case 108: if (lookahead == 0) ADVANCE(1); if (lookahead == '\n') @@ -2172,7 +2333,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') @@ -2182,35 +2343,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(101); + ADVANCE(109); if (lookahead == '>') - ADVANCE(75); + ADVANCE(82); if (lookahead == '[') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\\') - ADVANCE(102); + ADVANCE(110); if (lookahead == ']') - ADVANCE(77); + ADVANCE(84); if (lookahead == '`') ADVANCE(59); if (lookahead == '{') - ADVANCE(77); + ADVANCE(84); if (lookahead == '|') - ADVANCE(67); + ADVANCE(74); if (lookahead == '}') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(100); + SKIP(108); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(103); + ADVANCE(111); if ((lookahead < '&' || lookahead > ')')) ADVANCE(5); END_STATE(); - case 101: + case 109: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(37); @@ -2219,16 +2380,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(39); END_STATE(); - case 102: + case 110: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(100); + SKIP(108); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 103: + case 111: ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (lookahead == '\\') ADVANCE(4); @@ -2236,7 +2397,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(103); + ADVANCE(111); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2251,7 +2412,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 104: + case 112: if (lookahead == 0) ADVANCE(1); if (lookahead == '\n') @@ -2259,7 +2420,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') @@ -2269,33 +2430,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(101); + ADVANCE(109); if (lookahead == '=') - ADVANCE(105); + ADVANCE(113); if (lookahead == '>') - ADVANCE(75); + ADVANCE(82); if (lookahead == '[') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\\') - ADVANCE(106); + ADVANCE(114); if (lookahead == ']') - ADVANCE(77); + ADVANCE(84); if (lookahead == '`') ADVANCE(59); if (lookahead == '{') - ADVANCE(77); + ADVANCE(84); if (lookahead == '|') - ADVANCE(67); + ADVANCE(74); if (lookahead == '}') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(104); + SKIP(112); if ((lookahead < '&' || lookahead > ')')) ADVANCE(5); END_STATE(); - case 105: + case 113: ACCEPT_TOKEN(sym_word); if (lookahead == '=') ADVANCE(44); @@ -2316,310 +2477,170 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '~')) ADVANCE(5); END_STATE(); - case 106: + case 114: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(104); + SKIP(112); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 107: + case 115: if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(108); + ADVANCE(116); if (lookahead == '$') ADVANCE(8); if (lookahead == '\\') - ADVANCE(112); + ADVANCE(120); if (lookahead == '`') ADVANCE(59); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(113); + ADVANCE(121); if (lookahead != 0) - ADVANCE(109); + ADVANCE(117); END_STATE(); - case 108: + case 116: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(109); + ADVANCE(117); if (lookahead == '\\') - ADVANCE(111); + ADVANCE(119); if (lookahead != 0 && lookahead != '\"' && lookahead != '$' && lookahead != '`') - ADVANCE(108); + ADVANCE(116); END_STATE(); - case 109: + case 117: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\\') - ADVANCE(110); + ADVANCE(118); if (lookahead != 0 && lookahead != '\"' && lookahead != '$' && lookahead != '`') - ADVANCE(109); + ADVANCE(117); END_STATE(); - case 110: - ACCEPT_TOKEN(sym__string_content); + case 118: if (lookahead == '\n') - ADVANCE(109); - if (lookahead == '\\') - ADVANCE(110); - if (lookahead == '\"' || - lookahead == '$' || - lookahead == '`') - ADVANCE(109); + ADVANCE(117); if (lookahead != 0) - ADVANCE(109); + ADVANCE(117); END_STATE(); - case 111: - ACCEPT_TOKEN(sym__string_content); + case 119: + ACCEPT_TOKEN(sym_comment); if (lookahead == '\n') - ADVANCE(109); - if (lookahead == '\\') - ADVANCE(111); - if (lookahead == '\"' || - lookahead == '$' || - lookahead == '`') - ADVANCE(108); + ADVANCE(117); if (lookahead != 0) - ADVANCE(108); + ADVANCE(116); END_STATE(); - case 112: - ACCEPT_TOKEN(sym__string_content); + case 120: if (lookahead == '\n') - ADVANCE(113); - if (lookahead == '\\') - ADVANCE(110); + ADVANCE(121); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(113); - if (lookahead == '\"' || - lookahead == '$' || - lookahead == '`') - ADVANCE(109); + ADVANCE(121); if (lookahead != 0) - ADVANCE(109); + ADVANCE(117); END_STATE(); - case 113: + case 121: ACCEPT_TOKEN(sym__string_content); if (lookahead == '#') - ADVANCE(108); + ADVANCE(116); if (lookahead == '\\') - ADVANCE(112); + ADVANCE(120); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(113); + ADVANCE(121); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && lookahead != '`') - ADVANCE(109); + ADVANCE(117); END_STATE(); - case 114: + case 122: if (lookahead == '!') - ADVANCE(115); + ADVANCE(123); if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') ADVANCE(7); if (lookahead == '$') - ADVANCE(116); + ADVANCE(124); if (lookahead == '\'') ADVANCE(16); if (lookahead == '*') - ADVANCE(117); + ADVANCE(125); if (lookahead == '-') - ADVANCE(118); + ADVANCE(126); if (lookahead == '0') - ADVANCE(119); + ADVANCE(127); if (lookahead == '?') - ADVANCE(120); + ADVANCE(128); if (lookahead == '@') - ADVANCE(121); + ADVANCE(129); if (lookahead == '\\') - SKIP(122); + SKIP(130); if (lookahead == '_') - ADVANCE(123); + ADVANCE(131); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(114); + SKIP(122); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(87); + ADVANCE(95); END_STATE(); - case 115: + case 123: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 116: + case 124: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 117: + case 125: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 118: + case 126: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 119: + case 127: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(87); + ADVANCE(95); END_STATE(); - case 120: + case 128: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 121: + case 129: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 122: + case 130: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(114); + SKIP(122); END_STATE(); - case 123: + case 131: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(87); - END_STATE(); - case 124: - 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(89); - if (lookahead == ';') - ADVANCE(34); - if (lookahead == '<') - ADVANCE(101); - if (lookahead == '=') - ADVANCE(105); - if (lookahead == '>') - ADVANCE(75); - if (lookahead == '[') - ADVANCE(77); - if (lookahead == '\\') - ADVANCE(125); - 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(124); - if ((lookahead < '&' || lookahead > ')')) - ADVANCE(5); - END_STATE(); - case 125: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(124); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - 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); - 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') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '&') - ADVANCE(12); - if (lookahead == ';') - ADVANCE(34); - if (lookahead == '<') - ADVANCE(129); - if (lookahead == '>') - ADVANCE(130); - if (lookahead == '\\') - SKIP(131); - if (lookahead == '|') - ADVANCE(67); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(128); - END_STATE(); - 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(128); + ADVANCE(95); END_STATE(); case 132: if (lookahead == 0) @@ -2629,33 +2650,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') ADVANCE(12); if (lookahead == '\'') ADVANCE(16); + if (lookahead == '(') + ADVANCE(97); if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(101); + ADVANCE(109); + if (lookahead == '=') + ADVANCE(113); if (lookahead == '>') - ADVANCE(75); + ADVANCE(82); if (lookahead == '[') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\\') ADVANCE(133); if (lookahead == ']') - ADVANCE(77); + ADVANCE(84); if (lookahead == '`') ADVANCE(59); if (lookahead == '{') - ADVANCE(77); + ADVANCE(84); if (lookahead == '|') - ADVANCE(67); + ADVANCE(74); if (lookahead == '}') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') @@ -2675,48 +2700,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 134: 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(105); - if (lookahead == '>') - ADVANCE(75); - if (lookahead == '[') - ADVANCE(77); + ADVANCE(79); if (lookahead == '\\') - ADVANCE(135); - if (lookahead == ']') - ADVANCE(77); - if (lookahead == '`') - ADVANCE(59); - if (lookahead == '{') - ADVANCE(77); - if (lookahead == '|') - ADVANCE(67); - if (lookahead == '}') - ADVANCE(77); + SKIP(135); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(134); - if ((lookahead < '&' || lookahead > ')')) - ADVANCE(5); END_STATE(); case 135: if (lookahead == '\t' || @@ -2724,41 +2716,190 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(134); - if (lookahead != 0) - ADVANCE(5); END_STATE(); case 136: - 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(89); + ADVANCE(79); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ';') + ADVANCE(34); if (lookahead == '<') - ADVANCE(91); - if (lookahead == '>') - ADVANCE(92); - if (lookahead == '[') - ADVANCE(77); - if (lookahead == '\\') ADVANCE(137); - if (lookahead == ']') - ADVANCE(77); - if (lookahead == '`') - ADVANCE(59); - if (lookahead == '{') - ADVANCE(77); - if (lookahead == '}') - ADVANCE(77); + if (lookahead == '>') + ADVANCE(138); + if (lookahead == '\\') + SKIP(139); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(136); + END_STATE(); + case 137: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') + ADVANCE(37); + if (lookahead == '<') + ADVANCE(39); + END_STATE(); + case 138: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') + ADVANCE(47); + if (lookahead == '>') + ADVANCE(50); + END_STATE(); + case 139: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(136); + END_STATE(); + case 140: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(141); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(140); + if ((lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 141: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(140); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 142: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '=') + ADVANCE(113); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(143); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(142); + if ((lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 143: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(142); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 144: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(97); + if (lookahead == '<') + ADVANCE(99); + if (lookahead == '>') + ADVANCE(100); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(145); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(144); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -2766,16 +2907,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 137: + case 145: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(136); + SKIP(144); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 138: + case 146: if (lookahead == '\n') ADVANCE(2); if (lookahead == '!') @@ -2783,385 +2924,241 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') - ADVANCE(139); + ADVANCE(147); if (lookahead == '\'') ADVANCE(16); if (lookahead == '(') - ADVANCE(89); - if (lookahead == ')') - ADVANCE(20); + ADVANCE(97); if (lookahead == '-') - ADVANCE(90); + ADVANCE(98); if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(91); + ADVANCE(99); if (lookahead == '>') - ADVANCE(92); + ADVANCE(100); if (lookahead == '[') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\\') - ADVANCE(140); + ADVANCE(148); if (lookahead == ']') - ADVANCE(77); + ADVANCE(84); if (lookahead == '`') ADVANCE(59); if (lookahead == '{') - ADVANCE(77); + ADVANCE(84); if (lookahead == '}') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(138); + SKIP(146); if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 139: + case 147: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 140: + case 148: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(138); + SKIP(146); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 141: + case 149: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); if (lookahead == '&') - ADVANCE(139); + ADVANCE(147); if (lookahead == ';') ADVANCE(34); if (lookahead == '\\') - SKIP(142); + SKIP(150); if (lookahead == 'i') - ADVANCE(143); + ADVANCE(151); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(141); + SKIP(149); END_STATE(); - case 142: + case 150: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(141); + SKIP(149); END_STATE(); - case 143: + case 151: if (lookahead == 'n') - ADVANCE(144); + ADVANCE(152); END_STATE(); - case 144: + case 152: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 145: + case 153: if (lookahead == '!') - ADVANCE(146); + ADVANCE(154); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); if (lookahead == '&') - ADVANCE(148); + ADVANCE(156); if (lookahead == ')') - ADVANCE(149); - if (lookahead == '+') - ADVANCE(151); - if (lookahead == '-') - ADVANCE(153); - if (lookahead == '<') ADVANCE(157); - if (lookahead == '=') - ADVANCE(158); - if (lookahead == '>') + if (lookahead == '+') + ADVANCE(159); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '<') + ADVANCE(165); + if (lookahead == '=') + ADVANCE(166); + if (lookahead == '>') + ADVANCE(169); if (lookahead == '\\') - SKIP(162); + SKIP(170); if (lookahead == '|') - ADVANCE(163); + ADVANCE(171); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(145); + SKIP(153); END_STATE(); - case 146: + case 154: if (lookahead == '=') - ADVANCE(147); + ADVANCE(155); END_STATE(); - case 147: + case 155: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 148: + case 156: if (lookahead == '&') ADVANCE(13); END_STATE(); - case 149: + case 157: if (lookahead == ')') - ADVANCE(150); + ADVANCE(158); END_STATE(); - case 150: + case 158: ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); END_STATE(); - case 151: + case 159: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '+') - ADVANCE(152); + ADVANCE(160); if (lookahead == '=') - ADVANCE(80); + ADVANCE(87); END_STATE(); - case 152: + case 160: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 153: + case 161: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') - ADVANCE(154); + ADVANCE(162); if (lookahead == '=') - ADVANCE(155); + ADVANCE(163); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(156); + ADVANCE(164); END_STATE(); - case 154: + case 162: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 155: + case 163: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 156: + case 164: ACCEPT_TOKEN(sym_test_operator); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(156); + ADVANCE(164); END_STATE(); - case 157: + case 165: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '=') ADVANCE(42); END_STATE(); - case 158: + case 166: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') - ADVANCE(159); + ADVANCE(167); if (lookahead == '~') - ADVANCE(160); + ADVANCE(168); END_STATE(); - case 159: + case 167: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 160: + case 168: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 161: + case 169: 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(164); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - case 167: - 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(168); - 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(167); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(103); - if ((lookahead < '&' || lookahead > ')')) - ADVANCE(5); - END_STATE(); - case 168: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(167); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - case 169: - 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); - if (lookahead == ';') - ADVANCE(34); - if (lookahead == '<') - ADVANCE(101); - if (lookahead == '=') - ADVANCE(105); - if (lookahead == '>') - ADVANCE(75); - if (lookahead == '[') - ADVANCE(77); - if (lookahead == '\\') - ADVANCE(170); - 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(169); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); case 170: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(169); - if (lookahead != 0) - ADVANCE(5); + SKIP(153); END_STATE(); case 171: - 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(172); if (lookahead == '|') - ADVANCE(67); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(171); + ADVANCE(76); END_STATE(); case 172: + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '(') + ADVANCE(97); + if (lookahead == '\\') + SKIP(173); + if (lookahead == 'd') + ADVANCE(174); + if (lookahead == '{') + ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(171); + SKIP(172); END_STATE(); case 173: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(172); + END_STATE(); + case 174: + if (lookahead == 'o') + ADVANCE(175); + END_STATE(); + case 175: + if (lookahead == 'n') + ADVANCE(176); + END_STATE(); + case 176: + if (lookahead == 'e') + ADVANCE(177); + END_STATE(); + case 177: + ACCEPT_TOKEN(anon_sym_done); + END_STATE(); + case 178: if (lookahead == 0) ADVANCE(1); if (lookahead == '\n') @@ -3169,7 +3166,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') @@ -3181,46 +3178,103 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(101); + ADVANCE(109); if (lookahead == '>') - ADVANCE(75); + ADVANCE(82); if (lookahead == '[') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\\') - ADVANCE(174); + ADVANCE(179); if (lookahead == ']') - ADVANCE(77); + ADVANCE(84); if (lookahead == '`') ADVANCE(59); if (lookahead == '{') - ADVANCE(77); + ADVANCE(84); if (lookahead == '|') - ADVANCE(67); + ADVANCE(74); if (lookahead == '}') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(173); + SKIP(178); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(111); if ((lookahead < '&' || lookahead > ')')) ADVANCE(5); END_STATE(); - case 174: + case 179: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(173); + SKIP(178); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 175: - if (lookahead == 0) - ADVANCE(1); + case 180: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(97); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '=') + ADVANCE(113); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(181); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(180); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 181: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(180); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 182: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); if (lookahead == '&') ADVANCE(12); if (lookahead == ')') @@ -3228,111 +3282,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(129); + ADVANCE(137); if (lookahead == '>') - ADVANCE(130); + ADVANCE(138); if (lookahead == '\\') - SKIP(176); - if (lookahead == '`') - ADVANCE(59); - if (lookahead == 'e') - ADVANCE(177); + SKIP(183); if (lookahead == '|') - ADVANCE(67); + ADVANCE(74); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(175); - END_STATE(); - case 176: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(175); - END_STATE(); - case 177: - 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(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(182); - if (lookahead == ']') - ADVANCE(183); - if (lookahead == '|') - ADVANCE(163); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(181); - END_STATE(); - case 182: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(181); END_STATE(); 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(182); + END_STATE(); + case 184: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(185); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(184); + if ((lookahead < '&' || lookahead > ')')) + ADVANCE(5); END_STATE(); case 185: if (lookahead == '\t' || @@ -3340,270 +3351,138 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(184); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 186: - if (lookahead == ']') - ADVANCE(57); - END_STATE(); - case 187: - if (lookahead == '\"') - ADVANCE(6); - if (lookahead == '#') - ADVANCE(7); - if (lookahead == '$') - ADVANCE(116); - if (lookahead == '*') - ADVANCE(117); - if (lookahead == '-') - ADVANCE(118); - if (lookahead == '0') - ADVANCE(188); - if (lookahead == '?') - ADVANCE(120); - if (lookahead == '@') - ADVANCE(121); - if (lookahead == '\\') - ADVANCE(190); - if (lookahead == '_') - ADVANCE(192); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(191); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(189); - if (lookahead != 0 && - (lookahead < '_' || lookahead > 'z')) - ADVANCE(109); - END_STATE(); - case 188: - ACCEPT_TOKEN(anon_sym_0); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(189); - END_STATE(); - 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(189); - END_STATE(); - case 190: - ACCEPT_TOKEN(sym__string_content); + if (lookahead == 0) + ADVANCE(1); if (lookahead == '\n') - ADVANCE(191); - if (lookahead == '\\') - ADVANCE(110); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(191); - if (lookahead == '\"' || - lookahead == '$' || - lookahead == '`') - ADVANCE(109); - if (lookahead != 0) - ADVANCE(109); - END_STATE(); - case 191: - ACCEPT_TOKEN(sym__string_content); + ADVANCE(2); if (lookahead == '#') - ADVANCE(7); - if (lookahead == '*') - ADVANCE(117); - if (lookahead == '-') - ADVANCE(118); - if (lookahead == '0') - ADVANCE(188); - if (lookahead == '?') - ADVANCE(120); - if (lookahead == '@') - ADVANCE(121); - if (lookahead == '\\') - ADVANCE(190); - if (lookahead == '_') - ADVANCE(192); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(191); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(189); - if (lookahead != 0 && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '_' || lookahead > 'z')) - ADVANCE(109); - END_STATE(); - case 192: - ACCEPT_TOKEN(anon_sym__); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(189); - END_STATE(); - case 193: - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '$') - ADVANCE(116); - if (lookahead == '*') - ADVANCE(117); - if (lookahead == '-') - ADVANCE(118); - if (lookahead == '0') - ADVANCE(119); - if (lookahead == '?') - ADVANCE(120); - if (lookahead == '@') - ADVANCE(121); - if (lookahead == '\\') - SKIP(194); - if (lookahead == '_') - ADVANCE(123); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(193); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(87); - END_STATE(); - case 194: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(193); - END_STATE(); - case 195: - if (lookahead == '\"') - ADVANCE(6); - if (lookahead == '#') - ADVANCE(7); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '%') - ADVANCE(11); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == '-') - ADVANCE(196); - if (lookahead == '/') - ADVANCE(29); - if (lookahead == ':') - ADVANCE(31); + ADVANCE(79); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == ';') + ADVANCE(34); if (lookahead == '<') - ADVANCE(91); - if (lookahead == '=') - ADVANCE(197); + ADVANCE(137); if (lookahead == '>') - ADVANCE(92); - if (lookahead == '[') - ADVANCE(77); + ADVANCE(138); if (lookahead == '\\') - ADVANCE(198); - if (lookahead == ']') - ADVANCE(77); + SKIP(187); if (lookahead == '`') ADVANCE(59); - if (lookahead == '{') - ADVANCE(77); - if (lookahead == '}') - ADVANCE(70); + if (lookahead == 'd') + ADVANCE(174); + if (lookahead == 'e') + ADVANCE(188); + if (lookahead == 'f') + ADVANCE(197); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(186); + END_STATE(); + case 187: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(195); - if (lookahead != 0 && - (lookahead < '\"' || lookahead > ')') && - (lookahead < ':' || lookahead > '>') && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); + SKIP(186); + END_STATE(); + case 188: + if (lookahead == 'l') + ADVANCE(189); + if (lookahead == 's') + ADVANCE(194); + END_STATE(); + case 189: + if (lookahead == 'i') + ADVANCE(190); + if (lookahead == 's') + ADVANCE(192); + END_STATE(); + case 190: + if (lookahead == 'f') + ADVANCE(191); + END_STATE(); + case 191: + ACCEPT_TOKEN(anon_sym_elif); + END_STATE(); + case 192: + if (lookahead == 'e') + ADVANCE(193); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 194: + if (lookahead == 'a') + ADVANCE(195); + END_STATE(); + case 195: + if (lookahead == 'c') + ADVANCE(196); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '\\') - ADVANCE(4); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); + ACCEPT_TOKEN(anon_sym_esac); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '\\') - ADVANCE(4); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); + if (lookahead == 'i') + ADVANCE(198); END_STATE(); case 198: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(195); - if (lookahead != 0) - ADVANCE(5); + ACCEPT_TOKEN(anon_sym_fi); END_STATE(); case 199: if (lookahead == '\n') ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); if (lookahead == '&') ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(129); + ADVANCE(109); if (lookahead == '>') - ADVANCE(130); + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); if (lookahead == '\\') - SKIP(200); + ADVANCE(200); + if (lookahead == ']') + ADVANCE(84); if (lookahead == '`') ADVANCE(59); + if (lookahead == '{') + ADVANCE(84); if (lookahead == '|') - ADVANCE(67); + ADVANCE(74); + if (lookahead == '}') + ADVANCE(77); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(199); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); END_STATE(); case 200: if (lookahead == '\t' || @@ -3611,28 +3490,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(199); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 201: - if (lookahead == 0) - ADVANCE(1); if (lookahead == '\n') ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); if (lookahead == '&') - ADVANCE(139); - if (lookahead == ')') - ADVANCE(20); + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); if (lookahead == ';') ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '=') + ADVANCE(113); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); if (lookahead == '\\') - SKIP(202); + ADVANCE(202); + if (lookahead == ']') + ADVANCE(84); if (lookahead == '`') ADVANCE(59); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(77); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(201); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); END_STATE(); case 202: if (lookahead == '\t' || @@ -3640,24 +3542,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(201); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 203: - if (lookahead == 0) - ADVANCE(1); if (lookahead == '\n') ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); if (lookahead == '&') - ADVANCE(139); + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(97); if (lookahead == ';') ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '=') + ADVANCE(113); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); if (lookahead == '\\') - SKIP(204); + ADVANCE(204); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(77); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(203); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); END_STATE(); case 204: if (lookahead == '\t' || @@ -3665,43 +3596,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(203); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 205: - if (lookahead == '\"') - ADVANCE(6); + if (lookahead == '\n') + ADVANCE(2); if (lookahead == '#') - ADVANCE(72); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '\'') - ADVANCE(16); + ADVANCE(79); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ';') + ADVANCE(34); if (lookahead == '<') - ADVANCE(91); + ADVANCE(137); if (lookahead == '>') - ADVANCE(92); - if (lookahead == '[') - ADVANCE(77); + ADVANCE(138); if (lookahead == '\\') - ADVANCE(206); - if (lookahead == ']') - ADVANCE(77); - if (lookahead == '`') - ADVANCE(59); - if (lookahead == '{') - ADVANCE(77); + SKIP(206); + if (lookahead == '|') + ADVANCE(74); if (lookahead == '}') ADVANCE(77); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(205); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); END_STATE(); case 206: if (lookahead == '\t' || @@ -3709,44 +3629,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(205); - if (lookahead != 0) - ADVANCE(5); END_STATE(); case 207: + if (lookahead == '\n') + ADVANCE(2); if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); if (lookahead == '$') ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); if (lookahead == '\'') ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); if (lookahead == '<') - ADVANCE(91); + ADVANCE(109); if (lookahead == '>') - ADVANCE(92); + ADVANCE(82); if (lookahead == '[') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\\') ADVANCE(208); if (lookahead == ']') - ADVANCE(183); + ADVANCE(84); if (lookahead == '`') ADVANCE(59); if (lookahead == '{') - ADVANCE(77); + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); if (lookahead == '}') ADVANCE(77); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(207); if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) + (lookahead < '&' || lookahead > ')')) ADVANCE(5); END_STATE(); case 208: @@ -3759,43 +3681,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(5); END_STATE(); case 209: - if (lookahead == '\"') - ADVANCE(6); + if (lookahead == '!') + ADVANCE(154); if (lookahead == '#') - ADVANCE(72); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == ')') - ADVANCE(20); + ADVANCE(79); + if (lookahead == '&') + ADVANCE(156); + if (lookahead == '+') + ADVANCE(159); + if (lookahead == '-') + ADVANCE(161); if (lookahead == '<') - ADVANCE(91); + ADVANCE(165); + if (lookahead == '=') + ADVANCE(166); if (lookahead == '>') - ADVANCE(92); - if (lookahead == '[') - ADVANCE(77); + ADVANCE(169); if (lookahead == '\\') - ADVANCE(210); + SKIP(210); if (lookahead == ']') - ADVANCE(77); - if (lookahead == '`') - ADVANCE(59); - if (lookahead == '{') - ADVANCE(77); - if (lookahead == '}') - ADVANCE(77); + ADVANCE(211); + if (lookahead == '|') + ADVANCE(171); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(209); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); END_STATE(); case 210: if (lookahead == '\t' || @@ -3803,218 +3715,178 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(209); - if (lookahead != 0) - ADVANCE(5); END_STATE(); case 211: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '!') - ADVANCE(146); - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '&') - ADVANCE(212); - if (lookahead == '+') - ADVANCE(151); - if (lookahead == '-') - ADVANCE(153); - if (lookahead == ';') - ADVANCE(34); - if (lookahead == '<') - ADVANCE(157); - if (lookahead == '=') - ADVANCE(158); - if (lookahead == '>') - ADVANCE(161); - if (lookahead == '\\') - SKIP(213); - if (lookahead == '|') - ADVANCE(163); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(211); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '!') + ADVANCE(154); + if (lookahead == '#') + ADVANCE(79); if (lookahead == '&') - ADVANCE(13); + ADVANCE(156); + if (lookahead == '+') + ADVANCE(159); + if (lookahead == '-') + ADVANCE(161); + if (lookahead == '<') + ADVANCE(165); + if (lookahead == '=') + ADVANCE(166); + if (lookahead == '>') + ADVANCE(169); + if (lookahead == '\\') + SKIP(213); + if (lookahead == ']') + ADVANCE(214); + if (lookahead == '|') + ADVANCE(171); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(212); END_STATE(); case 213: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(211); + SKIP(212); END_STATE(); case 214: - 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(215); - if (lookahead == '|') - ADVANCE(163); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(214); + if (lookahead == ']') + ADVANCE(57); END_STATE(); case 215: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(7); + if (lookahead == '$') + ADVANCE(124); + if (lookahead == '*') + ADVANCE(125); + if (lookahead == '-') + ADVANCE(126); + if (lookahead == '0') + ADVANCE(216); + if (lookahead == '?') + ADVANCE(128); + if (lookahead == '@') + ADVANCE(129); + if (lookahead == '\\') + ADVANCE(218); + if (lookahead == '_') + ADVANCE(220); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(214); + ADVANCE(219); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(217); + if (lookahead != 0 && + (lookahead < '_' || lookahead > 'z')) + ADVANCE(117); END_STATE(); case 216: - 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(217); - if (lookahead == ']') - ADVANCE(186); - if (lookahead == '|') - ADVANCE(163); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(216); + ACCEPT_TOKEN(anon_sym_0); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(217); END_STATE(); case 217: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(216); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(217); END_STATE(); case 218: - 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 == ';') + if (lookahead == '\n') ADVANCE(219); - if (lookahead == '<') - ADVANCE(74); - if (lookahead == '>') - ADVANCE(75); - if (lookahead == '[') - ADVANCE(53); - if (lookahead == '\\') - ADVANCE(220); - if (lookahead == ']') - ADVANCE(77); - if (lookahead == '`') - ADVANCE(59); - if (lookahead == '{') - ADVANCE(66); - if (lookahead == '}') - ADVANCE(77); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(218); - if (lookahead != 0 && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); + ADVANCE(219); + if (lookahead != 0) + ADVANCE(117); END_STATE(); case 219: - if (lookahead == ';') - ADVANCE(35); - END_STATE(); - case 220: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '#') + ADVANCE(7); + if (lookahead == '*') + ADVANCE(125); + if (lookahead == '-') + ADVANCE(126); + if (lookahead == '0') + ADVANCE(216); + if (lookahead == '?') + ADVANCE(128); + if (lookahead == '@') + ADVANCE(129); + if (lookahead == '\\') + ADVANCE(218); + if (lookahead == '_') + ADVANCE(220); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(218); - if (lookahead != 0) - ADVANCE(5); + ADVANCE(219); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(217); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '_' || lookahead > 'z')) + ADVANCE(117); + END_STATE(); + case 220: + ACCEPT_TOKEN(anon_sym__); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(217); END_STATE(); case 221: - if (lookahead == '\"') - ADVANCE(6); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); if (lookahead == '$') - ADVANCE(8); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == '<') - ADVANCE(91); - if (lookahead == '>') - ADVANCE(92); - if (lookahead == '[') - ADVANCE(77); + ADVANCE(124); + if (lookahead == '*') + ADVANCE(125); + if (lookahead == '-') + ADVANCE(126); + if (lookahead == '0') + ADVANCE(127); + if (lookahead == '?') + ADVANCE(128); + if (lookahead == '@') + ADVANCE(129); if (lookahead == '\\') - ADVANCE(222); - if (lookahead == ']') - ADVANCE(77); - if (lookahead == '`') - ADVANCE(59); - if (lookahead == '{') - ADVANCE(77); - if (lookahead == '}') - ADVANCE(70); + SKIP(222); + if (lookahead == '_') + ADVANCE(131); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(221); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(95); END_STATE(); case 222: if (lookahead == '\t' || @@ -4022,8 +3894,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(221); - if (lookahead != 0) - ADVANCE(5); END_STATE(); case 223: if (lookahead == '\"') @@ -4037,27 +3907,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(16); if (lookahead == '-') - ADVANCE(196); + ADVANCE(224); + if (lookahead == '/') + ADVANCE(29); if (lookahead == ':') ADVANCE(31); if (lookahead == '<') - ADVANCE(91); + ADVANCE(99); if (lookahead == '=') - ADVANCE(197); + ADVANCE(225); if (lookahead == '>') - ADVANCE(92); + ADVANCE(100); if (lookahead == '[') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\\') - ADVANCE(224); + ADVANCE(226); if (lookahead == ']') - ADVANCE(77); + ADVANCE(84); if (lookahead == '`') ADVANCE(59); if (lookahead == '{') - ADVANCE(77); + ADVANCE(84); if (lookahead == '}') - ADVANCE(70); + ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4070,6 +3942,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(5); END_STATE(); case 224: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 225: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 226: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4078,72 +3988,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(5); END_STATE(); - case 225: - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '+') - ADVANCE(79); - if (lookahead == '=') - ADVANCE(81); - if (lookahead == '\\') - SKIP(226); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(225); - END_STATE(); - case 226: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(225); - END_STATE(); case 227: - if (lookahead == '!') - ADVANCE(3); - if (lookahead == '\"') - ADVANCE(6); + if (lookahead == '\n') + ADVANCE(2); if (lookahead == '#') - ADVANCE(72); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == '(') - ADVANCE(89); - if (lookahead == ')') - ADVANCE(149); - if (lookahead == '-') - ADVANCE(90); + ADVANCE(79); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ';') + ADVANCE(34); if (lookahead == '<') - ADVANCE(91); + ADVANCE(137); if (lookahead == '>') - ADVANCE(92); - if (lookahead == '[') - ADVANCE(77); + ADVANCE(138); if (lookahead == '\\') - ADVANCE(228); - if (lookahead == ']') - ADVANCE(77); + SKIP(228); if (lookahead == '`') ADVANCE(59); - if (lookahead == '{') - ADVANCE(77); - if (lookahead == '}') - ADVANCE(77); + if (lookahead == '|') + ADVANCE(74); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(227); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); END_STATE(); case 228: if (lookahead == '\t' || @@ -4151,48 +4018,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(227); - if (lookahead != 0) - ADVANCE(5); END_STATE(); case 229: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '\n') ADVANCE(2); - if (lookahead == '\"') - ADVANCE(6); if (lookahead == '#') - ADVANCE(72); - if (lookahead == '$') - ADVANCE(8); + ADVANCE(79); if (lookahead == '&') - ADVANCE(139); - if (lookahead == '\'') - ADVANCE(16); + ADVANCE(147); + if (lookahead == ')') + ADVANCE(20); if (lookahead == ';') ADVANCE(34); - if (lookahead == '<') - ADVANCE(91); - if (lookahead == '>') - ADVANCE(92); - if (lookahead == '[') - ADVANCE(77); if (lookahead == '\\') - ADVANCE(230); - if (lookahead == ']') - ADVANCE(77); + SKIP(230); if (lookahead == '`') ADVANCE(59); - if (lookahead == '{') - ADVANCE(77); - if (lookahead == '}') - ADVANCE(77); + if (lookahead == 'd') + ADVANCE(174); + if (lookahead == 'e') + ADVANCE(188); + if (lookahead == 'f') + ADVANCE(197); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(229); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); END_STATE(); case 230: if (lookahead == '\t' || @@ -4200,37 +4053,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(229); - if (lookahead != 0) - ADVANCE(5); END_STATE(); case 231: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '!') - ADVANCE(146); + ADVANCE(3); + if (lookahead == '\"') + ADVANCE(6); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); if (lookahead == '&') - ADVANCE(148); + ADVANCE(80); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(18); if (lookahead == ')') ADVANCE(20); - if (lookahead == '+') - ADVANCE(151); - if (lookahead == '-') - ADVANCE(153); + if (lookahead == ';') + ADVANCE(88); if (lookahead == '<') - ADVANCE(157); - if (lookahead == '=') - ADVANCE(158); + ADVANCE(81); if (lookahead == '>') - ADVANCE(161); + ADVANCE(82); + if (lookahead == '[') + ADVANCE(53); if (lookahead == '\\') - SKIP(232); - if (lookahead == '|') - ADVANCE(233); + ADVANCE(232); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(73); + if (lookahead == '}') + ADVANCE(84); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(231); + if ((lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 232: if (lookahead == '\t' || @@ -4238,44 +4105,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(231); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 233: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') - ADVANCE(69); + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '&') + ADVANCE(147); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '\\') + SKIP(234); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(233); END_STATE(); case 234: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(233); + END_STATE(); + case 235: if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); if (lookahead == '$') ADVANCE(8); if (lookahead == '\'') ADVANCE(16); if (lookahead == '<') - ADVANCE(91); + ADVANCE(99); if (lookahead == '>') - ADVANCE(92); + ADVANCE(100); if (lookahead == '[') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\\') - ADVANCE(235); + ADVANCE(236); if (lookahead == ']') - ADVANCE(77); + ADVANCE(84); if (lookahead == '`') ADVANCE(59); - if (lookahead == 'e') - ADVANCE(60); if (lookahead == '{') - ADVANCE(77); + ADVANCE(84); if (lookahead == '}') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(234); + SKIP(235); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -4283,63 +4172,100 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 235: + case 236: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(234); + SKIP(235); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 236: - if (lookahead == '#') - ADVANCE(72); - if (lookahead == ')') - ADVANCE(20); - if (lookahead == '\\') - SKIP(237); - if (lookahead == '|') - ADVANCE(238); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(236); - END_STATE(); case 237: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(99); + if (lookahead == '>') + ADVANCE(100); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(238); + if (lookahead == ']') + ADVANCE(211); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '}') + ADVANCE(84); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(236); + SKIP(237); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 238: - ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(237); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 239: - if (lookahead == '\n') - ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); if (lookahead == '#') - ADVANCE(72); - if (lookahead == '&') - ADVANCE(12); - if (lookahead == ';') - ADVANCE(34); + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ')') + ADVANCE(20); if (lookahead == '<') - ADVANCE(129); + ADVANCE(99); if (lookahead == '>') - ADVANCE(130); + ADVANCE(100); + if (lookahead == '[') + ADVANCE(84); if (lookahead == '\\') - SKIP(240); - if (lookahead == 'e') - ADVANCE(177); + ADVANCE(240); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(84); if (lookahead == '|') - ADVANCE(67); + ADVANCE(241); + if (lookahead == '}') + ADVANCE(84); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(239); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(5); END_STATE(); case 240: if (lookahead == '\t' || @@ -4347,258 +4273,171 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(239); - END_STATE(); - case 241: - 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(219); - if (lookahead == '<') - ADVANCE(74); - if (lookahead == '>') - ADVANCE(75); - if (lookahead == '[') - ADVANCE(53); - if (lookahead == '\\') - ADVANCE(242); - if (lookahead == ']') - ADVANCE(77); - if (lookahead == '`') - ADVANCE(59); - if (lookahead == 'e') - ADVANCE(60); - if (lookahead == '{') - ADVANCE(66); - if (lookahead == '}') - ADVANCE(77); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(241); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 242: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(241); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 243: + case 241: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 242: if (lookahead == '\n') ADVANCE(2); - if (lookahead == '\"') - ADVANCE(6); + if (lookahead == '!') + ADVANCE(154); if (lookahead == '#') - ADVANCE(72); - if (lookahead == '$') - ADVANCE(8); + ADVANCE(79); if (lookahead == '&') - ADVANCE(12); - if (lookahead == '\'') - ADVANCE(16); + ADVANCE(243); + if (lookahead == '+') + ADVANCE(159); + if (lookahead == '-') + ADVANCE(161); if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(101); + ADVANCE(165); + if (lookahead == '=') + ADVANCE(166); if (lookahead == '>') - ADVANCE(75); - if (lookahead == '[') - ADVANCE(77); + ADVANCE(169); if (lookahead == '\\') - ADVANCE(244); - if (lookahead == ']') - ADVANCE(77); - if (lookahead == '`') - ADVANCE(59); - if (lookahead == 'e') - ADVANCE(245); - if (lookahead == '{') - ADVANCE(77); + SKIP(244); if (lookahead == '|') - ADVANCE(67); - if (lookahead == '}') - ADVANCE(77); + ADVANCE(171); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(243); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(103); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(5); + SKIP(242); + END_STATE(); + case 243: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') + ADVANCE(13); END_STATE(); case 244: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(243); - if (lookahead != 0) - ADVANCE(5); + SKIP(242); END_STATE(); case 245: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '!') + ADVANCE(154); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '&') + ADVANCE(156); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == '+') + ADVANCE(159); + if (lookahead == '-') + ADVANCE(161); + if (lookahead == '<') + ADVANCE(165); + if (lookahead == '=') + ADVANCE(166); + if (lookahead == '>') + ADVANCE(169); if (lookahead == '\\') - ADVANCE(4); - if (lookahead == 's') - ADVANCE(246); - 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); + SKIP(246); + if (lookahead == '|') + ADVANCE(171); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(245); END_STATE(); case 246: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == '\\') - ADVANCE(4); - if (lookahead == 'a') - ADVANCE(247); - 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); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(245); END_STATE(); case 247: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '!') + ADVANCE(154); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '&') + ADVANCE(156); + if (lookahead == ')') + ADVANCE(157); + if (lookahead == '+') + ADVANCE(159); + if (lookahead == '-') + ADVANCE(161); + if (lookahead == '<') + ADVANCE(165); + if (lookahead == '=') + ADVANCE(166); + if (lookahead == '>') + ADVANCE(169); if (lookahead == '\\') - ADVANCE(4); - if (lookahead == 'c') - ADVANCE(248); - 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); + SKIP(248); + if (lookahead == ']') + ADVANCE(214); + if (lookahead == '|') + ADVANCE(171); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(247); END_STATE(); case 248: - 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); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(247); END_STATE(); case 249: - if (lookahead == '\n') - ADVANCE(2); + if (lookahead == '!') + ADVANCE(3); if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') - ADVANCE(12); + ADVANCE(80); if (lookahead == '\'') ADVANCE(16); - if (lookahead == ';') - ADVANCE(34); + if (lookahead == '(') + ADVANCE(18); if (lookahead == '<') - ADVANCE(101); - if (lookahead == '=') - ADVANCE(105); + ADVANCE(81); if (lookahead == '>') - ADVANCE(75); + ADVANCE(82); if (lookahead == '[') - ADVANCE(77); + ADVANCE(53); if (lookahead == '\\') ADVANCE(250); if (lookahead == ']') - ADVANCE(77); + ADVANCE(84); if (lookahead == '`') ADVANCE(59); - if (lookahead == 'e') - ADVANCE(60); + if (lookahead == 'd') + ADVANCE(251); if (lookahead == '{') - ADVANCE(77); - if (lookahead == '|') - ADVANCE(67); + ADVANCE(73); if (lookahead == '}') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(249); if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); case 250: @@ -4611,12 +4450,669 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(5); END_STATE(); case 251: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'o') + ADVANCE(252); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 252: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'n') + ADVANCE(253); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 253: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'e') + ADVANCE(254); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 254: + ACCEPT_TOKEN(anon_sym_done); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 255: + if (lookahead == '!') + ADVANCE(3); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(80); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(18); + if (lookahead == '<') + ADVANCE(81); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(53); + if (lookahead == '\\') + ADVANCE(256); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(257); + if (lookahead == 'f') + ADVANCE(69); + if (lookahead == '{') + ADVANCE(73); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(255); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 256: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(255); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 257: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'l') + ADVANCE(61); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 258: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '&') + ADVANCE(147); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '\\') + SKIP(259); + if (lookahead == '}') + ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(258); + END_STATE(); + case 259: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(258); + END_STATE(); + case 260: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(99); + if (lookahead == '>') + ADVANCE(100); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(261); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '}') + ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(260); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 261: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(260); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 262: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(7); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '%') + ADVANCE(11); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '-') + ADVANCE(224); + if (lookahead == ':') + ADVANCE(31); + if (lookahead == '<') + ADVANCE(99); + if (lookahead == '=') + ADVANCE(225); + if (lookahead == '>') + ADVANCE(100); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(263); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '}') + ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(262); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > ')') && + (lookahead < ':' || lookahead > '>') && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 263: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(262); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 264: + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '+') + ADVANCE(86); + if (lookahead == '=') + ADVANCE(89); + if (lookahead == '\\') + SKIP(265); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(264); + END_STATE(); + case 265: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(264); + END_STATE(); + case 266: + if (lookahead == '!') + ADVANCE(3); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(97); + if (lookahead == ')') + ADVANCE(157); + if (lookahead == '-') + ADVANCE(98); + if (lookahead == '<') + ADVANCE(99); + if (lookahead == '>') + ADVANCE(100); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(267); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(266); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 267: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(266); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 268: if (lookahead == '\n') ADVANCE(2); if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(147); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(99); + if (lookahead == '>') + ADVANCE(100); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(269); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(268); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 269: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(268); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 270: + if (lookahead == '!') + ADVANCE(154); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '&') + ADVANCE(156); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == '+') + ADVANCE(159); + if (lookahead == '-') + ADVANCE(161); + if (lookahead == '<') + ADVANCE(165); + if (lookahead == '=') + ADVANCE(166); + if (lookahead == '>') + ADVANCE(169); + if (lookahead == '\\') + SKIP(271); + if (lookahead == '|') + ADVANCE(272); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(270); + END_STATE(); + case 271: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(270); + END_STATE(); + case 272: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') + ADVANCE(76); + END_STATE(); + case 273: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(274); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'd') + ADVANCE(275); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(273); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 274: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(273); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 275: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'o') + ADVANCE(276); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + 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 276: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'n') + ADVANCE(277); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + 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 277: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'e') + ADVANCE(278); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + 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 278: + ACCEPT_TOKEN(anon_sym_done); + if (lookahead == '\\') + ADVANCE(4); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + 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 279: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '=') + ADVANCE(113); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(280); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'd') + ADVANCE(251); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(279); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 280: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(279); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 281: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') @@ -4624,55 +5120,86 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(16); if (lookahead == '(') - ADVANCE(89); + ADVANCE(97); if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(101); + ADVANCE(109); if (lookahead == '=') - ADVANCE(105); + ADVANCE(113); if (lookahead == '>') - ADVANCE(75); + ADVANCE(82); if (lookahead == '[') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\\') - ADVANCE(252); + ADVANCE(282); if (lookahead == ']') - ADVANCE(77); + ADVANCE(84); if (lookahead == '`') ADVANCE(59); - if (lookahead == 'e') - ADVANCE(60); + if (lookahead == 'd') + ADVANCE(251); if (lookahead == '{') - ADVANCE(77); + ADVANCE(84); if (lookahead == '|') - ADVANCE(67); + ADVANCE(74); if (lookahead == '}') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(251); + SKIP(281); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(5); END_STATE(); - case 252: + case 282: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(251); + SKIP(281); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 253: + case 283: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(137); + if (lookahead == '>') + ADVANCE(138); + if (lookahead == '\\') + SKIP(284); + if (lookahead == 'd') + ADVANCE(174); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(283); + END_STATE(); + case 284: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(283); + END_STATE(); + case 285: if (lookahead == '\n') ADVANCE(2); if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(72); + ADVANCE(79); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') @@ -4682,42 +5209,1427 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(101); + ADVANCE(109); if (lookahead == '>') - ADVANCE(75); + ADVANCE(82); if (lookahead == '[') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\\') - ADVANCE(254); + ADVANCE(286); if (lookahead == ']') - ADVANCE(77); + ADVANCE(84); if (lookahead == '`') ADVANCE(59); - if (lookahead == 'e') - ADVANCE(60); + if (lookahead == 'd') + ADVANCE(251); if (lookahead == '{') - ADVANCE(77); + ADVANCE(84); if (lookahead == '|') - ADVANCE(67); + ADVANCE(74); if (lookahead == '}') - ADVANCE(77); + ADVANCE(84); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(253); + SKIP(285); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(5); END_STATE(); - case 254: + case 286: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(253); + SKIP(285); if (lookahead != 0) ADVANCE(5); END_STATE(); + case 287: + if (lookahead == '!') + ADVANCE(3); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(80); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(18); + if (lookahead == '<') + ADVANCE(81); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(53); + if (lookahead == '\\') + ADVANCE(288); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'f') + ADVANCE(69); + if (lookahead == '{') + ADVANCE(73); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(287); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 288: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(287); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 289: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(290); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(291); + if (lookahead == 'f') + ADVANCE(297); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(289); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 290: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(289); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 291: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'l') + ADVANCE(292); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + 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 292: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'i') + ADVANCE(293); + if (lookahead == 's') + ADVANCE(295); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + 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 293: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'f') + ADVANCE(294); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + 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 294: + ACCEPT_TOKEN(anon_sym_elif); + if (lookahead == '\\') + ADVANCE(4); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + 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 295: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'e') + ADVANCE(296); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + 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 296: + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == '\\') + ADVANCE(4); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + 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 297: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'i') + ADVANCE(298); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + 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 298: + ACCEPT_TOKEN(anon_sym_fi); + if (lookahead == '\\') + ADVANCE(4); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + 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 299: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '=') + ADVANCE(113); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(300); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(257); + if (lookahead == 'f') + ADVANCE(69); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(299); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 300: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(299); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 301: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(97); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '=') + ADVANCE(113); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(302); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(257); + if (lookahead == 'f') + ADVANCE(69); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(301); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 302: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(301); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 303: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(137); + if (lookahead == '>') + ADVANCE(138); + if (lookahead == '\\') + SKIP(304); + if (lookahead == 'e') + ADVANCE(305); + if (lookahead == 'f') + ADVANCE(197); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(303); + END_STATE(); + case 304: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(303); + END_STATE(); + case 305: + if (lookahead == 'l') + ADVANCE(189); + END_STATE(); + case 306: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(307); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(257); + if (lookahead == 'f') + ADVANCE(69); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(306); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 307: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(306); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 308: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(99); + if (lookahead == '>') + ADVANCE(100); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(309); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(310); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(308); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 309: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(308); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 310: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 's') + ADVANCE(66); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 311: + if (lookahead == '#') + ADVANCE(79); + if (lookahead == ';') + ADVANCE(312); + if (lookahead == '\\') + ADVANCE(313); + if (lookahead == '{') + ADVANCE(73); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(311); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 312: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 313: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(311); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 314: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '&') + ADVANCE(147); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '\\') + SKIP(315); + if (lookahead == 'd') + ADVANCE(174); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(314); + END_STATE(); + case 315: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(314); + END_STATE(); + case 316: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(317); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'f') + ADVANCE(297); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(316); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 317: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(316); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 318: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '=') + ADVANCE(113); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(319); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'f') + ADVANCE(69); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(318); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 319: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(318); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 320: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(97); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '=') + ADVANCE(113); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(321); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'f') + ADVANCE(69); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(320); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 321: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(320); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 322: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(137); + if (lookahead == '>') + ADVANCE(138); + if (lookahead == '\\') + SKIP(323); + if (lookahead == 'f') + ADVANCE(197); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(322); + END_STATE(); + case 323: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(322); + END_STATE(); + case 324: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(325); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'f') + ADVANCE(69); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(324); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 325: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(324); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 326: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '&') + ADVANCE(147); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '\\') + SKIP(327); + if (lookahead == 'e') + ADVANCE(305); + if (lookahead == 'f') + ADVANCE(197); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(326); + END_STATE(); + case 327: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(326); + END_STATE(); + case 328: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(137); + if (lookahead == '>') + ADVANCE(138); + if (lookahead == '\\') + SKIP(329); + if (lookahead == 'e') + ADVANCE(330); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(328); + END_STATE(); + case 329: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(328); + END_STATE(); + case 330: + if (lookahead == 's') + ADVANCE(194); + END_STATE(); + case 331: + if (lookahead == '!') + ADVANCE(3); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(80); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(18); + if (lookahead == ';') + ADVANCE(88); + if (lookahead == '<') + ADVANCE(81); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(53); + if (lookahead == '\\') + ADVANCE(332); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(310); + if (lookahead == '{') + ADVANCE(73); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(331); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 332: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(331); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 333: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(137); + if (lookahead == '>') + ADVANCE(138); + if (lookahead == '\\') + SKIP(334); + if (lookahead == 'd') + ADVANCE(174); + if (lookahead == 'e') + ADVANCE(188); + if (lookahead == 'f') + ADVANCE(197); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(333); + END_STATE(); + case 334: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(333); + END_STATE(); + case 335: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(336); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(337); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(335); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 336: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(335); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 337: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 's') + ADVANCE(338); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + 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 338: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'a') + ADVANCE(339); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + 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 339: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'c') + ADVANCE(340); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + 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 340: + ACCEPT_TOKEN(anon_sym_esac); + if (lookahead == '\\') + ADVANCE(4); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(111); + 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 341: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '=') + ADVANCE(113); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(342); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(310); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(341); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 342: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(341); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 343: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(97); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '=') + ADVANCE(113); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(344); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(310); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(343); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 344: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(343); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 345: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(109); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '[') + ADVANCE(84); + if (lookahead == '\\') + ADVANCE(346); + if (lookahead == ']') + ADVANCE(84); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(310); + if (lookahead == '{') + ADVANCE(84); + if (lookahead == '|') + ADVANCE(74); + if (lookahead == '}') + ADVANCE(84); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(345); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 346: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(345); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 347: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(79); + if (lookahead == '&') + ADVANCE(147); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '\\') + SKIP(348); + if (lookahead == 'e') + ADVANCE(330); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(347); + END_STATE(); + case 348: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(347); + END_STATE(); default: return false; } @@ -4732,21 +6644,21 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'd') ADVANCE(5); if (lookahead == 'e') - ADVANCE(15); + ADVANCE(13); if (lookahead == 'f') - ADVANCE(26); + ADVANCE(19); if (lookahead == 'i') - ADVANCE(37); + ADVANCE(29); if (lookahead == 'l') - ADVANCE(39); + ADVANCE(31); if (lookahead == 'r') - ADVANCE(44); + ADVANCE(36); if (lookahead == 't') - ADVANCE(52); + ADVANCE(44); if (lookahead == 'u') - ADVANCE(62); + ADVANCE(54); if (lookahead == 'w') - ADVANCE(70); + ADVANCE(62); END_STATE(); case 1: if (lookahead == 'a') @@ -4794,52 +6706,49 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { END_STATE(); case 12: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'n') - ADVANCE(13); END_STATE(); case 13: - if (lookahead == 'e') + if (lookahead == 'x') ADVANCE(14); END_STATE(); case 14: - ACCEPT_TOKEN(anon_sym_done); + if (lookahead == 'p') + ADVANCE(15); END_STATE(); case 15: - if (lookahead == 'l') + if (lookahead == 'o') ADVANCE(16); - if (lookahead == 'x') - ADVANCE(21); END_STATE(); case 16: - if (lookahead == 'i') + if (lookahead == 'r') ADVANCE(17); - if (lookahead == 's') - ADVANCE(19); END_STATE(); case 17: - if (lookahead == 'f') + if (lookahead == 't') ADVANCE(18); END_STATE(); case 18: - ACCEPT_TOKEN(anon_sym_elif); + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 19: - if (lookahead == 'e') + if (lookahead == 'o') ADVANCE(20); - END_STATE(); - case 20: - ACCEPT_TOKEN(anon_sym_else); - END_STATE(); - case 21: - if (lookahead == 'p') + if (lookahead == 'u') ADVANCE(22); END_STATE(); + case 20: + if (lookahead == 'r') + ADVANCE(21); + END_STATE(); + case 21: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); case 22: - if (lookahead == 'o') + if (lookahead == 'n') ADVANCE(23); END_STATE(); case 23: - if (lookahead == 'r') + if (lookahead == 'c') ADVANCE(24); END_STATE(); case 24: @@ -4847,199 +6756,166 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ADVANCE(25); END_STATE(); case 25: - ACCEPT_TOKEN(anon_sym_export); + if (lookahead == 'i') + ADVANCE(26); END_STATE(); case 26: - if (lookahead == 'i') - ADVANCE(27); if (lookahead == 'o') - ADVANCE(28); - if (lookahead == 'u') - ADVANCE(30); + ADVANCE(27); END_STATE(); case 27: - ACCEPT_TOKEN(anon_sym_fi); + if (lookahead == 'n') + ADVANCE(28); END_STATE(); case 28: - if (lookahead == 'r') - ADVANCE(29); + ACCEPT_TOKEN(anon_sym_function); END_STATE(); case 29: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'f') + ADVANCE(30); END_STATE(); case 30: - if (lookahead == 'n') - ADVANCE(31); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 31: - if (lookahead == 'c') + if (lookahead == 'o') ADVANCE(32); END_STATE(); case 32: - if (lookahead == 't') + if (lookahead == 'c') ADVANCE(33); END_STATE(); case 33: - if (lookahead == 'i') + if (lookahead == 'a') ADVANCE(34); END_STATE(); case 34: - if (lookahead == 'o') + if (lookahead == 'l') ADVANCE(35); END_STATE(); case 35: - if (lookahead == 'n') - ADVANCE(36); + ACCEPT_TOKEN(anon_sym_local); END_STATE(); case 36: - ACCEPT_TOKEN(anon_sym_function); + if (lookahead == 'e') + ADVANCE(37); END_STATE(); case 37: - if (lookahead == 'f') + if (lookahead == 'a') ADVANCE(38); END_STATE(); case 38: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'd') + ADVANCE(39); END_STATE(); case 39: if (lookahead == 'o') ADVANCE(40); END_STATE(); case 40: - if (lookahead == 'c') + if (lookahead == 'n') ADVANCE(41); END_STATE(); case 41: - if (lookahead == 'a') + if (lookahead == 'l') ADVANCE(42); END_STATE(); case 42: - if (lookahead == 'l') + if (lookahead == 'y') ADVANCE(43); END_STATE(); case 43: - ACCEPT_TOKEN(anon_sym_local); + ACCEPT_TOKEN(anon_sym_readonly); END_STATE(); case 44: - if (lookahead == 'e') + if (lookahead == 'h') ADVANCE(45); + if (lookahead == 'y') + ADVANCE(48); END_STATE(); case 45: - if (lookahead == 'a') + if (lookahead == 'e') ADVANCE(46); END_STATE(); case 46: - if (lookahead == 'd') + if (lookahead == 'n') ADVANCE(47); END_STATE(); case 47: - if (lookahead == 'o') - ADVANCE(48); + ACCEPT_TOKEN(anon_sym_then); END_STATE(); case 48: - if (lookahead == 'n') + if (lookahead == 'p') ADVANCE(49); END_STATE(); case 49: - if (lookahead == 'l') + if (lookahead == 'e') ADVANCE(50); END_STATE(); case 50: - if (lookahead == 'y') + if (lookahead == 's') ADVANCE(51); END_STATE(); case 51: - ACCEPT_TOKEN(anon_sym_readonly); + if (lookahead == 'e') + ADVANCE(52); END_STATE(); case 52: - if (lookahead == 'h') + if (lookahead == 't') ADVANCE(53); - if (lookahead == 'y') - ADVANCE(56); END_STATE(); case 53: - if (lookahead == 'e') - ADVANCE(54); + ACCEPT_TOKEN(anon_sym_typeset); END_STATE(); case 54: if (lookahead == 'n') ADVANCE(55); END_STATE(); case 55: - ACCEPT_TOKEN(anon_sym_then); + if (lookahead == 's') + ADVANCE(56); END_STATE(); case 56: - if (lookahead == 'p') + if (lookahead == 'e') ADVANCE(57); END_STATE(); case 57: - if (lookahead == 'e') + if (lookahead == 't') ADVANCE(58); END_STATE(); case 58: - if (lookahead == 's') + ACCEPT_TOKEN(anon_sym_unset); + if (lookahead == 'e') ADVANCE(59); END_STATE(); case 59: - if (lookahead == 'e') + if (lookahead == 'n') ADVANCE(60); END_STATE(); case 60: - if (lookahead == 't') + if (lookahead == 'v') ADVANCE(61); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_typeset); + ACCEPT_TOKEN(anon_sym_unsetenv); END_STATE(); case 62: - if (lookahead == 'n') + if (lookahead == 'h') ADVANCE(63); END_STATE(); case 63: - if (lookahead == 's') + if (lookahead == 'i') ADVANCE(64); END_STATE(); case 64: - if (lookahead == 'e') + if (lookahead == 'l') ADVANCE(65); END_STATE(); case 65: - if (lookahead == 't') + if (lookahead == 'e') ADVANCE(66); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_unset); - if (lookahead == 'e') - ADVANCE(67); - END_STATE(); - case 67: - if (lookahead == 'n') - ADVANCE(68); - END_STATE(); - case 68: - if (lookahead == 'v') - ADVANCE(69); - END_STATE(); - case 69: - ACCEPT_TOKEN(anon_sym_unsetenv); - END_STATE(); - case 70: - if (lookahead == 'h') - ADVANCE(71); - END_STATE(); - case 71: - if (lookahead == 'i') - ADVANCE(72); - END_STATE(); - case 72: - if (lookahead == 'l') - ADVANCE(73); - END_STATE(); - case 73: - if (lookahead == 'e') - ADVANCE(74); - END_STATE(); - case 74: ACCEPT_TOKEN(anon_sym_while); END_STATE(); default: @@ -5049,2890 +6925,4180 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 71, .external_lex_state = 2}, - [2] = {.lex_state = 71}, - [3] = {.lex_state = 78}, - [4] = {.lex_state = 84}, - [5] = {.lex_state = 88}, - [6] = {.lex_state = 71, .external_lex_state = 2}, - [7] = {.lex_state = 71, .external_lex_state = 2}, - [8] = {.lex_state = 94}, - [9] = {.lex_state = 94}, - [10] = {.lex_state = 71, .external_lex_state = 2}, - [11] = {.lex_state = 96, .external_lex_state = 3}, - [12] = {.lex_state = 98, .external_lex_state = 2}, - [13] = {.lex_state = 88}, - [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 = 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 = 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 = 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 = 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 = 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, .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 = 88, .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}, - [177] = {.lex_state = 71, .external_lex_state = 18}, - [178] = {.lex_state = 94}, - [179] = {.lex_state = 203, .external_lex_state = 9}, - [180] = {.lex_state = 128, .external_lex_state = 5}, - [181] = {.lex_state = 205, .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 = 207, .external_lex_state = 12}, - [194] = {.lex_state = 207, .external_lex_state = 12}, - [195] = {.lex_state = 207, .external_lex_state = 12}, - [196] = {.lex_state = 173, .external_lex_state = 4}, - [197] = {.lex_state = 209}, - [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 = 211, .external_lex_state = 11}, - [210] = {.lex_state = 107}, - [211] = {.lex_state = 114}, - [212] = {.lex_state = 211, .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 = 211, .external_lex_state = 9}, - [218] = {.lex_state = 94}, - [219] = {.lex_state = 94}, - [220] = {.lex_state = 88}, - [221] = {.lex_state = 88}, - [222] = {.lex_state = 214, .external_lex_state = 10}, - [223] = {.lex_state = 107}, - [224] = {.lex_state = 114}, - [225] = {.lex_state = 214, .external_lex_state = 10}, - [226] = {.lex_state = 114, .external_lex_state = 7}, - [227] = {.lex_state = 71, .external_lex_state = 2}, - [228] = {.lex_state = 71, .external_lex_state = 2}, - [229] = {.lex_state = 71, .external_lex_state = 2}, - [230] = {.lex_state = 214}, - [231] = {.lex_state = 145}, - [232] = {.lex_state = 94}, - [233] = {.lex_state = 145, .external_lex_state = 10}, - [234] = {.lex_state = 216, .external_lex_state = 10}, - [235] = {.lex_state = 187}, - [236] = {.lex_state = 107}, - [237] = {.lex_state = 216, .external_lex_state = 10}, - [238] = {.lex_state = 216, .external_lex_state = 10}, - [239] = {.lex_state = 216, .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 = 216}, - [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 = 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 = 205, .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 = 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 = 218, .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 = 205, .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 = 214}, - [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 = 221, .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 = 223, .external_lex_state = 20}, - [463] = {.lex_state = 107}, - [464] = {.lex_state = 114}, - [465] = {.lex_state = 223, .external_lex_state = 20}, - [466] = {.lex_state = 114, .external_lex_state = 7}, - [467] = {.lex_state = 223, .external_lex_state = 21}, - [468] = {.lex_state = 71, .external_lex_state = 2}, - [469] = {.lex_state = 71, .external_lex_state = 2}, - [470] = {.lex_state = 71, .external_lex_state = 2}, - [471] = {.lex_state = 223, .external_lex_state = 16}, - [472] = {.lex_state = 134, .external_lex_state = 6}, - [473] = {.lex_state = 223, .external_lex_state = 21}, - [474] = {.lex_state = 223, .external_lex_state = 16}, - [475] = {.lex_state = 218, .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 = 218, .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 = 71, .external_lex_state = 2}, - [504] = {.lex_state = 71, .external_lex_state = 2}, - [505] = {.lex_state = 88, .external_lex_state = 17}, - [506] = {.lex_state = 94}, - [507] = {.lex_state = 128, .external_lex_state = 5}, - [508] = {.lex_state = 132, .external_lex_state = 4}, - [509] = {.lex_state = 128, .external_lex_state = 5}, - [510] = {.lex_state = 132, .external_lex_state = 4}, - [511] = {.lex_state = 128, .external_lex_state = 6}, - [512] = {.lex_state = 128, .external_lex_state = 6}, - [513] = {.lex_state = 175, .external_lex_state = 5}, - [514] = {.lex_state = 175, .external_lex_state = 5}, - [515] = {.lex_state = 128, .external_lex_state = 6}, - [516] = {.lex_state = 128, .external_lex_state = 6}, - [517] = {.lex_state = 175, .external_lex_state = 5}, - [518] = {.lex_state = 71, .external_lex_state = 2}, - [519] = {.lex_state = 128, .external_lex_state = 5}, - [520] = {.lex_state = 134, .external_lex_state = 5}, - [521] = {.lex_state = 104, .external_lex_state = 6}, - [522] = {.lex_state = 104, .external_lex_state = 6}, - [523] = {.lex_state = 104, .external_lex_state = 5}, - [524] = {.lex_state = 71, .external_lex_state = 2}, - [525] = {.lex_state = 203, .external_lex_state = 9}, - [526] = {.lex_state = 128, .external_lex_state = 5}, - [527] = {.lex_state = 132, .external_lex_state = 4}, - [528] = {.lex_state = 104, .external_lex_state = 5}, - [529] = {.lex_state = 207, .external_lex_state = 13}, - [530] = {.lex_state = 225, .external_lex_state = 10}, - [531] = {.lex_state = 207, .external_lex_state = 12}, - [532] = {.lex_state = 207, .external_lex_state = 13}, - [533] = {.lex_state = 225, .external_lex_state = 10}, - [534] = {.lex_state = 181, .external_lex_state = 13}, - [535] = {.lex_state = 173, .external_lex_state = 4}, - [536] = {.lex_state = 209, .external_lex_state = 10}, - [537] = {.lex_state = 107}, - [538] = {.lex_state = 114}, - [539] = {.lex_state = 209, .external_lex_state = 10}, - [540] = {.lex_state = 114, .external_lex_state = 7}, - [541] = {.lex_state = 71, .external_lex_state = 2}, - [542] = {.lex_state = 71, .external_lex_state = 2}, - [543] = {.lex_state = 71, .external_lex_state = 2}, - [544] = {.lex_state = 209}, - [545] = {.lex_state = 94}, - [546] = {.lex_state = 132, .external_lex_state = 14}, - [547] = {.lex_state = 173, .external_lex_state = 14}, - [548] = {.lex_state = 187}, - [549] = {.lex_state = 107}, - [550] = {.lex_state = 173, .external_lex_state = 14}, - [551] = {.lex_state = 173, .external_lex_state = 14}, - [552] = {.lex_state = 173, .external_lex_state = 14}, - [553] = {.lex_state = 78}, - [554] = {.lex_state = 193, .external_lex_state = 7}, - [555] = {.lex_state = 195, .external_lex_state = 16}, - [556] = {.lex_state = 195, .external_lex_state = 16}, - [557] = {.lex_state = 171, .external_lex_state = 5}, - [558] = {.lex_state = 173, .external_lex_state = 4}, - [559] = {.lex_state = 71, .external_lex_state = 2}, - [560] = {.lex_state = 199, .external_lex_state = 5}, - [561] = {.lex_state = 132, .external_lex_state = 4}, - [562] = {.lex_state = 71, .external_lex_state = 2}, - [563] = {.lex_state = 171, .external_lex_state = 5}, - [564] = {.lex_state = 173, .external_lex_state = 4}, - [565] = {.lex_state = 71, .external_lex_state = 2}, - [566] = {.lex_state = 227}, - [567] = {.lex_state = 211, .external_lex_state = 9}, - [568] = {.lex_state = 214}, - [569] = {.lex_state = 211, .external_lex_state = 9}, - [570] = {.lex_state = 94}, - [571] = {.lex_state = 211, .external_lex_state = 11}, - [572] = {.lex_state = 211, .external_lex_state = 11}, - [573] = {.lex_state = 187}, - [574] = {.lex_state = 107}, - [575] = {.lex_state = 211, .external_lex_state = 11}, - [576] = {.lex_state = 211, .external_lex_state = 11}, - [577] = {.lex_state = 211, .external_lex_state = 11}, - [578] = {.lex_state = 78}, - [579] = {.lex_state = 193, .external_lex_state = 7}, - [580] = {.lex_state = 195, .external_lex_state = 16}, - [581] = {.lex_state = 195, .external_lex_state = 16}, - [582] = {.lex_state = 171, .external_lex_state = 5}, - [583] = {.lex_state = 173, .external_lex_state = 4}, - [584] = {.lex_state = 71, .external_lex_state = 2}, - [585] = {.lex_state = 199, .external_lex_state = 5}, - [586] = {.lex_state = 132, .external_lex_state = 4}, - [587] = {.lex_state = 71, .external_lex_state = 2}, - [588] = {.lex_state = 171, .external_lex_state = 5}, - [589] = {.lex_state = 173, .external_lex_state = 4}, - [590] = {.lex_state = 71, .external_lex_state = 2}, - [591] = {.lex_state = 138, .external_lex_state = 9}, - [592] = {.lex_state = 88}, - [593] = {.lex_state = 88, .external_lex_state = 19}, - [594] = {.lex_state = 211, .external_lex_state = 9}, - [595] = {.lex_state = 229, .external_lex_state = 11}, - [596] = {.lex_state = 107}, - [597] = {.lex_state = 114}, - [598] = {.lex_state = 229, .external_lex_state = 11}, - [599] = {.lex_state = 114, .external_lex_state = 7}, - [600] = {.lex_state = 71, .external_lex_state = 2}, - [601] = {.lex_state = 71, .external_lex_state = 2}, - [602] = {.lex_state = 71, .external_lex_state = 2}, - [603] = {.lex_state = 229, .external_lex_state = 9}, - [604] = {.lex_state = 175, .external_lex_state = 5}, - [605] = {.lex_state = 214}, - [606] = {.lex_state = 214}, - [607] = {.lex_state = 94}, - [608] = {.lex_state = 214, .external_lex_state = 10}, - [609] = {.lex_state = 231, .external_lex_state = 10}, - [610] = {.lex_state = 187}, - [611] = {.lex_state = 107}, - [612] = {.lex_state = 231, .external_lex_state = 10}, - [613] = {.lex_state = 231, .external_lex_state = 10}, - [614] = {.lex_state = 231, .external_lex_state = 10}, - [615] = {.lex_state = 78}, - [616] = {.lex_state = 193, .external_lex_state = 7}, - [617] = {.lex_state = 195, .external_lex_state = 16}, - [618] = {.lex_state = 195, .external_lex_state = 16}, - [619] = {.lex_state = 171, .external_lex_state = 5}, - [620] = {.lex_state = 173, .external_lex_state = 4}, - [621] = {.lex_state = 71, .external_lex_state = 2}, - [622] = {.lex_state = 199, .external_lex_state = 5}, - [623] = {.lex_state = 132, .external_lex_state = 4}, - [624] = {.lex_state = 71, .external_lex_state = 2}, - [625] = {.lex_state = 171, .external_lex_state = 5}, - [626] = {.lex_state = 173, .external_lex_state = 4}, - [627] = {.lex_state = 71, .external_lex_state = 2}, - [628] = {.lex_state = 216}, - [629] = {.lex_state = 88}, - [630] = {.lex_state = 88, .external_lex_state = 19}, - [631] = {.lex_state = 214}, - [632] = {.lex_state = 216, .external_lex_state = 10}, - [633] = {.lex_state = 145, .external_lex_state = 10}, - [634] = {.lex_state = 216, .external_lex_state = 10}, - [635] = {.lex_state = 187}, - [636] = {.lex_state = 221, .external_lex_state = 16}, - [637] = {.lex_state = 78}, - [638] = {.lex_state = 195, .external_lex_state = 16}, - [639] = {.lex_state = 195, .external_lex_state = 16}, - [640] = {.lex_state = 216, .external_lex_state = 10}, - [641] = {.lex_state = 223, .external_lex_state = 21}, - [642] = {.lex_state = 223, .external_lex_state = 16}, - [643] = {.lex_state = 216, .external_lex_state = 10}, - [644] = {.lex_state = 223, .external_lex_state = 21}, - [645] = {.lex_state = 223, .external_lex_state = 16}, - [646] = {.lex_state = 218, .external_lex_state = 2}, - [647] = {.lex_state = 216, .external_lex_state = 10}, - [648] = {.lex_state = 138, .external_lex_state = 9}, - [649] = {.lex_state = 171, .external_lex_state = 5}, - [650] = {.lex_state = 173, .external_lex_state = 4}, - [651] = {.lex_state = 71, .external_lex_state = 2}, - [652] = {.lex_state = 138, .external_lex_state = 9}, - [653] = {.lex_state = 199, .external_lex_state = 5}, - [654] = {.lex_state = 132, .external_lex_state = 4}, - [655] = {.lex_state = 218, .external_lex_state = 2}, - [656] = {.lex_state = 216, .external_lex_state = 10}, - [657] = {.lex_state = 138, .external_lex_state = 9}, - [658] = {.lex_state = 171, .external_lex_state = 5}, - [659] = {.lex_state = 173, .external_lex_state = 4}, - [660] = {.lex_state = 216}, - [661] = {.lex_state = 216}, - [662] = {.lex_state = 132, .external_lex_state = 14}, - [663] = {.lex_state = 132, .external_lex_state = 14}, - [664] = {.lex_state = 136, .external_lex_state = 8}, - [665] = {.lex_state = 100, .external_lex_state = 14}, - [666] = {.lex_state = 100, .external_lex_state = 4}, - [667] = {.lex_state = 100, .external_lex_state = 6}, - [668] = {.lex_state = 100, .external_lex_state = 5}, - [669] = {.lex_state = 104, .external_lex_state = 6}, - [670] = {.lex_state = 175, .external_lex_state = 5}, - [671] = {.lex_state = 71, .external_lex_state = 2}, - [672] = {.lex_state = 94}, - [673] = {.lex_state = 128, .external_lex_state = 5}, - [674] = {.lex_state = 132, .external_lex_state = 4}, - [675] = {.lex_state = 128, .external_lex_state = 5}, - [676] = {.lex_state = 132, .external_lex_state = 4}, - [677] = {.lex_state = 128, .external_lex_state = 6}, - [678] = {.lex_state = 128, .external_lex_state = 6}, - [679] = {.lex_state = 128, .external_lex_state = 6}, - [680] = {.lex_state = 128, .external_lex_state = 6}, - [681] = {.lex_state = 94}, - [682] = {.lex_state = 128, .external_lex_state = 5}, - [683] = {.lex_state = 104, .external_lex_state = 6}, - [684] = {.lex_state = 104, .external_lex_state = 6}, - [685] = {.lex_state = 104, .external_lex_state = 5}, - [686] = {.lex_state = 104, .external_lex_state = 5}, - [687] = {.lex_state = 175, .external_lex_state = 5}, - [688] = {.lex_state = 71, .external_lex_state = 2}, - [689] = {.lex_state = 71, .external_lex_state = 2}, - [690] = {.lex_state = 94}, - [691] = {.lex_state = 71, .external_lex_state = 2}, - [692] = {.lex_state = 94}, - [693] = {.lex_state = 141, .external_lex_state = 11}, - [694] = {.lex_state = 234}, - [695] = {.lex_state = 138, .external_lex_state = 9}, - [696] = {.lex_state = 141, .external_lex_state = 11}, - [697] = {.lex_state = 141, .external_lex_state = 11}, - [698] = {.lex_state = 187}, - [699] = {.lex_state = 234}, - [700] = {.lex_state = 138, .external_lex_state = 9}, - [701] = {.lex_state = 221, .external_lex_state = 16}, - [702] = {.lex_state = 78}, - [703] = {.lex_state = 195, .external_lex_state = 16}, - [704] = {.lex_state = 195, .external_lex_state = 16}, - [705] = {.lex_state = 141, .external_lex_state = 11}, - [706] = {.lex_state = 223, .external_lex_state = 21}, - [707] = {.lex_state = 223, .external_lex_state = 16}, - [708] = {.lex_state = 141, .external_lex_state = 11}, - [709] = {.lex_state = 223, .external_lex_state = 21}, - [710] = {.lex_state = 223, .external_lex_state = 16}, - [711] = {.lex_state = 218, .external_lex_state = 2}, - [712] = {.lex_state = 141, .external_lex_state = 11}, - [713] = {.lex_state = 138, .external_lex_state = 9}, - [714] = {.lex_state = 171, .external_lex_state = 5}, - [715] = {.lex_state = 173, .external_lex_state = 4}, - [716] = {.lex_state = 71, .external_lex_state = 2}, - [717] = {.lex_state = 138, .external_lex_state = 9}, - [718] = {.lex_state = 199, .external_lex_state = 5}, - [719] = {.lex_state = 132, .external_lex_state = 4}, - [720] = {.lex_state = 218, .external_lex_state = 2}, - [721] = {.lex_state = 141, .external_lex_state = 11}, - [722] = {.lex_state = 138, .external_lex_state = 9}, - [723] = {.lex_state = 171, .external_lex_state = 5}, - [724] = {.lex_state = 173, .external_lex_state = 4}, - [725] = {.lex_state = 71}, - [726] = {.lex_state = 173, .external_lex_state = 14}, - [727] = {.lex_state = 173, .external_lex_state = 14}, - [728] = {.lex_state = 136, .external_lex_state = 8}, - [729] = {.lex_state = 167, .external_lex_state = 14}, - [730] = {.lex_state = 167, .external_lex_state = 4}, - [731] = {.lex_state = 167, .external_lex_state = 6}, - [732] = {.lex_state = 167, .external_lex_state = 5}, - [733] = {.lex_state = 134, .external_lex_state = 6}, - [734] = {.lex_state = 94}, - [735] = {.lex_state = 175, .external_lex_state = 5}, - [736] = {.lex_state = 171, .external_lex_state = 5}, - [737] = {.lex_state = 173, .external_lex_state = 4}, - [738] = {.lex_state = 171, .external_lex_state = 5}, - [739] = {.lex_state = 173, .external_lex_state = 4}, - [740] = {.lex_state = 171, .external_lex_state = 6}, - [741] = {.lex_state = 171, .external_lex_state = 6}, - [742] = {.lex_state = 171, .external_lex_state = 6}, - [743] = {.lex_state = 171, .external_lex_state = 6}, - [744] = {.lex_state = 218, .external_lex_state = 2}, - [745] = {.lex_state = 171, .external_lex_state = 5}, - [746] = {.lex_state = 134, .external_lex_state = 6}, - [747] = {.lex_state = 134, .external_lex_state = 6}, - [748] = {.lex_state = 134, .external_lex_state = 5}, - [749] = {.lex_state = 218, .external_lex_state = 2}, - [750] = {.lex_state = 138, .external_lex_state = 9}, - [751] = {.lex_state = 134, .external_lex_state = 5}, - [752] = {.lex_state = 96, .external_lex_state = 3}, - [753] = {.lex_state = 94, .external_lex_state = 2}, - [754] = {.lex_state = 209}, - [755] = {.lex_state = 94, .external_lex_state = 15}, - [756] = {.lex_state = 94, .external_lex_state = 15}, - [757] = {.lex_state = 181, .external_lex_state = 13}, - [758] = {.lex_state = 181, .external_lex_state = 12}, - [759] = {.lex_state = 181, .external_lex_state = 12}, - [760] = {.lex_state = 181, .external_lex_state = 12}, - [761] = {.lex_state = 187}, - [762] = {.lex_state = 221, .external_lex_state = 16}, - [763] = {.lex_state = 78}, - [764] = {.lex_state = 195, .external_lex_state = 16}, - [765] = {.lex_state = 195, .external_lex_state = 16}, - [766] = {.lex_state = 181, .external_lex_state = 12}, - [767] = {.lex_state = 223, .external_lex_state = 21}, - [768] = {.lex_state = 223, .external_lex_state = 16}, - [769] = {.lex_state = 181, .external_lex_state = 12}, - [770] = {.lex_state = 223, .external_lex_state = 21}, - [771] = {.lex_state = 223, .external_lex_state = 16}, - [772] = {.lex_state = 218, .external_lex_state = 2}, - [773] = {.lex_state = 181, .external_lex_state = 12}, - [774] = {.lex_state = 138, .external_lex_state = 9}, - [775] = {.lex_state = 171, .external_lex_state = 5}, - [776] = {.lex_state = 173, .external_lex_state = 4}, - [777] = {.lex_state = 71, .external_lex_state = 2}, - [778] = {.lex_state = 138, .external_lex_state = 9}, - [779] = {.lex_state = 199, .external_lex_state = 5}, - [780] = {.lex_state = 132, .external_lex_state = 4}, - [781] = {.lex_state = 218, .external_lex_state = 2}, - [782] = {.lex_state = 181, .external_lex_state = 12}, - [783] = {.lex_state = 138, .external_lex_state = 9}, - [784] = {.lex_state = 171, .external_lex_state = 5}, - [785] = {.lex_state = 173, .external_lex_state = 4}, - [786] = {.lex_state = 181, .external_lex_state = 13}, - [787] = {.lex_state = 181, .external_lex_state = 13}, - [788] = {.lex_state = 184, .external_lex_state = 10}, - [789] = {.lex_state = 167, .external_lex_state = 4}, - [790] = {.lex_state = 209}, - [791] = {.lex_state = 100, .external_lex_state = 14}, - [792] = {.lex_state = 100, .external_lex_state = 14}, - [793] = {.lex_state = 167, .external_lex_state = 14}, - [794] = {.lex_state = 100, .external_lex_state = 14}, - [795] = {.lex_state = 167, .external_lex_state = 14}, - [796] = {.lex_state = 187}, - [797] = {.lex_state = 221, .external_lex_state = 16}, - [798] = {.lex_state = 78}, - [799] = {.lex_state = 195, .external_lex_state = 16}, - [800] = {.lex_state = 195, .external_lex_state = 16}, - [801] = {.lex_state = 167, .external_lex_state = 14}, - [802] = {.lex_state = 223, .external_lex_state = 21}, - [803] = {.lex_state = 223, .external_lex_state = 16}, - [804] = {.lex_state = 167, .external_lex_state = 14}, - [805] = {.lex_state = 223, .external_lex_state = 21}, - [806] = {.lex_state = 223, .external_lex_state = 16}, - [807] = {.lex_state = 218, .external_lex_state = 2}, - [808] = {.lex_state = 167, .external_lex_state = 14}, - [809] = {.lex_state = 138, .external_lex_state = 9}, - [810] = {.lex_state = 171, .external_lex_state = 5}, - [811] = {.lex_state = 173, .external_lex_state = 4}, - [812] = {.lex_state = 71, .external_lex_state = 2}, - [813] = {.lex_state = 138, .external_lex_state = 9}, - [814] = {.lex_state = 199, .external_lex_state = 5}, - [815] = {.lex_state = 132, .external_lex_state = 4}, - [816] = {.lex_state = 218, .external_lex_state = 2}, - [817] = {.lex_state = 167, .external_lex_state = 14}, - [818] = {.lex_state = 138, .external_lex_state = 9}, - [819] = {.lex_state = 171, .external_lex_state = 5}, - [820] = {.lex_state = 173, .external_lex_state = 4}, - [821] = {.lex_state = 167, .external_lex_state = 6}, - [822] = {.lex_state = 100, .external_lex_state = 6}, - [823] = {.lex_state = 167, .external_lex_state = 6}, - [824] = {.lex_state = 187}, - [825] = {.lex_state = 221, .external_lex_state = 16}, - [826] = {.lex_state = 78}, - [827] = {.lex_state = 195, .external_lex_state = 16}, - [828] = {.lex_state = 195, .external_lex_state = 16}, - [829] = {.lex_state = 167, .external_lex_state = 6}, - [830] = {.lex_state = 223, .external_lex_state = 21}, - [831] = {.lex_state = 223, .external_lex_state = 16}, - [832] = {.lex_state = 167, .external_lex_state = 6}, - [833] = {.lex_state = 223, .external_lex_state = 21}, - [834] = {.lex_state = 223, .external_lex_state = 16}, - [835] = {.lex_state = 218, .external_lex_state = 2}, - [836] = {.lex_state = 167, .external_lex_state = 6}, - [837] = {.lex_state = 138, .external_lex_state = 9}, - [838] = {.lex_state = 171, .external_lex_state = 5}, - [839] = {.lex_state = 173, .external_lex_state = 4}, - [840] = {.lex_state = 71, .external_lex_state = 2}, - [841] = {.lex_state = 138, .external_lex_state = 9}, - [842] = {.lex_state = 199, .external_lex_state = 5}, - [843] = {.lex_state = 132, .external_lex_state = 4}, - [844] = {.lex_state = 218, .external_lex_state = 2}, - [845] = {.lex_state = 167, .external_lex_state = 6}, - [846] = {.lex_state = 138, .external_lex_state = 9}, - [847] = {.lex_state = 171, .external_lex_state = 5}, - [848] = {.lex_state = 173, .external_lex_state = 4}, - [849] = {.lex_state = 94, .external_lex_state = 15}, - [850] = {.lex_state = 94, .external_lex_state = 15}, - [851] = {.lex_state = 94, .external_lex_state = 15}, - [852] = {.lex_state = 187}, - [853] = {.lex_state = 221, .external_lex_state = 16}, - [854] = {.lex_state = 78}, - [855] = {.lex_state = 195, .external_lex_state = 16}, - [856] = {.lex_state = 195, .external_lex_state = 16}, - [857] = {.lex_state = 94, .external_lex_state = 15}, - [858] = {.lex_state = 223, .external_lex_state = 21}, - [859] = {.lex_state = 223, .external_lex_state = 16}, - [860] = {.lex_state = 94, .external_lex_state = 15}, - [861] = {.lex_state = 223, .external_lex_state = 21}, - [862] = {.lex_state = 223, .external_lex_state = 16}, - [863] = {.lex_state = 218, .external_lex_state = 2}, - [864] = {.lex_state = 94, .external_lex_state = 15}, - [865] = {.lex_state = 138, .external_lex_state = 9}, - [866] = {.lex_state = 171, .external_lex_state = 5}, - [867] = {.lex_state = 173, .external_lex_state = 4}, - [868] = {.lex_state = 71, .external_lex_state = 2}, - [869] = {.lex_state = 138, .external_lex_state = 9}, - [870] = {.lex_state = 199, .external_lex_state = 5}, - [871] = {.lex_state = 132, .external_lex_state = 4}, - [872] = {.lex_state = 218, .external_lex_state = 2}, - [873] = {.lex_state = 94, .external_lex_state = 15}, - [874] = {.lex_state = 138, .external_lex_state = 9}, - [875] = {.lex_state = 171, .external_lex_state = 5}, - [876] = {.lex_state = 173, .external_lex_state = 4}, - [877] = {.lex_state = 107}, - [878] = {.lex_state = 221, .external_lex_state = 16}, - [879] = {.lex_state = 78}, - [880] = {.lex_state = 195, .external_lex_state = 16}, - [881] = {.lex_state = 195, .external_lex_state = 16}, - [882] = {.lex_state = 107, .external_lex_state = 10}, - [883] = {.lex_state = 223, .external_lex_state = 21}, - [884] = {.lex_state = 223, .external_lex_state = 16}, - [885] = {.lex_state = 107, .external_lex_state = 10}, - [886] = {.lex_state = 223, .external_lex_state = 21}, - [887] = {.lex_state = 223, .external_lex_state = 16}, - [888] = {.lex_state = 218, .external_lex_state = 2}, - [889] = {.lex_state = 107, .external_lex_state = 10}, - [890] = {.lex_state = 138, .external_lex_state = 9}, - [891] = {.lex_state = 171, .external_lex_state = 5}, - [892] = {.lex_state = 173, .external_lex_state = 4}, - [893] = {.lex_state = 71, .external_lex_state = 2}, - [894] = {.lex_state = 138, .external_lex_state = 9}, - [895] = {.lex_state = 199, .external_lex_state = 5}, - [896] = {.lex_state = 132, .external_lex_state = 4}, - [897] = {.lex_state = 134, .external_lex_state = 6}, - [898] = {.lex_state = 187}, - [899] = {.lex_state = 207, .external_lex_state = 12}, - [900] = {.lex_state = 207, .external_lex_state = 12}, - [901] = {.lex_state = 207, .external_lex_state = 12}, - [902] = {.lex_state = 134, .external_lex_state = 6}, - [903] = {.lex_state = 96, .external_lex_state = 20}, - [904] = {.lex_state = 107}, - [905] = {.lex_state = 114}, - [906] = {.lex_state = 96, .external_lex_state = 20}, - [907] = {.lex_state = 114, .external_lex_state = 7}, - [908] = {.lex_state = 71, .external_lex_state = 2}, - [909] = {.lex_state = 71, .external_lex_state = 2}, - [910] = {.lex_state = 71, .external_lex_state = 2}, - [911] = {.lex_state = 96, .external_lex_state = 16}, - [912] = {.lex_state = 221, .external_lex_state = 16}, - [913] = {.lex_state = 134, .external_lex_state = 6}, - [914] = {.lex_state = 223, .external_lex_state = 21}, - [915] = {.lex_state = 223, .external_lex_state = 16}, - [916] = {.lex_state = 223, .external_lex_state = 21}, - [917] = {.lex_state = 223, .external_lex_state = 16}, - [918] = {.lex_state = 94}, - [919] = {.lex_state = 223, .external_lex_state = 20}, - [920] = {.lex_state = 223, .external_lex_state = 20}, - [921] = {.lex_state = 187}, - [922] = {.lex_state = 107}, - [923] = {.lex_state = 223, .external_lex_state = 20}, - [924] = {.lex_state = 223, .external_lex_state = 20}, - [925] = {.lex_state = 223, .external_lex_state = 20}, - [926] = {.lex_state = 78}, - [927] = {.lex_state = 193, .external_lex_state = 7}, - [928] = {.lex_state = 195, .external_lex_state = 16}, - [929] = {.lex_state = 195, .external_lex_state = 16}, - [930] = {.lex_state = 223, .external_lex_state = 16}, - [931] = {.lex_state = 134, .external_lex_state = 6}, - [932] = {.lex_state = 223, .external_lex_state = 16}, - [933] = {.lex_state = 171, .external_lex_state = 5}, - [934] = {.lex_state = 173, .external_lex_state = 4}, - [935] = {.lex_state = 71, .external_lex_state = 2}, - [936] = {.lex_state = 199, .external_lex_state = 5}, - [937] = {.lex_state = 132, .external_lex_state = 4}, - [938] = {.lex_state = 71, .external_lex_state = 2}, - [939] = {.lex_state = 171, .external_lex_state = 5}, - [940] = {.lex_state = 173, .external_lex_state = 4}, - [941] = {.lex_state = 71, .external_lex_state = 2}, - [942] = {.lex_state = 223, .external_lex_state = 16}, - [943] = {.lex_state = 223, .external_lex_state = 16}, - [944] = {.lex_state = 134, .external_lex_state = 6}, - [945] = {.lex_state = 218, .external_lex_state = 2}, - [946] = {.lex_state = 218, .external_lex_state = 2}, - [947] = {.lex_state = 138, .external_lex_state = 9}, - [948] = {.lex_state = 94}, - [949] = {.lex_state = 199, .external_lex_state = 5}, - [950] = {.lex_state = 132, .external_lex_state = 4}, - [951] = {.lex_state = 199, .external_lex_state = 5}, - [952] = {.lex_state = 132, .external_lex_state = 4}, - [953] = {.lex_state = 199, .external_lex_state = 6}, - [954] = {.lex_state = 199, .external_lex_state = 6}, - [955] = {.lex_state = 199, .external_lex_state = 6}, - [956] = {.lex_state = 199, .external_lex_state = 6}, - [957] = {.lex_state = 71, .external_lex_state = 2}, - [958] = {.lex_state = 199, .external_lex_state = 5}, - [959] = {.lex_state = 71, .external_lex_state = 2}, - [960] = {.lex_state = 138, .external_lex_state = 9}, - [961] = {.lex_state = 104, .external_lex_state = 5}, - [962] = {.lex_state = 134, .external_lex_state = 6}, - [963] = {.lex_state = 218, .external_lex_state = 2}, - [964] = {.lex_state = 218, .external_lex_state = 2}, - [965] = {.lex_state = 138, .external_lex_state = 9}, - [966] = {.lex_state = 175, .external_lex_state = 5}, - [967] = {.lex_state = 88, .external_lex_state = 17}, - [968] = {.lex_state = 88, .external_lex_state = 17}, - [969] = {.lex_state = 78}, - [970] = {.lex_state = 193, .external_lex_state = 7}, - [971] = {.lex_state = 195, .external_lex_state = 16}, - [972] = {.lex_state = 195, .external_lex_state = 16}, - [973] = {.lex_state = 171, .external_lex_state = 5}, - [974] = {.lex_state = 173, .external_lex_state = 4}, - [975] = {.lex_state = 71, .external_lex_state = 2}, - [976] = {.lex_state = 199, .external_lex_state = 5}, - [977] = {.lex_state = 132, .external_lex_state = 4}, - [978] = {.lex_state = 71, .external_lex_state = 2}, - [979] = {.lex_state = 201, .external_lex_state = 9}, - [980] = {.lex_state = 88, .external_lex_state = 17}, - [981] = {.lex_state = 128, .external_lex_state = 6}, - [982] = {.lex_state = 128, .external_lex_state = 6}, - [983] = {.lex_state = 175, .external_lex_state = 5}, - [984] = {.lex_state = 128, .external_lex_state = 6}, - [985] = {.lex_state = 71, .external_lex_state = 2}, - [986] = {.lex_state = 218, .external_lex_state = 2}, - [987] = {.lex_state = 138, .external_lex_state = 9}, - [988] = {.lex_state = 225, .external_lex_state = 10}, - [989] = {.lex_state = 78}, - [990] = {.lex_state = 207, .external_lex_state = 12}, - [991] = {.lex_state = 225, .external_lex_state = 10}, - [992] = {.lex_state = 78}, - [993] = {.lex_state = 94}, - [994] = {.lex_state = 209, .external_lex_state = 10}, - [995] = {.lex_state = 209, .external_lex_state = 10}, - [996] = {.lex_state = 187}, - [997] = {.lex_state = 107}, - [998] = {.lex_state = 209, .external_lex_state = 10}, - [999] = {.lex_state = 209, .external_lex_state = 10}, - [1000] = {.lex_state = 209, .external_lex_state = 10}, - [1001] = {.lex_state = 78}, - [1002] = {.lex_state = 193, .external_lex_state = 7}, - [1003] = {.lex_state = 195, .external_lex_state = 16}, - [1004] = {.lex_state = 195, .external_lex_state = 16}, - [1005] = {.lex_state = 171, .external_lex_state = 5}, - [1006] = {.lex_state = 173, .external_lex_state = 4}, - [1007] = {.lex_state = 71, .external_lex_state = 2}, - [1008] = {.lex_state = 199, .external_lex_state = 5}, - [1009] = {.lex_state = 132, .external_lex_state = 4}, - [1010] = {.lex_state = 71, .external_lex_state = 2}, - [1011] = {.lex_state = 171, .external_lex_state = 5}, - [1012] = {.lex_state = 173, .external_lex_state = 4}, - [1013] = {.lex_state = 71, .external_lex_state = 2}, - [1014] = {.lex_state = 173, .external_lex_state = 4}, - [1015] = {.lex_state = 209}, - [1016] = {.lex_state = 173, .external_lex_state = 14}, - [1017] = {.lex_state = 132, .external_lex_state = 14}, - [1018] = {.lex_state = 173, .external_lex_state = 14}, - [1019] = {.lex_state = 187}, - [1020] = {.lex_state = 221, .external_lex_state = 16}, - [1021] = {.lex_state = 78}, - [1022] = {.lex_state = 195, .external_lex_state = 16}, - [1023] = {.lex_state = 195, .external_lex_state = 16}, - [1024] = {.lex_state = 173, .external_lex_state = 14}, - [1025] = {.lex_state = 223, .external_lex_state = 21}, - [1026] = {.lex_state = 223, .external_lex_state = 16}, - [1027] = {.lex_state = 173, .external_lex_state = 14}, - [1028] = {.lex_state = 223, .external_lex_state = 21}, - [1029] = {.lex_state = 223, .external_lex_state = 16}, - [1030] = {.lex_state = 218, .external_lex_state = 2}, - [1031] = {.lex_state = 173, .external_lex_state = 14}, - [1032] = {.lex_state = 138, .external_lex_state = 9}, - [1033] = {.lex_state = 171, .external_lex_state = 5}, - [1034] = {.lex_state = 173, .external_lex_state = 4}, - [1035] = {.lex_state = 71, .external_lex_state = 2}, - [1036] = {.lex_state = 138, .external_lex_state = 9}, - [1037] = {.lex_state = 199, .external_lex_state = 5}, - [1038] = {.lex_state = 132, .external_lex_state = 4}, - [1039] = {.lex_state = 218, .external_lex_state = 2}, - [1040] = {.lex_state = 173, .external_lex_state = 14}, - [1041] = {.lex_state = 138, .external_lex_state = 9}, - [1042] = {.lex_state = 171, .external_lex_state = 5}, - [1043] = {.lex_state = 173, .external_lex_state = 4}, - [1044] = {.lex_state = 164}, - [1045] = {.lex_state = 145}, - [1046] = {.lex_state = 227}, - [1047] = {.lex_state = 211, .external_lex_state = 9}, - [1048] = {.lex_state = 211, .external_lex_state = 11}, - [1049] = {.lex_state = 211, .external_lex_state = 11}, - [1050] = {.lex_state = 211, .external_lex_state = 11}, - [1051] = {.lex_state = 187}, - [1052] = {.lex_state = 221, .external_lex_state = 16}, - [1053] = {.lex_state = 78}, - [1054] = {.lex_state = 195, .external_lex_state = 16}, - [1055] = {.lex_state = 195, .external_lex_state = 16}, - [1056] = {.lex_state = 211, .external_lex_state = 11}, - [1057] = {.lex_state = 223, .external_lex_state = 21}, - [1058] = {.lex_state = 223, .external_lex_state = 16}, - [1059] = {.lex_state = 211, .external_lex_state = 11}, - [1060] = {.lex_state = 223, .external_lex_state = 21}, - [1061] = {.lex_state = 223, .external_lex_state = 16}, - [1062] = {.lex_state = 218, .external_lex_state = 2}, - [1063] = {.lex_state = 211, .external_lex_state = 11}, - [1064] = {.lex_state = 138, .external_lex_state = 9}, - [1065] = {.lex_state = 171, .external_lex_state = 5}, - [1066] = {.lex_state = 173, .external_lex_state = 4}, - [1067] = {.lex_state = 71, .external_lex_state = 2}, - [1068] = {.lex_state = 138, .external_lex_state = 9}, - [1069] = {.lex_state = 199, .external_lex_state = 5}, - [1070] = {.lex_state = 132, .external_lex_state = 4}, - [1071] = {.lex_state = 218, .external_lex_state = 2}, - [1072] = {.lex_state = 211, .external_lex_state = 11}, - [1073] = {.lex_state = 138, .external_lex_state = 9}, - [1074] = {.lex_state = 171, .external_lex_state = 5}, - [1075] = {.lex_state = 173, .external_lex_state = 4}, - [1076] = {.lex_state = 211, .external_lex_state = 9}, - [1077] = {.lex_state = 211, .external_lex_state = 9}, - [1078] = {.lex_state = 211, .external_lex_state = 9}, - [1079] = {.lex_state = 94}, - [1080] = {.lex_state = 229, .external_lex_state = 11}, - [1081] = {.lex_state = 229, .external_lex_state = 11}, - [1082] = {.lex_state = 187}, - [1083] = {.lex_state = 107}, - [1084] = {.lex_state = 229, .external_lex_state = 11}, - [1085] = {.lex_state = 229, .external_lex_state = 11}, - [1086] = {.lex_state = 229, .external_lex_state = 11}, - [1087] = {.lex_state = 78}, - [1088] = {.lex_state = 193, .external_lex_state = 7}, - [1089] = {.lex_state = 195, .external_lex_state = 16}, - [1090] = {.lex_state = 195, .external_lex_state = 16}, - [1091] = {.lex_state = 171, .external_lex_state = 5}, - [1092] = {.lex_state = 173, .external_lex_state = 4}, - [1093] = {.lex_state = 71, .external_lex_state = 2}, - [1094] = {.lex_state = 199, .external_lex_state = 5}, - [1095] = {.lex_state = 132, .external_lex_state = 4}, - [1096] = {.lex_state = 71, .external_lex_state = 2}, - [1097] = {.lex_state = 171, .external_lex_state = 5}, - [1098] = {.lex_state = 173, .external_lex_state = 4}, - [1099] = {.lex_state = 71, .external_lex_state = 2}, - [1100] = {.lex_state = 94}, - [1101] = {.lex_state = 229, .external_lex_state = 9}, - [1102] = {.lex_state = 214}, - [1103] = {.lex_state = 231, .external_lex_state = 10}, - [1104] = {.lex_state = 214, .external_lex_state = 10}, - [1105] = {.lex_state = 231, .external_lex_state = 10}, - [1106] = {.lex_state = 187}, - [1107] = {.lex_state = 221, .external_lex_state = 16}, - [1108] = {.lex_state = 78}, - [1109] = {.lex_state = 195, .external_lex_state = 16}, - [1110] = {.lex_state = 195, .external_lex_state = 16}, - [1111] = {.lex_state = 231, .external_lex_state = 10}, - [1112] = {.lex_state = 223, .external_lex_state = 21}, - [1113] = {.lex_state = 223, .external_lex_state = 16}, - [1114] = {.lex_state = 231, .external_lex_state = 10}, - [1115] = {.lex_state = 223, .external_lex_state = 21}, - [1116] = {.lex_state = 223, .external_lex_state = 16}, - [1117] = {.lex_state = 218, .external_lex_state = 2}, - [1118] = {.lex_state = 231, .external_lex_state = 10}, - [1119] = {.lex_state = 138, .external_lex_state = 9}, - [1120] = {.lex_state = 171, .external_lex_state = 5}, - [1121] = {.lex_state = 173, .external_lex_state = 4}, - [1122] = {.lex_state = 71, .external_lex_state = 2}, - [1123] = {.lex_state = 138, .external_lex_state = 9}, - [1124] = {.lex_state = 199, .external_lex_state = 5}, - [1125] = {.lex_state = 132, .external_lex_state = 4}, - [1126] = {.lex_state = 218, .external_lex_state = 2}, - [1127] = {.lex_state = 231, .external_lex_state = 10}, - [1128] = {.lex_state = 138, .external_lex_state = 9}, - [1129] = {.lex_state = 171, .external_lex_state = 5}, - [1130] = {.lex_state = 173, .external_lex_state = 4}, - [1131] = {.lex_state = 214}, - [1132] = {.lex_state = 214}, - [1133] = {.lex_state = 216, .external_lex_state = 10}, - [1134] = {.lex_state = 216, .external_lex_state = 10}, - [1135] = {.lex_state = 96, .external_lex_state = 20}, - [1136] = {.lex_state = 96, .external_lex_state = 20}, - [1137] = {.lex_state = 96, .external_lex_state = 16}, - [1138] = {.lex_state = 221, .external_lex_state = 16}, - [1139] = {.lex_state = 216, .external_lex_state = 10}, - [1140] = {.lex_state = 223, .external_lex_state = 21}, - [1141] = {.lex_state = 223, .external_lex_state = 16}, - [1142] = {.lex_state = 223, .external_lex_state = 21}, - [1143] = {.lex_state = 223, .external_lex_state = 16}, - [1144] = {.lex_state = 223, .external_lex_state = 16}, - [1145] = {.lex_state = 216, .external_lex_state = 10}, - [1146] = {.lex_state = 223, .external_lex_state = 16}, - [1147] = {.lex_state = 223, .external_lex_state = 16}, - [1148] = {.lex_state = 216, .external_lex_state = 10}, - [1149] = {.lex_state = 218, .external_lex_state = 2}, - [1150] = {.lex_state = 218, .external_lex_state = 2}, - [1151] = {.lex_state = 138, .external_lex_state = 9}, - [1152] = {.lex_state = 71, .external_lex_state = 2}, - [1153] = {.lex_state = 71, .external_lex_state = 2}, - [1154] = {.lex_state = 138, .external_lex_state = 9}, - [1155] = {.lex_state = 216, .external_lex_state = 10}, - [1156] = {.lex_state = 218, .external_lex_state = 2}, - [1157] = {.lex_state = 218, .external_lex_state = 2}, - [1158] = {.lex_state = 138, .external_lex_state = 9}, - [1159] = {.lex_state = 132, .external_lex_state = 14}, - [1160] = {.lex_state = 100, .external_lex_state = 14}, - [1161] = {.lex_state = 100, .external_lex_state = 14}, - [1162] = {.lex_state = 100, .external_lex_state = 14}, - [1163] = {.lex_state = 100, .external_lex_state = 6}, - [1164] = {.lex_state = 175, .external_lex_state = 5}, - [1165] = {.lex_state = 71, .external_lex_state = 2}, - [1166] = {.lex_state = 128, .external_lex_state = 6}, - [1167] = {.lex_state = 128, .external_lex_state = 6}, - [1168] = {.lex_state = 128, .external_lex_state = 6}, - [1169] = {.lex_state = 94}, - [1170] = {.lex_state = 71, .external_lex_state = 2}, - [1171] = {.lex_state = 175, .external_lex_state = 5}, - [1172] = {.lex_state = 94}, - [1173] = {.lex_state = 71, .external_lex_state = 2}, - [1174] = {.lex_state = 94}, - [1175] = {.lex_state = 94}, - [1176] = {.lex_state = 175, .external_lex_state = 5}, - [1177] = {.lex_state = 236, .external_lex_state = 10}, - [1178] = {.lex_state = 236, .external_lex_state = 10}, - [1179] = {.lex_state = 239}, - [1180] = {.lex_state = 236}, - [1181] = {.lex_state = 94}, - [1182] = {.lex_state = 234}, - [1183] = {.lex_state = 141, .external_lex_state = 11}, - [1184] = {.lex_state = 175, .external_lex_state = 5}, - [1185] = {.lex_state = 239}, - [1186] = {.lex_state = 94}, - [1187] = {.lex_state = 234}, - [1188] = {.lex_state = 141, .external_lex_state = 11}, - [1189] = {.lex_state = 96, .external_lex_state = 20}, - [1190] = {.lex_state = 96, .external_lex_state = 20}, - [1191] = {.lex_state = 96, .external_lex_state = 16}, - [1192] = {.lex_state = 221, .external_lex_state = 16}, - [1193] = {.lex_state = 141, .external_lex_state = 11}, - [1194] = {.lex_state = 223, .external_lex_state = 21}, - [1195] = {.lex_state = 223, .external_lex_state = 16}, - [1196] = {.lex_state = 223, .external_lex_state = 21}, - [1197] = {.lex_state = 223, .external_lex_state = 16}, - [1198] = {.lex_state = 223, .external_lex_state = 16}, - [1199] = {.lex_state = 141, .external_lex_state = 11}, - [1200] = {.lex_state = 223, .external_lex_state = 16}, - [1201] = {.lex_state = 223, .external_lex_state = 16}, - [1202] = {.lex_state = 141, .external_lex_state = 11}, - [1203] = {.lex_state = 218, .external_lex_state = 2}, - [1204] = {.lex_state = 218, .external_lex_state = 2}, - [1205] = {.lex_state = 138, .external_lex_state = 9}, - [1206] = {.lex_state = 71, .external_lex_state = 2}, - [1207] = {.lex_state = 71, .external_lex_state = 2}, - [1208] = {.lex_state = 138, .external_lex_state = 9}, - [1209] = {.lex_state = 141, .external_lex_state = 11}, - [1210] = {.lex_state = 218, .external_lex_state = 2}, - [1211] = {.lex_state = 218, .external_lex_state = 2}, - [1212] = {.lex_state = 138, .external_lex_state = 9}, - [1213] = {.lex_state = 175, .external_lex_state = 5}, - [1214] = {.lex_state = 173, .external_lex_state = 14}, - [1215] = {.lex_state = 167, .external_lex_state = 14}, - [1216] = {.lex_state = 167, .external_lex_state = 14}, - [1217] = {.lex_state = 167, .external_lex_state = 14}, - [1218] = {.lex_state = 167, .external_lex_state = 6}, - [1219] = {.lex_state = 171, .external_lex_state = 6}, - [1220] = {.lex_state = 171, .external_lex_state = 6}, - [1221] = {.lex_state = 171, .external_lex_state = 6}, - [1222] = {.lex_state = 175, .external_lex_state = 5}, - [1223] = {.lex_state = 218, .external_lex_state = 2}, - [1224] = {.lex_state = 94, .external_lex_state = 2}, - [1225] = {.lex_state = 209}, - [1226] = {.lex_state = 181, .external_lex_state = 12}, - [1227] = {.lex_state = 181, .external_lex_state = 12}, - [1228] = {.lex_state = 96, .external_lex_state = 20}, - [1229] = {.lex_state = 96, .external_lex_state = 20}, - [1230] = {.lex_state = 96, .external_lex_state = 16}, - [1231] = {.lex_state = 221, .external_lex_state = 16}, - [1232] = {.lex_state = 181, .external_lex_state = 12}, - [1233] = {.lex_state = 223, .external_lex_state = 21}, - [1234] = {.lex_state = 223, .external_lex_state = 16}, - [1235] = {.lex_state = 223, .external_lex_state = 21}, - [1236] = {.lex_state = 223, .external_lex_state = 16}, - [1237] = {.lex_state = 223, .external_lex_state = 16}, - [1238] = {.lex_state = 181, .external_lex_state = 12}, - [1239] = {.lex_state = 223, .external_lex_state = 16}, - [1240] = {.lex_state = 223, .external_lex_state = 16}, - [1241] = {.lex_state = 181, .external_lex_state = 12}, - [1242] = {.lex_state = 218, .external_lex_state = 2}, - [1243] = {.lex_state = 218, .external_lex_state = 2}, - [1244] = {.lex_state = 138, .external_lex_state = 9}, - [1245] = {.lex_state = 71, .external_lex_state = 2}, - [1246] = {.lex_state = 71, .external_lex_state = 2}, - [1247] = {.lex_state = 138, .external_lex_state = 9}, - [1248] = {.lex_state = 181, .external_lex_state = 12}, - [1249] = {.lex_state = 218, .external_lex_state = 2}, - [1250] = {.lex_state = 218, .external_lex_state = 2}, - [1251] = {.lex_state = 138, .external_lex_state = 9}, - [1252] = {.lex_state = 167, .external_lex_state = 4}, - [1253] = {.lex_state = 209}, - [1254] = {.lex_state = 167, .external_lex_state = 14}, - [1255] = {.lex_state = 167, .external_lex_state = 14}, - [1256] = {.lex_state = 96, .external_lex_state = 20}, - [1257] = {.lex_state = 96, .external_lex_state = 20}, - [1258] = {.lex_state = 96, .external_lex_state = 16}, - [1259] = {.lex_state = 221, .external_lex_state = 16}, - [1260] = {.lex_state = 167, .external_lex_state = 14}, - [1261] = {.lex_state = 223, .external_lex_state = 21}, - [1262] = {.lex_state = 223, .external_lex_state = 16}, - [1263] = {.lex_state = 223, .external_lex_state = 21}, - [1264] = {.lex_state = 223, .external_lex_state = 16}, - [1265] = {.lex_state = 223, .external_lex_state = 16}, - [1266] = {.lex_state = 167, .external_lex_state = 14}, - [1267] = {.lex_state = 223, .external_lex_state = 16}, - [1268] = {.lex_state = 223, .external_lex_state = 16}, - [1269] = {.lex_state = 167, .external_lex_state = 14}, - [1270] = {.lex_state = 218, .external_lex_state = 2}, - [1271] = {.lex_state = 218, .external_lex_state = 2}, - [1272] = {.lex_state = 138, .external_lex_state = 9}, - [1273] = {.lex_state = 71, .external_lex_state = 2}, - [1274] = {.lex_state = 71, .external_lex_state = 2}, - [1275] = {.lex_state = 138, .external_lex_state = 9}, - [1276] = {.lex_state = 167, .external_lex_state = 14}, - [1277] = {.lex_state = 218, .external_lex_state = 2}, - [1278] = {.lex_state = 218, .external_lex_state = 2}, - [1279] = {.lex_state = 138, .external_lex_state = 9}, - [1280] = {.lex_state = 167, .external_lex_state = 6}, - [1281] = {.lex_state = 167, .external_lex_state = 6}, - [1282] = {.lex_state = 96, .external_lex_state = 20}, - [1283] = {.lex_state = 96, .external_lex_state = 20}, - [1284] = {.lex_state = 96, .external_lex_state = 16}, - [1285] = {.lex_state = 221, .external_lex_state = 16}, - [1286] = {.lex_state = 167, .external_lex_state = 6}, - [1287] = {.lex_state = 223, .external_lex_state = 21}, - [1288] = {.lex_state = 223, .external_lex_state = 16}, - [1289] = {.lex_state = 223, .external_lex_state = 21}, - [1290] = {.lex_state = 223, .external_lex_state = 16}, - [1291] = {.lex_state = 223, .external_lex_state = 16}, - [1292] = {.lex_state = 167, .external_lex_state = 6}, - [1293] = {.lex_state = 223, .external_lex_state = 16}, - [1294] = {.lex_state = 223, .external_lex_state = 16}, - [1295] = {.lex_state = 167, .external_lex_state = 6}, - [1296] = {.lex_state = 218, .external_lex_state = 2}, - [1297] = {.lex_state = 218, .external_lex_state = 2}, - [1298] = {.lex_state = 138, .external_lex_state = 9}, - [1299] = {.lex_state = 71, .external_lex_state = 2}, - [1300] = {.lex_state = 71, .external_lex_state = 2}, - [1301] = {.lex_state = 138, .external_lex_state = 9}, - [1302] = {.lex_state = 167, .external_lex_state = 6}, - [1303] = {.lex_state = 218, .external_lex_state = 2}, - [1304] = {.lex_state = 218, .external_lex_state = 2}, - [1305] = {.lex_state = 138, .external_lex_state = 9}, - [1306] = {.lex_state = 94, .external_lex_state = 15}, - [1307] = {.lex_state = 94, .external_lex_state = 15}, - [1308] = {.lex_state = 96, .external_lex_state = 20}, - [1309] = {.lex_state = 96, .external_lex_state = 20}, - [1310] = {.lex_state = 96, .external_lex_state = 16}, - [1311] = {.lex_state = 221, .external_lex_state = 16}, - [1312] = {.lex_state = 94, .external_lex_state = 15}, - [1313] = {.lex_state = 223, .external_lex_state = 21}, - [1314] = {.lex_state = 223, .external_lex_state = 16}, - [1315] = {.lex_state = 223, .external_lex_state = 21}, - [1316] = {.lex_state = 223, .external_lex_state = 16}, - [1317] = {.lex_state = 223, .external_lex_state = 16}, - [1318] = {.lex_state = 94, .external_lex_state = 15}, - [1319] = {.lex_state = 223, .external_lex_state = 16}, - [1320] = {.lex_state = 223, .external_lex_state = 16}, - [1321] = {.lex_state = 94, .external_lex_state = 15}, - [1322] = {.lex_state = 218, .external_lex_state = 2}, - [1323] = {.lex_state = 218, .external_lex_state = 2}, - [1324] = {.lex_state = 138, .external_lex_state = 9}, - [1325] = {.lex_state = 71, .external_lex_state = 2}, - [1326] = {.lex_state = 71, .external_lex_state = 2}, - [1327] = {.lex_state = 138, .external_lex_state = 9}, - [1328] = {.lex_state = 94, .external_lex_state = 15}, - [1329] = {.lex_state = 218, .external_lex_state = 2}, - [1330] = {.lex_state = 218, .external_lex_state = 2}, - [1331] = {.lex_state = 138, .external_lex_state = 9}, - [1332] = {.lex_state = 107, .external_lex_state = 10}, - [1333] = {.lex_state = 96, .external_lex_state = 20}, - [1334] = {.lex_state = 96, .external_lex_state = 20}, - [1335] = {.lex_state = 96, .external_lex_state = 16}, - [1336] = {.lex_state = 221, .external_lex_state = 16}, - [1337] = {.lex_state = 107, .external_lex_state = 10}, - [1338] = {.lex_state = 223, .external_lex_state = 21}, - [1339] = {.lex_state = 223, .external_lex_state = 16}, - [1340] = {.lex_state = 223, .external_lex_state = 21}, - [1341] = {.lex_state = 223, .external_lex_state = 16}, - [1342] = {.lex_state = 223, .external_lex_state = 16}, - [1343] = {.lex_state = 107, .external_lex_state = 10}, - [1344] = {.lex_state = 223, .external_lex_state = 16}, - [1345] = {.lex_state = 223, .external_lex_state = 16}, - [1346] = {.lex_state = 107, .external_lex_state = 10}, - [1347] = {.lex_state = 218, .external_lex_state = 2}, - [1348] = {.lex_state = 218, .external_lex_state = 2}, - [1349] = {.lex_state = 138, .external_lex_state = 9}, - [1350] = {.lex_state = 71, .external_lex_state = 2}, - [1351] = {.lex_state = 71, .external_lex_state = 2}, - [1352] = {.lex_state = 138, .external_lex_state = 9}, - [1353] = {.lex_state = 207, .external_lex_state = 13}, - [1354] = {.lex_state = 195, .external_lex_state = 20}, - [1355] = {.lex_state = 207, .external_lex_state = 13}, - [1356] = {.lex_state = 195, .external_lex_state = 20}, - [1357] = {.lex_state = 181, .external_lex_state = 13}, - [1358] = {.lex_state = 94}, - [1359] = {.lex_state = 134, .external_lex_state = 6}, - [1360] = {.lex_state = 96, .external_lex_state = 20}, - [1361] = {.lex_state = 96, .external_lex_state = 20}, - [1362] = {.lex_state = 187}, - [1363] = {.lex_state = 107}, - [1364] = {.lex_state = 96, .external_lex_state = 20}, - [1365] = {.lex_state = 96, .external_lex_state = 20}, - [1366] = {.lex_state = 96, .external_lex_state = 20}, - [1367] = {.lex_state = 134, .external_lex_state = 6}, - [1368] = {.lex_state = 78}, - [1369] = {.lex_state = 193, .external_lex_state = 7}, - [1370] = {.lex_state = 195, .external_lex_state = 16}, - [1371] = {.lex_state = 195, .external_lex_state = 16}, - [1372] = {.lex_state = 171, .external_lex_state = 5}, - [1373] = {.lex_state = 173, .external_lex_state = 4}, - [1374] = {.lex_state = 71, .external_lex_state = 2}, - [1375] = {.lex_state = 199, .external_lex_state = 5}, - [1376] = {.lex_state = 132, .external_lex_state = 4}, - [1377] = {.lex_state = 71, .external_lex_state = 2}, - [1378] = {.lex_state = 171, .external_lex_state = 5}, - [1379] = {.lex_state = 173, .external_lex_state = 4}, - [1380] = {.lex_state = 71, .external_lex_state = 2}, - [1381] = {.lex_state = 96, .external_lex_state = 20}, - [1382] = {.lex_state = 96, .external_lex_state = 20}, - [1383] = {.lex_state = 96, .external_lex_state = 16}, - [1384] = {.lex_state = 223, .external_lex_state = 16}, - [1385] = {.lex_state = 134, .external_lex_state = 6}, - [1386] = {.lex_state = 223, .external_lex_state = 16}, - [1387] = {.lex_state = 223, .external_lex_state = 16}, - [1388] = {.lex_state = 223, .external_lex_state = 16}, - [1389] = {.lex_state = 223, .external_lex_state = 20}, - [1390] = {.lex_state = 223, .external_lex_state = 20}, - [1391] = {.lex_state = 223, .external_lex_state = 20}, - [1392] = {.lex_state = 187}, - [1393] = {.lex_state = 221, .external_lex_state = 16}, - [1394] = {.lex_state = 78}, - [1395] = {.lex_state = 195, .external_lex_state = 16}, - [1396] = {.lex_state = 195, .external_lex_state = 16}, - [1397] = {.lex_state = 223, .external_lex_state = 20}, - [1398] = {.lex_state = 223, .external_lex_state = 21}, - [1399] = {.lex_state = 223, .external_lex_state = 16}, - [1400] = {.lex_state = 223, .external_lex_state = 20}, - [1401] = {.lex_state = 223, .external_lex_state = 21}, - [1402] = {.lex_state = 223, .external_lex_state = 16}, - [1403] = {.lex_state = 134, .external_lex_state = 6}, - [1404] = {.lex_state = 223, .external_lex_state = 16}, - [1405] = {.lex_state = 218, .external_lex_state = 2}, - [1406] = {.lex_state = 223, .external_lex_state = 20}, - [1407] = {.lex_state = 138, .external_lex_state = 9}, - [1408] = {.lex_state = 171, .external_lex_state = 5}, - [1409] = {.lex_state = 173, .external_lex_state = 4}, - [1410] = {.lex_state = 71, .external_lex_state = 2}, - [1411] = {.lex_state = 138, .external_lex_state = 9}, - [1412] = {.lex_state = 199, .external_lex_state = 5}, - [1413] = {.lex_state = 132, .external_lex_state = 4}, - [1414] = {.lex_state = 218, .external_lex_state = 2}, - [1415] = {.lex_state = 223, .external_lex_state = 20}, - [1416] = {.lex_state = 138, .external_lex_state = 9}, - [1417] = {.lex_state = 171, .external_lex_state = 5}, - [1418] = {.lex_state = 173, .external_lex_state = 4}, - [1419] = {.lex_state = 134, .external_lex_state = 6}, - [1420] = {.lex_state = 218, .external_lex_state = 2}, - [1421] = {.lex_state = 199, .external_lex_state = 6}, - [1422] = {.lex_state = 199, .external_lex_state = 6}, - [1423] = {.lex_state = 199, .external_lex_state = 6}, - [1424] = {.lex_state = 71, .external_lex_state = 2}, - [1425] = {.lex_state = 134, .external_lex_state = 6}, - [1426] = {.lex_state = 218, .external_lex_state = 2}, - [1427] = {.lex_state = 221, .external_lex_state = 16}, - [1428] = {.lex_state = 78}, - [1429] = {.lex_state = 195, .external_lex_state = 16}, - [1430] = {.lex_state = 195, .external_lex_state = 16}, - [1431] = {.lex_state = 88, .external_lex_state = 17}, - [1432] = {.lex_state = 223, .external_lex_state = 21}, - [1433] = {.lex_state = 223, .external_lex_state = 16}, - [1434] = {.lex_state = 88, .external_lex_state = 17}, - [1435] = {.lex_state = 223, .external_lex_state = 21}, - [1436] = {.lex_state = 223, .external_lex_state = 16}, - [1437] = {.lex_state = 218, .external_lex_state = 2}, - [1438] = {.lex_state = 88, .external_lex_state = 17}, - [1439] = {.lex_state = 138, .external_lex_state = 9}, - [1440] = {.lex_state = 171, .external_lex_state = 5}, - [1441] = {.lex_state = 173, .external_lex_state = 4}, - [1442] = {.lex_state = 71, .external_lex_state = 2}, - [1443] = {.lex_state = 138, .external_lex_state = 9}, - [1444] = {.lex_state = 199, .external_lex_state = 5}, - [1445] = {.lex_state = 132, .external_lex_state = 4}, - [1446] = {.lex_state = 128, .external_lex_state = 6}, - [1447] = {.lex_state = 218, .external_lex_state = 2}, - [1448] = {.lex_state = 78}, - [1449] = {.lex_state = 78}, - [1450] = {.lex_state = 209, .external_lex_state = 10}, - [1451] = {.lex_state = 209, .external_lex_state = 10}, - [1452] = {.lex_state = 209, .external_lex_state = 10}, - [1453] = {.lex_state = 187}, - [1454] = {.lex_state = 221, .external_lex_state = 16}, - [1455] = {.lex_state = 78}, - [1456] = {.lex_state = 195, .external_lex_state = 16}, - [1457] = {.lex_state = 195, .external_lex_state = 16}, - [1458] = {.lex_state = 209, .external_lex_state = 10}, - [1459] = {.lex_state = 223, .external_lex_state = 21}, - [1460] = {.lex_state = 223, .external_lex_state = 16}, - [1461] = {.lex_state = 209, .external_lex_state = 10}, - [1462] = {.lex_state = 223, .external_lex_state = 21}, - [1463] = {.lex_state = 223, .external_lex_state = 16}, - [1464] = {.lex_state = 218, .external_lex_state = 2}, - [1465] = {.lex_state = 209, .external_lex_state = 10}, - [1466] = {.lex_state = 138, .external_lex_state = 9}, - [1467] = {.lex_state = 171, .external_lex_state = 5}, - [1468] = {.lex_state = 173, .external_lex_state = 4}, - [1469] = {.lex_state = 71, .external_lex_state = 2}, - [1470] = {.lex_state = 138, .external_lex_state = 9}, - [1471] = {.lex_state = 199, .external_lex_state = 5}, - [1472] = {.lex_state = 132, .external_lex_state = 4}, - [1473] = {.lex_state = 218, .external_lex_state = 2}, - [1474] = {.lex_state = 209, .external_lex_state = 10}, - [1475] = {.lex_state = 138, .external_lex_state = 9}, - [1476] = {.lex_state = 171, .external_lex_state = 5}, - [1477] = {.lex_state = 173, .external_lex_state = 4}, - [1478] = {.lex_state = 173, .external_lex_state = 14}, - [1479] = {.lex_state = 173, .external_lex_state = 14}, - [1480] = {.lex_state = 96, .external_lex_state = 20}, - [1481] = {.lex_state = 96, .external_lex_state = 20}, - [1482] = {.lex_state = 96, .external_lex_state = 16}, - [1483] = {.lex_state = 221, .external_lex_state = 16}, - [1484] = {.lex_state = 173, .external_lex_state = 14}, - [1485] = {.lex_state = 223, .external_lex_state = 21}, - [1486] = {.lex_state = 223, .external_lex_state = 16}, - [1487] = {.lex_state = 223, .external_lex_state = 21}, - [1488] = {.lex_state = 223, .external_lex_state = 16}, - [1489] = {.lex_state = 223, .external_lex_state = 16}, - [1490] = {.lex_state = 173, .external_lex_state = 14}, - [1491] = {.lex_state = 223, .external_lex_state = 16}, - [1492] = {.lex_state = 223, .external_lex_state = 16}, - [1493] = {.lex_state = 173, .external_lex_state = 14}, - [1494] = {.lex_state = 218, .external_lex_state = 2}, - [1495] = {.lex_state = 218, .external_lex_state = 2}, - [1496] = {.lex_state = 138, .external_lex_state = 9}, - [1497] = {.lex_state = 71, .external_lex_state = 2}, - [1498] = {.lex_state = 71, .external_lex_state = 2}, - [1499] = {.lex_state = 138, .external_lex_state = 9}, - [1500] = {.lex_state = 173, .external_lex_state = 14}, - [1501] = {.lex_state = 218, .external_lex_state = 2}, - [1502] = {.lex_state = 218, .external_lex_state = 2}, - [1503] = {.lex_state = 138, .external_lex_state = 9}, - [1504] = {.lex_state = 164}, - [1505] = {.lex_state = 175, .external_lex_state = 5}, - [1506] = {.lex_state = 164}, - [1507] = {.lex_state = 145}, - [1508] = {.lex_state = 211, .external_lex_state = 11}, - [1509] = {.lex_state = 211, .external_lex_state = 11}, - [1510] = {.lex_state = 96, .external_lex_state = 20}, - [1511] = {.lex_state = 96, .external_lex_state = 20}, - [1512] = {.lex_state = 96, .external_lex_state = 16}, - [1513] = {.lex_state = 221, .external_lex_state = 16}, - [1514] = {.lex_state = 211, .external_lex_state = 11}, - [1515] = {.lex_state = 223, .external_lex_state = 21}, - [1516] = {.lex_state = 223, .external_lex_state = 16}, - [1517] = {.lex_state = 223, .external_lex_state = 21}, - [1518] = {.lex_state = 223, .external_lex_state = 16}, - [1519] = {.lex_state = 223, .external_lex_state = 16}, - [1520] = {.lex_state = 211, .external_lex_state = 11}, - [1521] = {.lex_state = 223, .external_lex_state = 16}, - [1522] = {.lex_state = 223, .external_lex_state = 16}, - [1523] = {.lex_state = 211, .external_lex_state = 11}, - [1524] = {.lex_state = 218, .external_lex_state = 2}, - [1525] = {.lex_state = 218, .external_lex_state = 2}, - [1526] = {.lex_state = 138, .external_lex_state = 9}, - [1527] = {.lex_state = 71, .external_lex_state = 2}, - [1528] = {.lex_state = 71, .external_lex_state = 2}, - [1529] = {.lex_state = 138, .external_lex_state = 9}, - [1530] = {.lex_state = 211, .external_lex_state = 11}, - [1531] = {.lex_state = 218, .external_lex_state = 2}, - [1532] = {.lex_state = 218, .external_lex_state = 2}, - [1533] = {.lex_state = 138, .external_lex_state = 9}, - [1534] = {.lex_state = 227}, - [1535] = {.lex_state = 229, .external_lex_state = 11}, - [1536] = {.lex_state = 229, .external_lex_state = 11}, - [1537] = {.lex_state = 229, .external_lex_state = 11}, - [1538] = {.lex_state = 187}, - [1539] = {.lex_state = 221, .external_lex_state = 16}, - [1540] = {.lex_state = 78}, - [1541] = {.lex_state = 195, .external_lex_state = 16}, - [1542] = {.lex_state = 195, .external_lex_state = 16}, - [1543] = {.lex_state = 229, .external_lex_state = 11}, - [1544] = {.lex_state = 223, .external_lex_state = 21}, - [1545] = {.lex_state = 223, .external_lex_state = 16}, - [1546] = {.lex_state = 229, .external_lex_state = 11}, - [1547] = {.lex_state = 223, .external_lex_state = 21}, - [1548] = {.lex_state = 223, .external_lex_state = 16}, - [1549] = {.lex_state = 218, .external_lex_state = 2}, - [1550] = {.lex_state = 229, .external_lex_state = 11}, - [1551] = {.lex_state = 138, .external_lex_state = 9}, - [1552] = {.lex_state = 171, .external_lex_state = 5}, - [1553] = {.lex_state = 173, .external_lex_state = 4}, - [1554] = {.lex_state = 71, .external_lex_state = 2}, - [1555] = {.lex_state = 138, .external_lex_state = 9}, - [1556] = {.lex_state = 199, .external_lex_state = 5}, - [1557] = {.lex_state = 132, .external_lex_state = 4}, - [1558] = {.lex_state = 218, .external_lex_state = 2}, - [1559] = {.lex_state = 229, .external_lex_state = 11}, - [1560] = {.lex_state = 138, .external_lex_state = 9}, - [1561] = {.lex_state = 171, .external_lex_state = 5}, - [1562] = {.lex_state = 173, .external_lex_state = 4}, - [1563] = {.lex_state = 175, .external_lex_state = 5}, - [1564] = {.lex_state = 231, .external_lex_state = 10}, - [1565] = {.lex_state = 231, .external_lex_state = 10}, - [1566] = {.lex_state = 96, .external_lex_state = 20}, - [1567] = {.lex_state = 96, .external_lex_state = 20}, - [1568] = {.lex_state = 96, .external_lex_state = 16}, - [1569] = {.lex_state = 221, .external_lex_state = 16}, - [1570] = {.lex_state = 231, .external_lex_state = 10}, - [1571] = {.lex_state = 223, .external_lex_state = 21}, - [1572] = {.lex_state = 223, .external_lex_state = 16}, - [1573] = {.lex_state = 223, .external_lex_state = 21}, - [1574] = {.lex_state = 223, .external_lex_state = 16}, - [1575] = {.lex_state = 223, .external_lex_state = 16}, - [1576] = {.lex_state = 231, .external_lex_state = 10}, - [1577] = {.lex_state = 223, .external_lex_state = 16}, - [1578] = {.lex_state = 223, .external_lex_state = 16}, - [1579] = {.lex_state = 231, .external_lex_state = 10}, - [1580] = {.lex_state = 218, .external_lex_state = 2}, - [1581] = {.lex_state = 218, .external_lex_state = 2}, - [1582] = {.lex_state = 138, .external_lex_state = 9}, - [1583] = {.lex_state = 71, .external_lex_state = 2}, - [1584] = {.lex_state = 71, .external_lex_state = 2}, - [1585] = {.lex_state = 138, .external_lex_state = 9}, - [1586] = {.lex_state = 231, .external_lex_state = 10}, - [1587] = {.lex_state = 218, .external_lex_state = 2}, - [1588] = {.lex_state = 218, .external_lex_state = 2}, - [1589] = {.lex_state = 138, .external_lex_state = 9}, - [1590] = {.lex_state = 216, .external_lex_state = 10}, - [1591] = {.lex_state = 216, .external_lex_state = 10}, - [1592] = {.lex_state = 96, .external_lex_state = 20}, - [1593] = {.lex_state = 96, .external_lex_state = 20}, - [1594] = {.lex_state = 96, .external_lex_state = 16}, - [1595] = {.lex_state = 223, .external_lex_state = 16}, - [1596] = {.lex_state = 216, .external_lex_state = 10}, - [1597] = {.lex_state = 223, .external_lex_state = 16}, - [1598] = {.lex_state = 223, .external_lex_state = 16}, - [1599] = {.lex_state = 223, .external_lex_state = 16}, - [1600] = {.lex_state = 216, .external_lex_state = 10}, - [1601] = {.lex_state = 223, .external_lex_state = 16}, - [1602] = {.lex_state = 216, .external_lex_state = 10}, - [1603] = {.lex_state = 218, .external_lex_state = 2}, - [1604] = {.lex_state = 71, .external_lex_state = 2}, - [1605] = {.lex_state = 216, .external_lex_state = 10}, - [1606] = {.lex_state = 218, .external_lex_state = 2}, - [1607] = {.lex_state = 132, .external_lex_state = 14}, - [1608] = {.lex_state = 128, .external_lex_state = 6}, - [1609] = {.lex_state = 71, .external_lex_state = 2}, - [1610] = {.lex_state = 71, .external_lex_state = 2}, - [1611] = {.lex_state = 175, .external_lex_state = 5}, - [1612] = {.lex_state = 94}, - [1613] = {.lex_state = 94}, - [1614] = {.lex_state = 241, .external_lex_state = 2}, - [1615] = {.lex_state = 236}, - [1616] = {.lex_state = 236, .external_lex_state = 10}, - [1617] = {.lex_state = 241, .external_lex_state = 2}, - [1618] = {.lex_state = 236}, - [1619] = {.lex_state = 175, .external_lex_state = 5}, - [1620] = {.lex_state = 239}, - [1621] = {.lex_state = 94}, - [1622] = {.lex_state = 94}, - [1623] = {.lex_state = 175, .external_lex_state = 5}, - [1624] = {.lex_state = 239}, - [1625] = {.lex_state = 94}, - [1626] = {.lex_state = 141, .external_lex_state = 11}, - [1627] = {.lex_state = 141, .external_lex_state = 11}, - [1628] = {.lex_state = 96, .external_lex_state = 20}, - [1629] = {.lex_state = 96, .external_lex_state = 20}, - [1630] = {.lex_state = 96, .external_lex_state = 16}, - [1631] = {.lex_state = 223, .external_lex_state = 16}, - [1632] = {.lex_state = 141, .external_lex_state = 11}, - [1633] = {.lex_state = 223, .external_lex_state = 16}, - [1634] = {.lex_state = 223, .external_lex_state = 16}, - [1635] = {.lex_state = 223, .external_lex_state = 16}, - [1636] = {.lex_state = 141, .external_lex_state = 11}, - [1637] = {.lex_state = 223, .external_lex_state = 16}, - [1638] = {.lex_state = 141, .external_lex_state = 11}, - [1639] = {.lex_state = 218, .external_lex_state = 2}, - [1640] = {.lex_state = 71, .external_lex_state = 2}, - [1641] = {.lex_state = 141, .external_lex_state = 11}, - [1642] = {.lex_state = 218, .external_lex_state = 2}, - [1643] = {.lex_state = 173, .external_lex_state = 14}, - [1644] = {.lex_state = 171, .external_lex_state = 6}, - [1645] = {.lex_state = 175, .external_lex_state = 5}, - [1646] = {.lex_state = 94, .external_lex_state = 2}, - [1647] = {.lex_state = 181, .external_lex_state = 12}, - [1648] = {.lex_state = 181, .external_lex_state = 12}, - [1649] = {.lex_state = 96, .external_lex_state = 20}, - [1650] = {.lex_state = 96, .external_lex_state = 20}, - [1651] = {.lex_state = 96, .external_lex_state = 16}, - [1652] = {.lex_state = 223, .external_lex_state = 16}, - [1653] = {.lex_state = 181, .external_lex_state = 12}, - [1654] = {.lex_state = 223, .external_lex_state = 16}, - [1655] = {.lex_state = 223, .external_lex_state = 16}, - [1656] = {.lex_state = 223, .external_lex_state = 16}, - [1657] = {.lex_state = 181, .external_lex_state = 12}, - [1658] = {.lex_state = 223, .external_lex_state = 16}, - [1659] = {.lex_state = 181, .external_lex_state = 12}, - [1660] = {.lex_state = 218, .external_lex_state = 2}, - [1661] = {.lex_state = 71, .external_lex_state = 2}, - [1662] = {.lex_state = 181, .external_lex_state = 12}, - [1663] = {.lex_state = 218, .external_lex_state = 2}, - [1664] = {.lex_state = 167, .external_lex_state = 4}, - [1665] = {.lex_state = 167, .external_lex_state = 14}, - [1666] = {.lex_state = 167, .external_lex_state = 14}, - [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 = 223, .external_lex_state = 16}, - [1671] = {.lex_state = 167, .external_lex_state = 14}, - [1672] = {.lex_state = 223, .external_lex_state = 16}, - [1673] = {.lex_state = 223, .external_lex_state = 16}, - [1674] = {.lex_state = 223, .external_lex_state = 16}, - [1675] = {.lex_state = 167, .external_lex_state = 14}, - [1676] = {.lex_state = 223, .external_lex_state = 16}, - [1677] = {.lex_state = 167, .external_lex_state = 14}, - [1678] = {.lex_state = 218, .external_lex_state = 2}, - [1679] = {.lex_state = 71, .external_lex_state = 2}, - [1680] = {.lex_state = 167, .external_lex_state = 14}, - [1681] = {.lex_state = 218, .external_lex_state = 2}, - [1682] = {.lex_state = 167, .external_lex_state = 6}, - [1683] = {.lex_state = 167, .external_lex_state = 6}, - [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 = 223, .external_lex_state = 16}, - [1688] = {.lex_state = 167, .external_lex_state = 6}, - [1689] = {.lex_state = 223, .external_lex_state = 16}, - [1690] = {.lex_state = 223, .external_lex_state = 16}, - [1691] = {.lex_state = 223, .external_lex_state = 16}, - [1692] = {.lex_state = 167, .external_lex_state = 6}, - [1693] = {.lex_state = 223, .external_lex_state = 16}, - [1694] = {.lex_state = 167, .external_lex_state = 6}, - [1695] = {.lex_state = 218, .external_lex_state = 2}, - [1696] = {.lex_state = 71, .external_lex_state = 2}, - [1697] = {.lex_state = 167, .external_lex_state = 6}, - [1698] = {.lex_state = 218, .external_lex_state = 2}, - [1699] = {.lex_state = 94, .external_lex_state = 15}, - [1700] = {.lex_state = 94, .external_lex_state = 15}, - [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 = 223, .external_lex_state = 16}, - [1705] = {.lex_state = 94, .external_lex_state = 15}, - [1706] = {.lex_state = 223, .external_lex_state = 16}, - [1707] = {.lex_state = 223, .external_lex_state = 16}, - [1708] = {.lex_state = 223, .external_lex_state = 16}, - [1709] = {.lex_state = 94, .external_lex_state = 15}, - [1710] = {.lex_state = 223, .external_lex_state = 16}, - [1711] = {.lex_state = 94, .external_lex_state = 15}, - [1712] = {.lex_state = 218, .external_lex_state = 2}, - [1713] = {.lex_state = 71, .external_lex_state = 2}, - [1714] = {.lex_state = 94, .external_lex_state = 15}, - [1715] = {.lex_state = 218, .external_lex_state = 2}, - [1716] = {.lex_state = 107, .external_lex_state = 10}, - [1717] = {.lex_state = 107, .external_lex_state = 10}, - [1718] = {.lex_state = 96, .external_lex_state = 20}, - [1719] = {.lex_state = 96, .external_lex_state = 20}, - [1720] = {.lex_state = 96, .external_lex_state = 16}, - [1721] = {.lex_state = 223, .external_lex_state = 16}, - [1722] = {.lex_state = 107, .external_lex_state = 10}, - [1723] = {.lex_state = 223, .external_lex_state = 16}, - [1724] = {.lex_state = 223, .external_lex_state = 16}, - [1725] = {.lex_state = 223, .external_lex_state = 16}, - [1726] = {.lex_state = 107, .external_lex_state = 10}, - [1727] = {.lex_state = 223, .external_lex_state = 16}, - [1728] = {.lex_state = 107, .external_lex_state = 10}, - [1729] = {.lex_state = 218, .external_lex_state = 2}, - [1730] = {.lex_state = 71, .external_lex_state = 2}, - [1731] = {.lex_state = 195, .external_lex_state = 20}, - [1732] = {.lex_state = 195, .external_lex_state = 16}, - [1733] = {.lex_state = 195, .external_lex_state = 20}, - [1734] = {.lex_state = 195, .external_lex_state = 16}, - [1735] = {.lex_state = 96, .external_lex_state = 20}, - [1736] = {.lex_state = 96, .external_lex_state = 20}, - [1737] = {.lex_state = 96, .external_lex_state = 20}, - [1738] = {.lex_state = 187}, - [1739] = {.lex_state = 221, .external_lex_state = 16}, - [1740] = {.lex_state = 78}, - [1741] = {.lex_state = 195, .external_lex_state = 16}, - [1742] = {.lex_state = 195, .external_lex_state = 16}, - [1743] = {.lex_state = 96, .external_lex_state = 20}, - [1744] = {.lex_state = 223, .external_lex_state = 21}, - [1745] = {.lex_state = 223, .external_lex_state = 16}, - [1746] = {.lex_state = 96, .external_lex_state = 20}, - [1747] = {.lex_state = 223, .external_lex_state = 21}, - [1748] = {.lex_state = 223, .external_lex_state = 16}, - [1749] = {.lex_state = 218, .external_lex_state = 2}, - [1750] = {.lex_state = 96, .external_lex_state = 20}, - [1751] = {.lex_state = 138, .external_lex_state = 9}, - [1752] = {.lex_state = 171, .external_lex_state = 5}, - [1753] = {.lex_state = 173, .external_lex_state = 4}, - [1754] = {.lex_state = 71, .external_lex_state = 2}, - [1755] = {.lex_state = 138, .external_lex_state = 9}, - [1756] = {.lex_state = 199, .external_lex_state = 5}, - [1757] = {.lex_state = 132, .external_lex_state = 4}, - [1758] = {.lex_state = 218, .external_lex_state = 2}, - [1759] = {.lex_state = 96, .external_lex_state = 20}, - [1760] = {.lex_state = 138, .external_lex_state = 9}, - [1761] = {.lex_state = 171, .external_lex_state = 5}, - [1762] = {.lex_state = 173, .external_lex_state = 4}, - [1763] = {.lex_state = 134, .external_lex_state = 6}, - [1764] = {.lex_state = 134, .external_lex_state = 6}, - [1765] = {.lex_state = 134, .external_lex_state = 6}, - [1766] = {.lex_state = 223, .external_lex_state = 16}, - [1767] = {.lex_state = 223, .external_lex_state = 16}, - [1768] = {.lex_state = 223, .external_lex_state = 20}, - [1769] = {.lex_state = 223, .external_lex_state = 20}, - [1770] = {.lex_state = 96, .external_lex_state = 20}, - [1771] = {.lex_state = 96, .external_lex_state = 20}, - [1772] = {.lex_state = 96, .external_lex_state = 16}, - [1773] = {.lex_state = 221, .external_lex_state = 16}, - [1774] = {.lex_state = 223, .external_lex_state = 20}, - [1775] = {.lex_state = 223, .external_lex_state = 21}, - [1776] = {.lex_state = 223, .external_lex_state = 16}, - [1777] = {.lex_state = 223, .external_lex_state = 21}, - [1778] = {.lex_state = 223, .external_lex_state = 16}, - [1779] = {.lex_state = 223, .external_lex_state = 16}, - [1780] = {.lex_state = 223, .external_lex_state = 20}, - [1781] = {.lex_state = 223, .external_lex_state = 16}, - [1782] = {.lex_state = 223, .external_lex_state = 16}, - [1783] = {.lex_state = 134, .external_lex_state = 6}, - [1784] = {.lex_state = 223, .external_lex_state = 20}, - [1785] = {.lex_state = 218, .external_lex_state = 2}, - [1786] = {.lex_state = 218, .external_lex_state = 2}, - [1787] = {.lex_state = 138, .external_lex_state = 9}, - [1788] = {.lex_state = 71, .external_lex_state = 2}, - [1789] = {.lex_state = 71, .external_lex_state = 2}, - [1790] = {.lex_state = 138, .external_lex_state = 9}, - [1791] = {.lex_state = 223, .external_lex_state = 20}, - [1792] = {.lex_state = 218, .external_lex_state = 2}, - [1793] = {.lex_state = 218, .external_lex_state = 2}, - [1794] = {.lex_state = 138, .external_lex_state = 9}, - [1795] = {.lex_state = 134, .external_lex_state = 6}, - [1796] = {.lex_state = 199, .external_lex_state = 6}, - [1797] = {.lex_state = 134, .external_lex_state = 6}, - [1798] = {.lex_state = 88, .external_lex_state = 17}, - [1799] = {.lex_state = 96, .external_lex_state = 20}, - [1800] = {.lex_state = 96, .external_lex_state = 20}, - [1801] = {.lex_state = 96, .external_lex_state = 16}, - [1802] = {.lex_state = 221, .external_lex_state = 16}, - [1803] = {.lex_state = 88, .external_lex_state = 17}, - [1804] = {.lex_state = 223, .external_lex_state = 21}, - [1805] = {.lex_state = 223, .external_lex_state = 16}, - [1806] = {.lex_state = 223, .external_lex_state = 21}, - [1807] = {.lex_state = 223, .external_lex_state = 16}, - [1808] = {.lex_state = 223, .external_lex_state = 16}, - [1809] = {.lex_state = 88, .external_lex_state = 17}, - [1810] = {.lex_state = 223, .external_lex_state = 16}, - [1811] = {.lex_state = 223, .external_lex_state = 16}, - [1812] = {.lex_state = 88, .external_lex_state = 17}, - [1813] = {.lex_state = 218, .external_lex_state = 2}, - [1814] = {.lex_state = 218, .external_lex_state = 2}, - [1815] = {.lex_state = 138, .external_lex_state = 9}, - [1816] = {.lex_state = 71, .external_lex_state = 2}, - [1817] = {.lex_state = 71, .external_lex_state = 2}, - [1818] = {.lex_state = 138, .external_lex_state = 9}, - [1819] = {.lex_state = 209, .external_lex_state = 10}, - [1820] = {.lex_state = 209, .external_lex_state = 10}, - [1821] = {.lex_state = 96, .external_lex_state = 20}, - [1822] = {.lex_state = 96, .external_lex_state = 20}, - [1823] = {.lex_state = 96, .external_lex_state = 16}, - [1824] = {.lex_state = 221, .external_lex_state = 16}, - [1825] = {.lex_state = 209, .external_lex_state = 10}, - [1826] = {.lex_state = 223, .external_lex_state = 21}, - [1827] = {.lex_state = 223, .external_lex_state = 16}, - [1828] = {.lex_state = 223, .external_lex_state = 21}, - [1829] = {.lex_state = 223, .external_lex_state = 16}, - [1830] = {.lex_state = 223, .external_lex_state = 16}, - [1831] = {.lex_state = 209, .external_lex_state = 10}, - [1832] = {.lex_state = 223, .external_lex_state = 16}, - [1833] = {.lex_state = 223, .external_lex_state = 16}, - [1834] = {.lex_state = 209, .external_lex_state = 10}, - [1835] = {.lex_state = 218, .external_lex_state = 2}, - [1836] = {.lex_state = 218, .external_lex_state = 2}, - [1837] = {.lex_state = 138, .external_lex_state = 9}, - [1838] = {.lex_state = 71, .external_lex_state = 2}, - [1839] = {.lex_state = 71, .external_lex_state = 2}, - [1840] = {.lex_state = 138, .external_lex_state = 9}, - [1841] = {.lex_state = 209, .external_lex_state = 10}, - [1842] = {.lex_state = 218, .external_lex_state = 2}, - [1843] = {.lex_state = 218, .external_lex_state = 2}, - [1844] = {.lex_state = 138, .external_lex_state = 9}, - [1845] = {.lex_state = 173, .external_lex_state = 14}, - [1846] = {.lex_state = 173, .external_lex_state = 14}, - [1847] = {.lex_state = 96, .external_lex_state = 20}, - [1848] = {.lex_state = 96, .external_lex_state = 20}, - [1849] = {.lex_state = 96, .external_lex_state = 16}, - [1850] = {.lex_state = 223, .external_lex_state = 16}, - [1851] = {.lex_state = 173, .external_lex_state = 14}, - [1852] = {.lex_state = 223, .external_lex_state = 16}, - [1853] = {.lex_state = 223, .external_lex_state = 16}, - [1854] = {.lex_state = 223, .external_lex_state = 16}, - [1855] = {.lex_state = 173, .external_lex_state = 14}, - [1856] = {.lex_state = 223, .external_lex_state = 16}, - [1857] = {.lex_state = 173, .external_lex_state = 14}, - [1858] = {.lex_state = 218, .external_lex_state = 2}, - [1859] = {.lex_state = 71, .external_lex_state = 2}, - [1860] = {.lex_state = 173, .external_lex_state = 14}, - [1861] = {.lex_state = 218, .external_lex_state = 2}, - [1862] = {.lex_state = 175, .external_lex_state = 5}, - [1863] = {.lex_state = 164}, - [1864] = {.lex_state = 164}, - [1865] = {.lex_state = 211, .external_lex_state = 11}, - [1866] = {.lex_state = 211, .external_lex_state = 11}, - [1867] = {.lex_state = 96, .external_lex_state = 20}, - [1868] = {.lex_state = 96, .external_lex_state = 20}, - [1869] = {.lex_state = 96, .external_lex_state = 16}, - [1870] = {.lex_state = 223, .external_lex_state = 16}, - [1871] = {.lex_state = 211, .external_lex_state = 11}, - [1872] = {.lex_state = 223, .external_lex_state = 16}, - [1873] = {.lex_state = 223, .external_lex_state = 16}, - [1874] = {.lex_state = 223, .external_lex_state = 16}, - [1875] = {.lex_state = 211, .external_lex_state = 11}, - [1876] = {.lex_state = 223, .external_lex_state = 16}, - [1877] = {.lex_state = 211, .external_lex_state = 11}, - [1878] = {.lex_state = 218, .external_lex_state = 2}, - [1879] = {.lex_state = 71, .external_lex_state = 2}, - [1880] = {.lex_state = 211, .external_lex_state = 11}, - [1881] = {.lex_state = 218, .external_lex_state = 2}, - [1882] = {.lex_state = 145}, - [1883] = {.lex_state = 229, .external_lex_state = 11}, - [1884] = {.lex_state = 229, .external_lex_state = 11}, - [1885] = {.lex_state = 96, .external_lex_state = 20}, - [1886] = {.lex_state = 96, .external_lex_state = 20}, - [1887] = {.lex_state = 96, .external_lex_state = 16}, - [1888] = {.lex_state = 221, .external_lex_state = 16}, - [1889] = {.lex_state = 229, .external_lex_state = 11}, - [1890] = {.lex_state = 223, .external_lex_state = 21}, - [1891] = {.lex_state = 223, .external_lex_state = 16}, - [1892] = {.lex_state = 223, .external_lex_state = 21}, - [1893] = {.lex_state = 223, .external_lex_state = 16}, - [1894] = {.lex_state = 223, .external_lex_state = 16}, - [1895] = {.lex_state = 229, .external_lex_state = 11}, - [1896] = {.lex_state = 223, .external_lex_state = 16}, - [1897] = {.lex_state = 223, .external_lex_state = 16}, - [1898] = {.lex_state = 229, .external_lex_state = 11}, - [1899] = {.lex_state = 218, .external_lex_state = 2}, - [1900] = {.lex_state = 218, .external_lex_state = 2}, - [1901] = {.lex_state = 138, .external_lex_state = 9}, - [1902] = {.lex_state = 71, .external_lex_state = 2}, - [1903] = {.lex_state = 71, .external_lex_state = 2}, - [1904] = {.lex_state = 138, .external_lex_state = 9}, - [1905] = {.lex_state = 229, .external_lex_state = 11}, - [1906] = {.lex_state = 218, .external_lex_state = 2}, - [1907] = {.lex_state = 218, .external_lex_state = 2}, - [1908] = {.lex_state = 138, .external_lex_state = 9}, - [1909] = {.lex_state = 231, .external_lex_state = 10}, - [1910] = {.lex_state = 231, .external_lex_state = 10}, - [1911] = {.lex_state = 96, .external_lex_state = 20}, - [1912] = {.lex_state = 96, .external_lex_state = 20}, - [1913] = {.lex_state = 96, .external_lex_state = 16}, - [1914] = {.lex_state = 223, .external_lex_state = 16}, - [1915] = {.lex_state = 231, .external_lex_state = 10}, - [1916] = {.lex_state = 223, .external_lex_state = 16}, - [1917] = {.lex_state = 223, .external_lex_state = 16}, - [1918] = {.lex_state = 223, .external_lex_state = 16}, - [1919] = {.lex_state = 231, .external_lex_state = 10}, - [1920] = {.lex_state = 223, .external_lex_state = 16}, - [1921] = {.lex_state = 231, .external_lex_state = 10}, - [1922] = {.lex_state = 218, .external_lex_state = 2}, - [1923] = {.lex_state = 71, .external_lex_state = 2}, - [1924] = {.lex_state = 231, .external_lex_state = 10}, - [1925] = {.lex_state = 218, .external_lex_state = 2}, - [1926] = {.lex_state = 216, .external_lex_state = 10}, - [1927] = {.lex_state = 216, .external_lex_state = 10}, - [1928] = {.lex_state = 216, .external_lex_state = 10}, - [1929] = {.lex_state = 223, .external_lex_state = 16}, - [1930] = {.lex_state = 223, .external_lex_state = 16}, - [1931] = {.lex_state = 216, .external_lex_state = 10}, - [1932] = {.lex_state = 216, .external_lex_state = 10}, - [1933] = {.lex_state = 216, .external_lex_state = 10}, - [1934] = {.lex_state = 71, .external_lex_state = 2}, - [1935] = {.lex_state = 175, .external_lex_state = 5}, - [1936] = {.lex_state = 236, .external_lex_state = 10}, - [1937] = {.lex_state = 236, .external_lex_state = 10}, - [1938] = {.lex_state = 236}, - [1939] = {.lex_state = 78}, - [1940] = {.lex_state = 234}, - [1941] = {.lex_state = 98, .external_lex_state = 2}, - [1942] = {.lex_state = 243, .external_lex_state = 4}, - [1943] = {.lex_state = 243, .external_lex_state = 5}, - [1944] = {.lex_state = 249, .external_lex_state = 6}, - [1945] = {.lex_state = 107}, - [1946] = {.lex_state = 114}, - [1947] = {.lex_state = 249, .external_lex_state = 6}, - [1948] = {.lex_state = 114, .external_lex_state = 7}, - [1949] = {.lex_state = 71, .external_lex_state = 2}, - [1950] = {.lex_state = 71, .external_lex_state = 2}, - [1951] = {.lex_state = 71, .external_lex_state = 2}, - [1952] = {.lex_state = 251, .external_lex_state = 6}, - [1953] = {.lex_state = 239, .external_lex_state = 5}, - [1954] = {.lex_state = 249, .external_lex_state = 5}, - [1955] = {.lex_state = 253, .external_lex_state = 4}, - [1956] = {.lex_state = 78}, - [1957] = {.lex_state = 249, .external_lex_state = 5}, - [1958] = {.lex_state = 241, .external_lex_state = 2}, - [1959] = {.lex_state = 94, .external_lex_state = 2}, - [1960] = {.lex_state = 241, .external_lex_state = 2}, - [1961] = {.lex_state = 236}, - [1962] = {.lex_state = 236, .external_lex_state = 10}, - [1963] = {.lex_state = 234}, - [1964] = {.lex_state = 239, .external_lex_state = 5}, - [1965] = {.lex_state = 253, .external_lex_state = 4}, - [1966] = {.lex_state = 241, .external_lex_state = 2}, - [1967] = {.lex_state = 241, .external_lex_state = 2}, - [1968] = {.lex_state = 175, .external_lex_state = 5}, - [1969] = {.lex_state = 236, .external_lex_state = 10}, - [1970] = {.lex_state = 236, .external_lex_state = 10}, - [1971] = {.lex_state = 236}, - [1972] = {.lex_state = 239}, - [1973] = {.lex_state = 175, .external_lex_state = 5}, - [1974] = {.lex_state = 239}, - [1975] = {.lex_state = 141, .external_lex_state = 11}, - [1976] = {.lex_state = 141, .external_lex_state = 11}, - [1977] = {.lex_state = 141, .external_lex_state = 11}, - [1978] = {.lex_state = 223, .external_lex_state = 16}, - [1979] = {.lex_state = 223, .external_lex_state = 16}, - [1980] = {.lex_state = 141, .external_lex_state = 11}, - [1981] = {.lex_state = 141, .external_lex_state = 11}, - [1982] = {.lex_state = 141, .external_lex_state = 11}, - [1983] = {.lex_state = 181, .external_lex_state = 12}, - [1984] = {.lex_state = 181, .external_lex_state = 12}, - [1985] = {.lex_state = 181, .external_lex_state = 12}, - [1986] = {.lex_state = 223, .external_lex_state = 16}, - [1987] = {.lex_state = 223, .external_lex_state = 16}, - [1988] = {.lex_state = 181, .external_lex_state = 12}, - [1989] = {.lex_state = 181, .external_lex_state = 12}, - [1990] = {.lex_state = 181, .external_lex_state = 12}, - [1991] = {.lex_state = 167, .external_lex_state = 14}, - [1992] = {.lex_state = 167, .external_lex_state = 14}, - [1993] = {.lex_state = 167, .external_lex_state = 14}, - [1994] = {.lex_state = 223, .external_lex_state = 16}, - [1995] = {.lex_state = 223, .external_lex_state = 16}, - [1996] = {.lex_state = 167, .external_lex_state = 14}, - [1997] = {.lex_state = 167, .external_lex_state = 14}, - [1998] = {.lex_state = 167, .external_lex_state = 14}, - [1999] = {.lex_state = 167, .external_lex_state = 6}, - [2000] = {.lex_state = 167, .external_lex_state = 6}, - [2001] = {.lex_state = 167, .external_lex_state = 6}, - [2002] = {.lex_state = 223, .external_lex_state = 16}, - [2003] = {.lex_state = 223, .external_lex_state = 16}, - [2004] = {.lex_state = 167, .external_lex_state = 6}, - [2005] = {.lex_state = 167, .external_lex_state = 6}, - [2006] = {.lex_state = 167, .external_lex_state = 6}, - [2007] = {.lex_state = 94, .external_lex_state = 15}, - [2008] = {.lex_state = 94, .external_lex_state = 15}, - [2009] = {.lex_state = 94, .external_lex_state = 15}, - [2010] = {.lex_state = 223, .external_lex_state = 16}, - [2011] = {.lex_state = 223, .external_lex_state = 16}, - [2012] = {.lex_state = 94, .external_lex_state = 15}, - [2013] = {.lex_state = 94, .external_lex_state = 15}, - [2014] = {.lex_state = 94, .external_lex_state = 15}, - [2015] = {.lex_state = 107, .external_lex_state = 10}, - [2016] = {.lex_state = 107, .external_lex_state = 10}, - [2017] = {.lex_state = 107, .external_lex_state = 10}, - [2018] = {.lex_state = 223, .external_lex_state = 16}, - [2019] = {.lex_state = 223, .external_lex_state = 16}, - [2020] = {.lex_state = 107, .external_lex_state = 10}, - [2021] = {.lex_state = 107, .external_lex_state = 10}, - [2022] = {.lex_state = 195, .external_lex_state = 16}, - [2023] = {.lex_state = 195, .external_lex_state = 16}, - [2024] = {.lex_state = 96, .external_lex_state = 20}, - [2025] = {.lex_state = 96, .external_lex_state = 20}, - [2026] = {.lex_state = 96, .external_lex_state = 20}, - [2027] = {.lex_state = 96, .external_lex_state = 20}, - [2028] = {.lex_state = 96, .external_lex_state = 16}, - [2029] = {.lex_state = 221, .external_lex_state = 16}, - [2030] = {.lex_state = 96, .external_lex_state = 20}, - [2031] = {.lex_state = 223, .external_lex_state = 21}, - [2032] = {.lex_state = 223, .external_lex_state = 16}, - [2033] = {.lex_state = 223, .external_lex_state = 21}, - [2034] = {.lex_state = 223, .external_lex_state = 16}, - [2035] = {.lex_state = 223, .external_lex_state = 16}, - [2036] = {.lex_state = 96, .external_lex_state = 20}, - [2037] = {.lex_state = 223, .external_lex_state = 16}, - [2038] = {.lex_state = 223, .external_lex_state = 16}, - [2039] = {.lex_state = 96, .external_lex_state = 20}, - [2040] = {.lex_state = 218, .external_lex_state = 2}, - [2041] = {.lex_state = 218, .external_lex_state = 2}, - [2042] = {.lex_state = 138, .external_lex_state = 9}, - [2043] = {.lex_state = 71, .external_lex_state = 2}, - [2044] = {.lex_state = 71, .external_lex_state = 2}, - [2045] = {.lex_state = 138, .external_lex_state = 9}, - [2046] = {.lex_state = 96, .external_lex_state = 20}, - [2047] = {.lex_state = 218, .external_lex_state = 2}, - [2048] = {.lex_state = 218, .external_lex_state = 2}, - [2049] = {.lex_state = 138, .external_lex_state = 9}, - [2050] = {.lex_state = 134, .external_lex_state = 6}, - [2051] = {.lex_state = 134, .external_lex_state = 6}, - [2052] = {.lex_state = 223, .external_lex_state = 20}, - [2053] = {.lex_state = 223, .external_lex_state = 20}, - [2054] = {.lex_state = 96, .external_lex_state = 20}, - [2055] = {.lex_state = 96, .external_lex_state = 20}, - [2056] = {.lex_state = 96, .external_lex_state = 16}, - [2057] = {.lex_state = 223, .external_lex_state = 16}, - [2058] = {.lex_state = 223, .external_lex_state = 20}, - [2059] = {.lex_state = 223, .external_lex_state = 16}, - [2060] = {.lex_state = 223, .external_lex_state = 16}, - [2061] = {.lex_state = 223, .external_lex_state = 16}, - [2062] = {.lex_state = 223, .external_lex_state = 20}, - [2063] = {.lex_state = 223, .external_lex_state = 16}, - [2064] = {.lex_state = 223, .external_lex_state = 20}, - [2065] = {.lex_state = 218, .external_lex_state = 2}, - [2066] = {.lex_state = 71, .external_lex_state = 2}, - [2067] = {.lex_state = 223, .external_lex_state = 20}, - [2068] = {.lex_state = 218, .external_lex_state = 2}, - [2069] = {.lex_state = 88, .external_lex_state = 17}, - [2070] = {.lex_state = 88, .external_lex_state = 17}, - [2071] = {.lex_state = 96, .external_lex_state = 20}, - [2072] = {.lex_state = 96, .external_lex_state = 20}, - [2073] = {.lex_state = 96, .external_lex_state = 16}, - [2074] = {.lex_state = 223, .external_lex_state = 16}, - [2075] = {.lex_state = 88, .external_lex_state = 17}, - [2076] = {.lex_state = 223, .external_lex_state = 16}, - [2077] = {.lex_state = 223, .external_lex_state = 16}, - [2078] = {.lex_state = 223, .external_lex_state = 16}, - [2079] = {.lex_state = 88, .external_lex_state = 17}, - [2080] = {.lex_state = 223, .external_lex_state = 16}, - [2081] = {.lex_state = 88, .external_lex_state = 17}, - [2082] = {.lex_state = 218, .external_lex_state = 2}, - [2083] = {.lex_state = 71, .external_lex_state = 2}, - [2084] = {.lex_state = 209, .external_lex_state = 10}, - [2085] = {.lex_state = 209, .external_lex_state = 10}, - [2086] = {.lex_state = 96, .external_lex_state = 20}, - [2087] = {.lex_state = 96, .external_lex_state = 20}, - [2088] = {.lex_state = 96, .external_lex_state = 16}, - [2089] = {.lex_state = 223, .external_lex_state = 16}, - [2090] = {.lex_state = 209, .external_lex_state = 10}, - [2091] = {.lex_state = 223, .external_lex_state = 16}, - [2092] = {.lex_state = 223, .external_lex_state = 16}, - [2093] = {.lex_state = 223, .external_lex_state = 16}, - [2094] = {.lex_state = 209, .external_lex_state = 10}, - [2095] = {.lex_state = 223, .external_lex_state = 16}, - [2096] = {.lex_state = 209, .external_lex_state = 10}, - [2097] = {.lex_state = 218, .external_lex_state = 2}, - [2098] = {.lex_state = 71, .external_lex_state = 2}, - [2099] = {.lex_state = 209, .external_lex_state = 10}, - [2100] = {.lex_state = 218, .external_lex_state = 2}, - [2101] = {.lex_state = 173, .external_lex_state = 14}, - [2102] = {.lex_state = 173, .external_lex_state = 14}, - [2103] = {.lex_state = 173, .external_lex_state = 14}, - [2104] = {.lex_state = 223, .external_lex_state = 16}, - [2105] = {.lex_state = 223, .external_lex_state = 16}, - [2106] = {.lex_state = 173, .external_lex_state = 14}, - [2107] = {.lex_state = 173, .external_lex_state = 14}, - [2108] = {.lex_state = 173, .external_lex_state = 14}, - [2109] = {.lex_state = 175, .external_lex_state = 5}, - [2110] = {.lex_state = 164}, - [2111] = {.lex_state = 211, .external_lex_state = 11}, - [2112] = {.lex_state = 211, .external_lex_state = 11}, - [2113] = {.lex_state = 211, .external_lex_state = 11}, - [2114] = {.lex_state = 223, .external_lex_state = 16}, - [2115] = {.lex_state = 223, .external_lex_state = 16}, - [2116] = {.lex_state = 211, .external_lex_state = 11}, - [2117] = {.lex_state = 211, .external_lex_state = 11}, - [2118] = {.lex_state = 211, .external_lex_state = 11}, - [2119] = {.lex_state = 164}, - [2120] = {.lex_state = 229, .external_lex_state = 11}, - [2121] = {.lex_state = 229, .external_lex_state = 11}, - [2122] = {.lex_state = 96, .external_lex_state = 20}, - [2123] = {.lex_state = 96, .external_lex_state = 20}, - [2124] = {.lex_state = 96, .external_lex_state = 16}, - [2125] = {.lex_state = 223, .external_lex_state = 16}, - [2126] = {.lex_state = 229, .external_lex_state = 11}, - [2127] = {.lex_state = 223, .external_lex_state = 16}, - [2128] = {.lex_state = 223, .external_lex_state = 16}, - [2129] = {.lex_state = 223, .external_lex_state = 16}, - [2130] = {.lex_state = 229, .external_lex_state = 11}, - [2131] = {.lex_state = 223, .external_lex_state = 16}, - [2132] = {.lex_state = 229, .external_lex_state = 11}, - [2133] = {.lex_state = 218, .external_lex_state = 2}, - [2134] = {.lex_state = 71, .external_lex_state = 2}, - [2135] = {.lex_state = 229, .external_lex_state = 11}, - [2136] = {.lex_state = 218, .external_lex_state = 2}, - [2137] = {.lex_state = 231, .external_lex_state = 10}, - [2138] = {.lex_state = 231, .external_lex_state = 10}, - [2139] = {.lex_state = 231, .external_lex_state = 10}, - [2140] = {.lex_state = 223, .external_lex_state = 16}, - [2141] = {.lex_state = 223, .external_lex_state = 16}, - [2142] = {.lex_state = 231, .external_lex_state = 10}, - [2143] = {.lex_state = 231, .external_lex_state = 10}, - [2144] = {.lex_state = 231, .external_lex_state = 10}, - [2145] = {.lex_state = 216, .external_lex_state = 10}, - [2146] = {.lex_state = 216, .external_lex_state = 10}, - [2147] = {.lex_state = 136, .external_lex_state = 8}, - [2148] = {.lex_state = 78}, - [2149] = {.lex_state = 243, .external_lex_state = 14}, - [2150] = {.lex_state = 107}, - [2151] = {.lex_state = 114}, - [2152] = {.lex_state = 243, .external_lex_state = 14}, - [2153] = {.lex_state = 114, .external_lex_state = 7}, - [2154] = {.lex_state = 71, .external_lex_state = 2}, - [2155] = {.lex_state = 71, .external_lex_state = 2}, - [2156] = {.lex_state = 71, .external_lex_state = 2}, - [2157] = {.lex_state = 78}, - [2158] = {.lex_state = 243, .external_lex_state = 4}, - [2159] = {.lex_state = 243, .external_lex_state = 6}, - [2160] = {.lex_state = 107}, - [2161] = {.lex_state = 114}, - [2162] = {.lex_state = 243, .external_lex_state = 6}, - [2163] = {.lex_state = 114, .external_lex_state = 7}, - [2164] = {.lex_state = 71, .external_lex_state = 2}, - [2165] = {.lex_state = 71, .external_lex_state = 2}, - [2166] = {.lex_state = 71, .external_lex_state = 2}, - [2167] = {.lex_state = 243, .external_lex_state = 5}, - [2168] = {.lex_state = 94}, - [2169] = {.lex_state = 249, .external_lex_state = 6}, - [2170] = {.lex_state = 249, .external_lex_state = 6}, - [2171] = {.lex_state = 187}, - [2172] = {.lex_state = 107}, - [2173] = {.lex_state = 249, .external_lex_state = 6}, - [2174] = {.lex_state = 249, .external_lex_state = 6}, - [2175] = {.lex_state = 249, .external_lex_state = 6}, - [2176] = {.lex_state = 78}, - [2177] = {.lex_state = 193, .external_lex_state = 7}, - [2178] = {.lex_state = 195, .external_lex_state = 16}, - [2179] = {.lex_state = 195, .external_lex_state = 16}, - [2180] = {.lex_state = 171, .external_lex_state = 5}, - [2181] = {.lex_state = 173, .external_lex_state = 4}, - [2182] = {.lex_state = 71, .external_lex_state = 2}, - [2183] = {.lex_state = 199, .external_lex_state = 5}, - [2184] = {.lex_state = 132, .external_lex_state = 4}, - [2185] = {.lex_state = 71, .external_lex_state = 2}, - [2186] = {.lex_state = 171, .external_lex_state = 5}, - [2187] = {.lex_state = 173, .external_lex_state = 4}, - [2188] = {.lex_state = 71, .external_lex_state = 2}, - [2189] = {.lex_state = 71}, - [2190] = {.lex_state = 241, .external_lex_state = 2}, - [2191] = {.lex_state = 71, .external_lex_state = 2}, - [2192] = {.lex_state = 241, .external_lex_state = 2}, - [2193] = {.lex_state = 71, .external_lex_state = 2}, - [2194] = {.lex_state = 94}, - [2195] = {.lex_state = 94}, - [2196] = {.lex_state = 138, .external_lex_state = 9}, - [2197] = {.lex_state = 239, .external_lex_state = 5}, - [2198] = {.lex_state = 205, .external_lex_state = 19}, - [2199] = {.lex_state = 249, .external_lex_state = 6}, - [2200] = {.lex_state = 249, .external_lex_state = 6}, - [2201] = {.lex_state = 249, .external_lex_state = 5}, - [2202] = {.lex_state = 234}, - [2203] = {.lex_state = 239, .external_lex_state = 5}, - [2204] = {.lex_state = 253, .external_lex_state = 4}, - [2205] = {.lex_state = 241, .external_lex_state = 2}, - [2206] = {.lex_state = 249, .external_lex_state = 5}, - [2207] = {.lex_state = 241, .external_lex_state = 2}, - [2208] = {.lex_state = 241, .external_lex_state = 2}, - [2209] = {.lex_state = 234}, - [2210] = {.lex_state = 239, .external_lex_state = 5}, - [2211] = {.lex_state = 253, .external_lex_state = 4}, - [2212] = {.lex_state = 241, .external_lex_state = 2}, - [2213] = {.lex_state = 218, .external_lex_state = 2}, - [2214] = {.lex_state = 236}, - [2215] = {.lex_state = 218, .external_lex_state = 2}, - [2216] = {.lex_state = 236}, - [2217] = {.lex_state = 175, .external_lex_state = 5}, - [2218] = {.lex_state = 175, .external_lex_state = 5}, - [2219] = {.lex_state = 141, .external_lex_state = 11}, - [2220] = {.lex_state = 141, .external_lex_state = 11}, - [2221] = {.lex_state = 181, .external_lex_state = 12}, - [2222] = {.lex_state = 181, .external_lex_state = 12}, - [2223] = {.lex_state = 167, .external_lex_state = 14}, - [2224] = {.lex_state = 167, .external_lex_state = 14}, - [2225] = {.lex_state = 167, .external_lex_state = 6}, - [2226] = {.lex_state = 167, .external_lex_state = 6}, - [2227] = {.lex_state = 94, .external_lex_state = 15}, - [2228] = {.lex_state = 94, .external_lex_state = 15}, - [2229] = {.lex_state = 107, .external_lex_state = 10}, - [2230] = {.lex_state = 107, .external_lex_state = 10}, - [2231] = {.lex_state = 96, .external_lex_state = 20}, - [2232] = {.lex_state = 96, .external_lex_state = 20}, - [2233] = {.lex_state = 96, .external_lex_state = 20}, - [2234] = {.lex_state = 96, .external_lex_state = 20}, - [2235] = {.lex_state = 96, .external_lex_state = 16}, - [2236] = {.lex_state = 223, .external_lex_state = 16}, - [2237] = {.lex_state = 96, .external_lex_state = 20}, - [2238] = {.lex_state = 223, .external_lex_state = 16}, - [2239] = {.lex_state = 223, .external_lex_state = 16}, - [2240] = {.lex_state = 223, .external_lex_state = 16}, - [2241] = {.lex_state = 96, .external_lex_state = 20}, - [2242] = {.lex_state = 223, .external_lex_state = 16}, - [2243] = {.lex_state = 96, .external_lex_state = 20}, - [2244] = {.lex_state = 218, .external_lex_state = 2}, - [2245] = {.lex_state = 71, .external_lex_state = 2}, - [2246] = {.lex_state = 96, .external_lex_state = 20}, - [2247] = {.lex_state = 218, .external_lex_state = 2}, - [2248] = {.lex_state = 223, .external_lex_state = 20}, - [2249] = {.lex_state = 223, .external_lex_state = 20}, - [2250] = {.lex_state = 223, .external_lex_state = 20}, - [2251] = {.lex_state = 223, .external_lex_state = 16}, - [2252] = {.lex_state = 223, .external_lex_state = 16}, - [2253] = {.lex_state = 223, .external_lex_state = 20}, - [2254] = {.lex_state = 223, .external_lex_state = 20}, - [2255] = {.lex_state = 223, .external_lex_state = 20}, - [2256] = {.lex_state = 88, .external_lex_state = 17}, - [2257] = {.lex_state = 88, .external_lex_state = 17}, - [2258] = {.lex_state = 88, .external_lex_state = 17}, - [2259] = {.lex_state = 223, .external_lex_state = 16}, - [2260] = {.lex_state = 223, .external_lex_state = 16}, - [2261] = {.lex_state = 88, .external_lex_state = 17}, - [2262] = {.lex_state = 88, .external_lex_state = 17}, - [2263] = {.lex_state = 209, .external_lex_state = 10}, - [2264] = {.lex_state = 209, .external_lex_state = 10}, - [2265] = {.lex_state = 209, .external_lex_state = 10}, - [2266] = {.lex_state = 223, .external_lex_state = 16}, - [2267] = {.lex_state = 223, .external_lex_state = 16}, - [2268] = {.lex_state = 209, .external_lex_state = 10}, - [2269] = {.lex_state = 209, .external_lex_state = 10}, - [2270] = {.lex_state = 209, .external_lex_state = 10}, - [2271] = {.lex_state = 173, .external_lex_state = 14}, - [2272] = {.lex_state = 173, .external_lex_state = 14}, - [2273] = {.lex_state = 175, .external_lex_state = 5}, - [2274] = {.lex_state = 211, .external_lex_state = 11}, - [2275] = {.lex_state = 211, .external_lex_state = 11}, - [2276] = {.lex_state = 164}, - [2277] = {.lex_state = 229, .external_lex_state = 11}, - [2278] = {.lex_state = 229, .external_lex_state = 11}, - [2279] = {.lex_state = 229, .external_lex_state = 11}, - [2280] = {.lex_state = 223, .external_lex_state = 16}, - [2281] = {.lex_state = 223, .external_lex_state = 16}, - [2282] = {.lex_state = 229, .external_lex_state = 11}, - [2283] = {.lex_state = 229, .external_lex_state = 11}, - [2284] = {.lex_state = 229, .external_lex_state = 11}, - [2285] = {.lex_state = 231, .external_lex_state = 10}, - [2286] = {.lex_state = 231, .external_lex_state = 10}, - [2287] = {.lex_state = 253, .external_lex_state = 4}, - [2288] = {.lex_state = 209}, - [2289] = {.lex_state = 253, .external_lex_state = 14}, - [2290] = {.lex_state = 107}, - [2291] = {.lex_state = 114}, - [2292] = {.lex_state = 253, .external_lex_state = 14}, - [2293] = {.lex_state = 114, .external_lex_state = 7}, - [2294] = {.lex_state = 71, .external_lex_state = 2}, - [2295] = {.lex_state = 71, .external_lex_state = 2}, - [2296] = {.lex_state = 71, .external_lex_state = 2}, - [2297] = {.lex_state = 136, .external_lex_state = 8}, - [2298] = {.lex_state = 94}, - [2299] = {.lex_state = 243, .external_lex_state = 14}, - [2300] = {.lex_state = 243, .external_lex_state = 14}, - [2301] = {.lex_state = 187}, - [2302] = {.lex_state = 107}, - [2303] = {.lex_state = 243, .external_lex_state = 14}, - [2304] = {.lex_state = 243, .external_lex_state = 14}, - [2305] = {.lex_state = 243, .external_lex_state = 14}, - [2306] = {.lex_state = 78}, - [2307] = {.lex_state = 193, .external_lex_state = 7}, - [2308] = {.lex_state = 195, .external_lex_state = 16}, - [2309] = {.lex_state = 195, .external_lex_state = 16}, - [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 = 199, .external_lex_state = 5}, - [2314] = {.lex_state = 132, .external_lex_state = 4}, - [2315] = {.lex_state = 71, .external_lex_state = 2}, - [2316] = {.lex_state = 171, .external_lex_state = 5}, - [2317] = {.lex_state = 173, .external_lex_state = 4}, - [2318] = {.lex_state = 71, .external_lex_state = 2}, - [2319] = {.lex_state = 243, .external_lex_state = 4}, - [2320] = {.lex_state = 94}, - [2321] = {.lex_state = 243, .external_lex_state = 6}, - [2322] = {.lex_state = 243, .external_lex_state = 6}, - [2323] = {.lex_state = 187}, - [2324] = {.lex_state = 107}, - [2325] = {.lex_state = 243, .external_lex_state = 6}, - [2326] = {.lex_state = 243, .external_lex_state = 6}, - [2327] = {.lex_state = 243, .external_lex_state = 6}, - [2328] = {.lex_state = 78}, - [2329] = {.lex_state = 193, .external_lex_state = 7}, - [2330] = {.lex_state = 195, .external_lex_state = 16}, - [2331] = {.lex_state = 195, .external_lex_state = 16}, - [2332] = {.lex_state = 171, .external_lex_state = 5}, - [2333] = {.lex_state = 173, .external_lex_state = 4}, - [2334] = {.lex_state = 71, .external_lex_state = 2}, - [2335] = {.lex_state = 199, .external_lex_state = 5}, - [2336] = {.lex_state = 132, .external_lex_state = 4}, - [2337] = {.lex_state = 71, .external_lex_state = 2}, - [2338] = {.lex_state = 171, .external_lex_state = 5}, - [2339] = {.lex_state = 173, .external_lex_state = 4}, - [2340] = {.lex_state = 71, .external_lex_state = 2}, - [2341] = {.lex_state = 243, .external_lex_state = 5}, - [2342] = {.lex_state = 249, .external_lex_state = 6}, - [2343] = {.lex_state = 249, .external_lex_state = 6}, - [2344] = {.lex_state = 249, .external_lex_state = 6}, - [2345] = {.lex_state = 187}, - [2346] = {.lex_state = 221, .external_lex_state = 16}, - [2347] = {.lex_state = 78}, - [2348] = {.lex_state = 195, .external_lex_state = 16}, - [2349] = {.lex_state = 195, .external_lex_state = 16}, - [2350] = {.lex_state = 249, .external_lex_state = 6}, - [2351] = {.lex_state = 223, .external_lex_state = 21}, - [2352] = {.lex_state = 223, .external_lex_state = 16}, - [2353] = {.lex_state = 249, .external_lex_state = 6}, - [2354] = {.lex_state = 223, .external_lex_state = 21}, - [2355] = {.lex_state = 223, .external_lex_state = 16}, - [2356] = {.lex_state = 218, .external_lex_state = 2}, - [2357] = {.lex_state = 249, .external_lex_state = 6}, - [2358] = {.lex_state = 138, .external_lex_state = 9}, - [2359] = {.lex_state = 171, .external_lex_state = 5}, - [2360] = {.lex_state = 173, .external_lex_state = 4}, - [2361] = {.lex_state = 71, .external_lex_state = 2}, - [2362] = {.lex_state = 138, .external_lex_state = 9}, - [2363] = {.lex_state = 199, .external_lex_state = 5}, - [2364] = {.lex_state = 132, .external_lex_state = 4}, - [2365] = {.lex_state = 218, .external_lex_state = 2}, - [2366] = {.lex_state = 249, .external_lex_state = 6}, - [2367] = {.lex_state = 138, .external_lex_state = 9}, - [2368] = {.lex_state = 171, .external_lex_state = 5}, - [2369] = {.lex_state = 173, .external_lex_state = 4}, - [2370] = {.lex_state = 94}, - [2371] = {.lex_state = 239, .external_lex_state = 5}, - [2372] = {.lex_state = 253, .external_lex_state = 4}, - [2373] = {.lex_state = 239, .external_lex_state = 5}, - [2374] = {.lex_state = 253, .external_lex_state = 4}, - [2375] = {.lex_state = 239, .external_lex_state = 6}, - [2376] = {.lex_state = 107}, - [2377] = {.lex_state = 114}, - [2378] = {.lex_state = 239, .external_lex_state = 6}, - [2379] = {.lex_state = 114, .external_lex_state = 7}, - [2380] = {.lex_state = 71, .external_lex_state = 2}, - [2381] = {.lex_state = 71, .external_lex_state = 2}, - [2382] = {.lex_state = 71, .external_lex_state = 2}, - [2383] = {.lex_state = 239, .external_lex_state = 6}, - [2384] = {.lex_state = 239, .external_lex_state = 6}, - [2385] = {.lex_state = 241, .external_lex_state = 2}, - [2386] = {.lex_state = 239, .external_lex_state = 5}, - [2387] = {.lex_state = 249, .external_lex_state = 5}, - [2388] = {.lex_state = 249, .external_lex_state = 6}, - [2389] = {.lex_state = 249, .external_lex_state = 6}, - [2390] = {.lex_state = 249, .external_lex_state = 5}, - [2391] = {.lex_state = 241, .external_lex_state = 2}, - [2392] = {.lex_state = 128, .external_lex_state = 5}, - [2393] = {.lex_state = 132, .external_lex_state = 4}, - [2394] = {.lex_state = 249, .external_lex_state = 5}, - [2395] = {.lex_state = 234}, - [2396] = {.lex_state = 239, .external_lex_state = 5}, - [2397] = {.lex_state = 253, .external_lex_state = 4}, - [2398] = {.lex_state = 241, .external_lex_state = 2}, - [2399] = {.lex_state = 234}, - [2400] = {.lex_state = 239, .external_lex_state = 5}, - [2401] = {.lex_state = 253, .external_lex_state = 4}, - [2402] = {.lex_state = 94}, - [2403] = {.lex_state = 128, .external_lex_state = 5}, - [2404] = {.lex_state = 132, .external_lex_state = 4}, - [2405] = {.lex_state = 218, .external_lex_state = 2}, - [2406] = {.lex_state = 218, .external_lex_state = 2}, - [2407] = {.lex_state = 94}, - [2408] = {.lex_state = 128, .external_lex_state = 5}, - [2409] = {.lex_state = 132, .external_lex_state = 4}, - [2410] = {.lex_state = 218, .external_lex_state = 2}, - [2411] = {.lex_state = 218, .external_lex_state = 2}, - [2412] = {.lex_state = 96, .external_lex_state = 20}, - [2413] = {.lex_state = 96, .external_lex_state = 20}, - [2414] = {.lex_state = 96, .external_lex_state = 20}, - [2415] = {.lex_state = 223, .external_lex_state = 16}, - [2416] = {.lex_state = 223, .external_lex_state = 16}, - [2417] = {.lex_state = 96, .external_lex_state = 20}, - [2418] = {.lex_state = 96, .external_lex_state = 20}, - [2419] = {.lex_state = 96, .external_lex_state = 20}, - [2420] = {.lex_state = 223, .external_lex_state = 20}, - [2421] = {.lex_state = 223, .external_lex_state = 20}, - [2422] = {.lex_state = 88, .external_lex_state = 17}, - [2423] = {.lex_state = 88, .external_lex_state = 17}, - [2424] = {.lex_state = 209, .external_lex_state = 10}, - [2425] = {.lex_state = 209, .external_lex_state = 10}, - [2426] = {.lex_state = 175, .external_lex_state = 5}, - [2427] = {.lex_state = 229, .external_lex_state = 11}, - [2428] = {.lex_state = 229, .external_lex_state = 11}, - [2429] = {.lex_state = 253, .external_lex_state = 4}, - [2430] = {.lex_state = 209}, - [2431] = {.lex_state = 94}, - [2432] = {.lex_state = 253, .external_lex_state = 14}, - [2433] = {.lex_state = 253, .external_lex_state = 14}, - [2434] = {.lex_state = 187}, - [2435] = {.lex_state = 107}, - [2436] = {.lex_state = 253, .external_lex_state = 14}, - [2437] = {.lex_state = 253, .external_lex_state = 14}, - [2438] = {.lex_state = 253, .external_lex_state = 14}, - [2439] = {.lex_state = 78}, - [2440] = {.lex_state = 193, .external_lex_state = 7}, - [2441] = {.lex_state = 195, .external_lex_state = 16}, - [2442] = {.lex_state = 195, .external_lex_state = 16}, - [2443] = {.lex_state = 171, .external_lex_state = 5}, - [2444] = {.lex_state = 173, .external_lex_state = 4}, - [2445] = {.lex_state = 71, .external_lex_state = 2}, - [2446] = {.lex_state = 199, .external_lex_state = 5}, - [2447] = {.lex_state = 132, .external_lex_state = 4}, - [2448] = {.lex_state = 71, .external_lex_state = 2}, - [2449] = {.lex_state = 171, .external_lex_state = 5}, - [2450] = {.lex_state = 173, .external_lex_state = 4}, - [2451] = {.lex_state = 71, .external_lex_state = 2}, - [2452] = {.lex_state = 243, .external_lex_state = 4}, - [2453] = {.lex_state = 209}, - [2454] = {.lex_state = 243, .external_lex_state = 14}, - [2455] = {.lex_state = 243, .external_lex_state = 14}, - [2456] = {.lex_state = 243, .external_lex_state = 14}, - [2457] = {.lex_state = 243, .external_lex_state = 14}, - [2458] = {.lex_state = 243, .external_lex_state = 14}, - [2459] = {.lex_state = 187}, - [2460] = {.lex_state = 221, .external_lex_state = 16}, - [2461] = {.lex_state = 78}, - [2462] = {.lex_state = 195, .external_lex_state = 16}, - [2463] = {.lex_state = 195, .external_lex_state = 16}, - [2464] = {.lex_state = 243, .external_lex_state = 14}, - [2465] = {.lex_state = 223, .external_lex_state = 21}, - [2466] = {.lex_state = 223, .external_lex_state = 16}, - [2467] = {.lex_state = 243, .external_lex_state = 14}, - [2468] = {.lex_state = 223, .external_lex_state = 21}, - [2469] = {.lex_state = 223, .external_lex_state = 16}, - [2470] = {.lex_state = 218, .external_lex_state = 2}, - [2471] = {.lex_state = 243, .external_lex_state = 14}, - [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 = 218, .external_lex_state = 2}, - [2480] = {.lex_state = 243, .external_lex_state = 14}, - [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 = 243, .external_lex_state = 6}, - [2485] = {.lex_state = 243, .external_lex_state = 6}, - [2486] = {.lex_state = 243, .external_lex_state = 6}, - [2487] = {.lex_state = 187}, - [2488] = {.lex_state = 221, .external_lex_state = 16}, - [2489] = {.lex_state = 78}, - [2490] = {.lex_state = 195, .external_lex_state = 16}, - [2491] = {.lex_state = 195, .external_lex_state = 16}, - [2492] = {.lex_state = 243, .external_lex_state = 6}, - [2493] = {.lex_state = 223, .external_lex_state = 21}, - [2494] = {.lex_state = 223, .external_lex_state = 16}, - [2495] = {.lex_state = 243, .external_lex_state = 6}, - [2496] = {.lex_state = 223, .external_lex_state = 21}, - [2497] = {.lex_state = 223, .external_lex_state = 16}, - [2498] = {.lex_state = 218, .external_lex_state = 2}, - [2499] = {.lex_state = 243, .external_lex_state = 6}, - [2500] = {.lex_state = 138, .external_lex_state = 9}, - [2501] = {.lex_state = 171, .external_lex_state = 5}, - [2502] = {.lex_state = 173, .external_lex_state = 4}, - [2503] = {.lex_state = 71, .external_lex_state = 2}, - [2504] = {.lex_state = 138, .external_lex_state = 9}, - [2505] = {.lex_state = 199, .external_lex_state = 5}, - [2506] = {.lex_state = 132, .external_lex_state = 4}, - [2507] = {.lex_state = 218, .external_lex_state = 2}, - [2508] = {.lex_state = 243, .external_lex_state = 6}, - [2509] = {.lex_state = 138, .external_lex_state = 9}, - [2510] = {.lex_state = 171, .external_lex_state = 5}, - [2511] = {.lex_state = 173, .external_lex_state = 4}, - [2512] = {.lex_state = 249, .external_lex_state = 6}, - [2513] = {.lex_state = 249, .external_lex_state = 6}, - [2514] = {.lex_state = 96, .external_lex_state = 20}, - [2515] = {.lex_state = 96, .external_lex_state = 20}, - [2516] = {.lex_state = 96, .external_lex_state = 16}, - [2517] = {.lex_state = 221, .external_lex_state = 16}, - [2518] = {.lex_state = 249, .external_lex_state = 6}, - [2519] = {.lex_state = 223, .external_lex_state = 21}, - [2520] = {.lex_state = 223, .external_lex_state = 16}, - [2521] = {.lex_state = 223, .external_lex_state = 21}, - [2522] = {.lex_state = 223, .external_lex_state = 16}, - [2523] = {.lex_state = 223, .external_lex_state = 16}, - [2524] = {.lex_state = 249, .external_lex_state = 6}, - [2525] = {.lex_state = 223, .external_lex_state = 16}, - [2526] = {.lex_state = 223, .external_lex_state = 16}, - [2527] = {.lex_state = 249, .external_lex_state = 6}, - [2528] = {.lex_state = 218, .external_lex_state = 2}, - [2529] = {.lex_state = 218, .external_lex_state = 2}, - [2530] = {.lex_state = 138, .external_lex_state = 9}, - [2531] = {.lex_state = 71, .external_lex_state = 2}, - [2532] = {.lex_state = 71, .external_lex_state = 2}, - [2533] = {.lex_state = 138, .external_lex_state = 9}, - [2534] = {.lex_state = 249, .external_lex_state = 6}, - [2535] = {.lex_state = 218, .external_lex_state = 2}, - [2536] = {.lex_state = 218, .external_lex_state = 2}, - [2537] = {.lex_state = 138, .external_lex_state = 9}, - [2538] = {.lex_state = 239, .external_lex_state = 6}, - [2539] = {.lex_state = 239, .external_lex_state = 6}, - [2540] = {.lex_state = 94}, - [2541] = {.lex_state = 239, .external_lex_state = 6}, - [2542] = {.lex_state = 239, .external_lex_state = 6}, - [2543] = {.lex_state = 187}, - [2544] = {.lex_state = 107}, - [2545] = {.lex_state = 239, .external_lex_state = 6}, - [2546] = {.lex_state = 239, .external_lex_state = 6}, - [2547] = {.lex_state = 239, .external_lex_state = 6}, - [2548] = {.lex_state = 78}, - [2549] = {.lex_state = 193, .external_lex_state = 7}, - [2550] = {.lex_state = 195, .external_lex_state = 16}, - [2551] = {.lex_state = 195, .external_lex_state = 16}, - [2552] = {.lex_state = 171, .external_lex_state = 5}, - [2553] = {.lex_state = 173, .external_lex_state = 4}, - [2554] = {.lex_state = 71, .external_lex_state = 2}, - [2555] = {.lex_state = 199, .external_lex_state = 5}, - [2556] = {.lex_state = 132, .external_lex_state = 4}, - [2557] = {.lex_state = 71, .external_lex_state = 2}, - [2558] = {.lex_state = 171, .external_lex_state = 5}, - [2559] = {.lex_state = 173, .external_lex_state = 4}, - [2560] = {.lex_state = 71, .external_lex_state = 2}, - [2561] = {.lex_state = 241, .external_lex_state = 2}, - [2562] = {.lex_state = 241, .external_lex_state = 2}, - [2563] = {.lex_state = 218, .external_lex_state = 2}, - [2564] = {.lex_state = 94}, - [2565] = {.lex_state = 128, .external_lex_state = 5}, - [2566] = {.lex_state = 132, .external_lex_state = 4}, - [2567] = {.lex_state = 218, .external_lex_state = 2}, - [2568] = {.lex_state = 218, .external_lex_state = 2}, - [2569] = {.lex_state = 218, .external_lex_state = 2}, - [2570] = {.lex_state = 94}, - [2571] = {.lex_state = 128, .external_lex_state = 5}, - [2572] = {.lex_state = 132, .external_lex_state = 4}, - [2573] = {.lex_state = 218, .external_lex_state = 2}, - [2574] = {.lex_state = 96, .external_lex_state = 20}, - [2575] = {.lex_state = 96, .external_lex_state = 20}, - [2576] = {.lex_state = 253, .external_lex_state = 4}, - [2577] = {.lex_state = 253, .external_lex_state = 14}, - [2578] = {.lex_state = 253, .external_lex_state = 14}, - [2579] = {.lex_state = 253, .external_lex_state = 14}, - [2580] = {.lex_state = 187}, - [2581] = {.lex_state = 221, .external_lex_state = 16}, - [2582] = {.lex_state = 78}, - [2583] = {.lex_state = 195, .external_lex_state = 16}, - [2584] = {.lex_state = 195, .external_lex_state = 16}, - [2585] = {.lex_state = 253, .external_lex_state = 14}, - [2586] = {.lex_state = 223, .external_lex_state = 21}, - [2587] = {.lex_state = 223, .external_lex_state = 16}, - [2588] = {.lex_state = 253, .external_lex_state = 14}, - [2589] = {.lex_state = 223, .external_lex_state = 21}, - [2590] = {.lex_state = 223, .external_lex_state = 16}, - [2591] = {.lex_state = 218, .external_lex_state = 2}, - [2592] = {.lex_state = 253, .external_lex_state = 14}, - [2593] = {.lex_state = 138, .external_lex_state = 9}, - [2594] = {.lex_state = 171, .external_lex_state = 5}, - [2595] = {.lex_state = 173, .external_lex_state = 4}, - [2596] = {.lex_state = 71, .external_lex_state = 2}, - [2597] = {.lex_state = 138, .external_lex_state = 9}, - [2598] = {.lex_state = 199, .external_lex_state = 5}, - [2599] = {.lex_state = 132, .external_lex_state = 4}, - [2600] = {.lex_state = 218, .external_lex_state = 2}, - [2601] = {.lex_state = 253, .external_lex_state = 14}, - [2602] = {.lex_state = 138, .external_lex_state = 9}, - [2603] = {.lex_state = 171, .external_lex_state = 5}, - [2604] = {.lex_state = 173, .external_lex_state = 4}, - [2605] = {.lex_state = 243, .external_lex_state = 4}, - [2606] = {.lex_state = 209}, - [2607] = {.lex_state = 243, .external_lex_state = 14}, - [2608] = {.lex_state = 243, .external_lex_state = 14}, - [2609] = {.lex_state = 96, .external_lex_state = 20}, - [2610] = {.lex_state = 96, .external_lex_state = 20}, - [2611] = {.lex_state = 96, .external_lex_state = 16}, - [2612] = {.lex_state = 221, .external_lex_state = 16}, - [2613] = {.lex_state = 243, .external_lex_state = 14}, - [2614] = {.lex_state = 223, .external_lex_state = 21}, - [2615] = {.lex_state = 223, .external_lex_state = 16}, - [2616] = {.lex_state = 223, .external_lex_state = 21}, - [2617] = {.lex_state = 223, .external_lex_state = 16}, - [2618] = {.lex_state = 223, .external_lex_state = 16}, - [2619] = {.lex_state = 243, .external_lex_state = 14}, - [2620] = {.lex_state = 223, .external_lex_state = 16}, - [2621] = {.lex_state = 223, .external_lex_state = 16}, - [2622] = {.lex_state = 243, .external_lex_state = 14}, - [2623] = {.lex_state = 218, .external_lex_state = 2}, - [2624] = {.lex_state = 218, .external_lex_state = 2}, - [2625] = {.lex_state = 138, .external_lex_state = 9}, - [2626] = {.lex_state = 71, .external_lex_state = 2}, - [2627] = {.lex_state = 71, .external_lex_state = 2}, - [2628] = {.lex_state = 138, .external_lex_state = 9}, - [2629] = {.lex_state = 243, .external_lex_state = 14}, - [2630] = {.lex_state = 218, .external_lex_state = 2}, - [2631] = {.lex_state = 218, .external_lex_state = 2}, - [2632] = {.lex_state = 138, .external_lex_state = 9}, - [2633] = {.lex_state = 243, .external_lex_state = 6}, - [2634] = {.lex_state = 243, .external_lex_state = 6}, - [2635] = {.lex_state = 96, .external_lex_state = 20}, - [2636] = {.lex_state = 96, .external_lex_state = 20}, - [2637] = {.lex_state = 96, .external_lex_state = 16}, - [2638] = {.lex_state = 221, .external_lex_state = 16}, - [2639] = {.lex_state = 243, .external_lex_state = 6}, - [2640] = {.lex_state = 223, .external_lex_state = 21}, - [2641] = {.lex_state = 223, .external_lex_state = 16}, - [2642] = {.lex_state = 223, .external_lex_state = 21}, - [2643] = {.lex_state = 223, .external_lex_state = 16}, - [2644] = {.lex_state = 223, .external_lex_state = 16}, - [2645] = {.lex_state = 243, .external_lex_state = 6}, - [2646] = {.lex_state = 223, .external_lex_state = 16}, - [2647] = {.lex_state = 223, .external_lex_state = 16}, - [2648] = {.lex_state = 243, .external_lex_state = 6}, - [2649] = {.lex_state = 218, .external_lex_state = 2}, - [2650] = {.lex_state = 218, .external_lex_state = 2}, - [2651] = {.lex_state = 138, .external_lex_state = 9}, - [2652] = {.lex_state = 71, .external_lex_state = 2}, - [2653] = {.lex_state = 71, .external_lex_state = 2}, - [2654] = {.lex_state = 138, .external_lex_state = 9}, - [2655] = {.lex_state = 243, .external_lex_state = 6}, - [2656] = {.lex_state = 218, .external_lex_state = 2}, - [2657] = {.lex_state = 218, .external_lex_state = 2}, - [2658] = {.lex_state = 138, .external_lex_state = 9}, - [2659] = {.lex_state = 249, .external_lex_state = 6}, - [2660] = {.lex_state = 249, .external_lex_state = 6}, - [2661] = {.lex_state = 96, .external_lex_state = 20}, - [2662] = {.lex_state = 96, .external_lex_state = 20}, - [2663] = {.lex_state = 96, .external_lex_state = 16}, - [2664] = {.lex_state = 223, .external_lex_state = 16}, - [2665] = {.lex_state = 249, .external_lex_state = 6}, - [2666] = {.lex_state = 223, .external_lex_state = 16}, - [2667] = {.lex_state = 223, .external_lex_state = 16}, - [2668] = {.lex_state = 223, .external_lex_state = 16}, - [2669] = {.lex_state = 249, .external_lex_state = 6}, - [2670] = {.lex_state = 223, .external_lex_state = 16}, - [2671] = {.lex_state = 249, .external_lex_state = 6}, - [2672] = {.lex_state = 218, .external_lex_state = 2}, - [2673] = {.lex_state = 71, .external_lex_state = 2}, - [2674] = {.lex_state = 249, .external_lex_state = 6}, - [2675] = {.lex_state = 218, .external_lex_state = 2}, - [2676] = {.lex_state = 239, .external_lex_state = 6}, - [2677] = {.lex_state = 239, .external_lex_state = 6}, - [2678] = {.lex_state = 239, .external_lex_state = 6}, - [2679] = {.lex_state = 187}, - [2680] = {.lex_state = 221, .external_lex_state = 16}, - [2681] = {.lex_state = 78}, - [2682] = {.lex_state = 195, .external_lex_state = 16}, - [2683] = {.lex_state = 195, .external_lex_state = 16}, - [2684] = {.lex_state = 239, .external_lex_state = 6}, - [2685] = {.lex_state = 223, .external_lex_state = 21}, - [2686] = {.lex_state = 223, .external_lex_state = 16}, - [2687] = {.lex_state = 239, .external_lex_state = 6}, - [2688] = {.lex_state = 223, .external_lex_state = 21}, - [2689] = {.lex_state = 223, .external_lex_state = 16}, - [2690] = {.lex_state = 218, .external_lex_state = 2}, - [2691] = {.lex_state = 239, .external_lex_state = 6}, - [2692] = {.lex_state = 138, .external_lex_state = 9}, - [2693] = {.lex_state = 171, .external_lex_state = 5}, - [2694] = {.lex_state = 173, .external_lex_state = 4}, - [2695] = {.lex_state = 71, .external_lex_state = 2}, - [2696] = {.lex_state = 138, .external_lex_state = 9}, - [2697] = {.lex_state = 199, .external_lex_state = 5}, - [2698] = {.lex_state = 132, .external_lex_state = 4}, - [2699] = {.lex_state = 218, .external_lex_state = 2}, - [2700] = {.lex_state = 239, .external_lex_state = 6}, - [2701] = {.lex_state = 138, .external_lex_state = 9}, - [2702] = {.lex_state = 171, .external_lex_state = 5}, - [2703] = {.lex_state = 173, .external_lex_state = 4}, - [2704] = {.lex_state = 218, .external_lex_state = 2}, - [2705] = {.lex_state = 94}, - [2706] = {.lex_state = 128, .external_lex_state = 5}, - [2707] = {.lex_state = 132, .external_lex_state = 4}, - [2708] = {.lex_state = 218, .external_lex_state = 2}, - [2709] = {.lex_state = 94}, - [2710] = {.lex_state = 128, .external_lex_state = 5}, - [2711] = {.lex_state = 132, .external_lex_state = 4}, - [2712] = {.lex_state = 253, .external_lex_state = 14}, - [2713] = {.lex_state = 253, .external_lex_state = 14}, - [2714] = {.lex_state = 96, .external_lex_state = 20}, - [2715] = {.lex_state = 96, .external_lex_state = 20}, - [2716] = {.lex_state = 96, .external_lex_state = 16}, - [2717] = {.lex_state = 221, .external_lex_state = 16}, - [2718] = {.lex_state = 253, .external_lex_state = 14}, - [2719] = {.lex_state = 223, .external_lex_state = 21}, - [2720] = {.lex_state = 223, .external_lex_state = 16}, - [2721] = {.lex_state = 223, .external_lex_state = 21}, - [2722] = {.lex_state = 223, .external_lex_state = 16}, - [2723] = {.lex_state = 223, .external_lex_state = 16}, - [2724] = {.lex_state = 253, .external_lex_state = 14}, - [2725] = {.lex_state = 223, .external_lex_state = 16}, - [2726] = {.lex_state = 223, .external_lex_state = 16}, - [2727] = {.lex_state = 253, .external_lex_state = 14}, - [2728] = {.lex_state = 218, .external_lex_state = 2}, - [2729] = {.lex_state = 218, .external_lex_state = 2}, - [2730] = {.lex_state = 138, .external_lex_state = 9}, - [2731] = {.lex_state = 71, .external_lex_state = 2}, - [2732] = {.lex_state = 71, .external_lex_state = 2}, - [2733] = {.lex_state = 138, .external_lex_state = 9}, - [2734] = {.lex_state = 253, .external_lex_state = 14}, - [2735] = {.lex_state = 218, .external_lex_state = 2}, - [2736] = {.lex_state = 218, .external_lex_state = 2}, - [2737] = {.lex_state = 138, .external_lex_state = 9}, - [2738] = {.lex_state = 243, .external_lex_state = 4}, - [2739] = {.lex_state = 243, .external_lex_state = 14}, - [2740] = {.lex_state = 243, .external_lex_state = 14}, - [2741] = {.lex_state = 96, .external_lex_state = 20}, - [2742] = {.lex_state = 96, .external_lex_state = 20}, - [2743] = {.lex_state = 96, .external_lex_state = 16}, - [2744] = {.lex_state = 223, .external_lex_state = 16}, - [2745] = {.lex_state = 243, .external_lex_state = 14}, - [2746] = {.lex_state = 223, .external_lex_state = 16}, - [2747] = {.lex_state = 223, .external_lex_state = 16}, - [2748] = {.lex_state = 223, .external_lex_state = 16}, - [2749] = {.lex_state = 243, .external_lex_state = 14}, - [2750] = {.lex_state = 223, .external_lex_state = 16}, - [2751] = {.lex_state = 243, .external_lex_state = 14}, - [2752] = {.lex_state = 218, .external_lex_state = 2}, - [2753] = {.lex_state = 71, .external_lex_state = 2}, - [2754] = {.lex_state = 243, .external_lex_state = 14}, - [2755] = {.lex_state = 218, .external_lex_state = 2}, - [2756] = {.lex_state = 243, .external_lex_state = 6}, - [2757] = {.lex_state = 243, .external_lex_state = 6}, - [2758] = {.lex_state = 96, .external_lex_state = 20}, - [2759] = {.lex_state = 96, .external_lex_state = 20}, - [2760] = {.lex_state = 96, .external_lex_state = 16}, - [2761] = {.lex_state = 223, .external_lex_state = 16}, - [2762] = {.lex_state = 243, .external_lex_state = 6}, - [2763] = {.lex_state = 223, .external_lex_state = 16}, - [2764] = {.lex_state = 223, .external_lex_state = 16}, - [2765] = {.lex_state = 223, .external_lex_state = 16}, - [2766] = {.lex_state = 243, .external_lex_state = 6}, - [2767] = {.lex_state = 223, .external_lex_state = 16}, - [2768] = {.lex_state = 243, .external_lex_state = 6}, - [2769] = {.lex_state = 218, .external_lex_state = 2}, - [2770] = {.lex_state = 71, .external_lex_state = 2}, - [2771] = {.lex_state = 243, .external_lex_state = 6}, - [2772] = {.lex_state = 218, .external_lex_state = 2}, - [2773] = {.lex_state = 249, .external_lex_state = 6}, - [2774] = {.lex_state = 249, .external_lex_state = 6}, - [2775] = {.lex_state = 249, .external_lex_state = 6}, - [2776] = {.lex_state = 223, .external_lex_state = 16}, - [2777] = {.lex_state = 223, .external_lex_state = 16}, - [2778] = {.lex_state = 249, .external_lex_state = 6}, - [2779] = {.lex_state = 249, .external_lex_state = 6}, - [2780] = {.lex_state = 249, .external_lex_state = 6}, - [2781] = {.lex_state = 239, .external_lex_state = 6}, - [2782] = {.lex_state = 239, .external_lex_state = 6}, - [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 = 221, .external_lex_state = 16}, - [2787] = {.lex_state = 239, .external_lex_state = 6}, - [2788] = {.lex_state = 223, .external_lex_state = 21}, - [2789] = {.lex_state = 223, .external_lex_state = 16}, - [2790] = {.lex_state = 223, .external_lex_state = 21}, - [2791] = {.lex_state = 223, .external_lex_state = 16}, - [2792] = {.lex_state = 223, .external_lex_state = 16}, - [2793] = {.lex_state = 239, .external_lex_state = 6}, - [2794] = {.lex_state = 223, .external_lex_state = 16}, - [2795] = {.lex_state = 223, .external_lex_state = 16}, - [2796] = {.lex_state = 239, .external_lex_state = 6}, - [2797] = {.lex_state = 218, .external_lex_state = 2}, - [2798] = {.lex_state = 218, .external_lex_state = 2}, - [2799] = {.lex_state = 138, .external_lex_state = 9}, - [2800] = {.lex_state = 71, .external_lex_state = 2}, - [2801] = {.lex_state = 71, .external_lex_state = 2}, - [2802] = {.lex_state = 138, .external_lex_state = 9}, - [2803] = {.lex_state = 239, .external_lex_state = 6}, - [2804] = {.lex_state = 218, .external_lex_state = 2}, - [2805] = {.lex_state = 218, .external_lex_state = 2}, - [2806] = {.lex_state = 138, .external_lex_state = 9}, - [2807] = {.lex_state = 218, .external_lex_state = 2}, - [2808] = {.lex_state = 218, .external_lex_state = 2}, - [2809] = {.lex_state = 253, .external_lex_state = 14}, - [2810] = {.lex_state = 253, .external_lex_state = 14}, - [2811] = {.lex_state = 96, .external_lex_state = 20}, - [2812] = {.lex_state = 96, .external_lex_state = 20}, - [2813] = {.lex_state = 96, .external_lex_state = 16}, - [2814] = {.lex_state = 223, .external_lex_state = 16}, - [2815] = {.lex_state = 253, .external_lex_state = 14}, - [2816] = {.lex_state = 223, .external_lex_state = 16}, - [2817] = {.lex_state = 223, .external_lex_state = 16}, - [2818] = {.lex_state = 223, .external_lex_state = 16}, - [2819] = {.lex_state = 253, .external_lex_state = 14}, - [2820] = {.lex_state = 223, .external_lex_state = 16}, - [2821] = {.lex_state = 253, .external_lex_state = 14}, - [2822] = {.lex_state = 218, .external_lex_state = 2}, - [2823] = {.lex_state = 71, .external_lex_state = 2}, - [2824] = {.lex_state = 253, .external_lex_state = 14}, - [2825] = {.lex_state = 218, .external_lex_state = 2}, - [2826] = {.lex_state = 243, .external_lex_state = 14}, - [2827] = {.lex_state = 243, .external_lex_state = 14}, - [2828] = {.lex_state = 243, .external_lex_state = 14}, - [2829] = {.lex_state = 223, .external_lex_state = 16}, - [2830] = {.lex_state = 223, .external_lex_state = 16}, - [2831] = {.lex_state = 243, .external_lex_state = 14}, - [2832] = {.lex_state = 243, .external_lex_state = 14}, - [2833] = {.lex_state = 243, .external_lex_state = 14}, - [2834] = {.lex_state = 243, .external_lex_state = 6}, - [2835] = {.lex_state = 243, .external_lex_state = 6}, - [2836] = {.lex_state = 243, .external_lex_state = 6}, - [2837] = {.lex_state = 223, .external_lex_state = 16}, - [2838] = {.lex_state = 223, .external_lex_state = 16}, - [2839] = {.lex_state = 243, .external_lex_state = 6}, - [2840] = {.lex_state = 243, .external_lex_state = 6}, - [2841] = {.lex_state = 243, .external_lex_state = 6}, - [2842] = {.lex_state = 249, .external_lex_state = 6}, - [2843] = {.lex_state = 249, .external_lex_state = 6}, - [2844] = {.lex_state = 239, .external_lex_state = 6}, - [2845] = {.lex_state = 239, .external_lex_state = 6}, - [2846] = {.lex_state = 96, .external_lex_state = 20}, - [2847] = {.lex_state = 96, .external_lex_state = 20}, - [2848] = {.lex_state = 96, .external_lex_state = 16}, - [2849] = {.lex_state = 223, .external_lex_state = 16}, - [2850] = {.lex_state = 239, .external_lex_state = 6}, - [2851] = {.lex_state = 223, .external_lex_state = 16}, - [2852] = {.lex_state = 223, .external_lex_state = 16}, - [2853] = {.lex_state = 223, .external_lex_state = 16}, - [2854] = {.lex_state = 239, .external_lex_state = 6}, - [2855] = {.lex_state = 223, .external_lex_state = 16}, - [2856] = {.lex_state = 239, .external_lex_state = 6}, - [2857] = {.lex_state = 218, .external_lex_state = 2}, - [2858] = {.lex_state = 71, .external_lex_state = 2}, - [2859] = {.lex_state = 239, .external_lex_state = 6}, - [2860] = {.lex_state = 218, .external_lex_state = 2}, - [2861] = {.lex_state = 253, .external_lex_state = 14}, - [2862] = {.lex_state = 253, .external_lex_state = 14}, - [2863] = {.lex_state = 253, .external_lex_state = 14}, - [2864] = {.lex_state = 223, .external_lex_state = 16}, - [2865] = {.lex_state = 223, .external_lex_state = 16}, - [2866] = {.lex_state = 253, .external_lex_state = 14}, - [2867] = {.lex_state = 253, .external_lex_state = 14}, - [2868] = {.lex_state = 253, .external_lex_state = 14}, - [2869] = {.lex_state = 243, .external_lex_state = 14}, - [2870] = {.lex_state = 243, .external_lex_state = 14}, - [2871] = {.lex_state = 243, .external_lex_state = 6}, - [2872] = {.lex_state = 243, .external_lex_state = 6}, - [2873] = {.lex_state = 239, .external_lex_state = 6}, - [2874] = {.lex_state = 239, .external_lex_state = 6}, - [2875] = {.lex_state = 239, .external_lex_state = 6}, - [2876] = {.lex_state = 223, .external_lex_state = 16}, - [2877] = {.lex_state = 223, .external_lex_state = 16}, - [2878] = {.lex_state = 239, .external_lex_state = 6}, - [2879] = {.lex_state = 239, .external_lex_state = 6}, - [2880] = {.lex_state = 239, .external_lex_state = 6}, - [2881] = {.lex_state = 253, .external_lex_state = 14}, - [2882] = {.lex_state = 253, .external_lex_state = 14}, - [2883] = {.lex_state = 239, .external_lex_state = 6}, - [2884] = {.lex_state = 239, .external_lex_state = 6}, + [1] = {.lex_state = 78, .external_lex_state = 2}, + [2] = {.lex_state = 78}, + [3] = {.lex_state = 85}, + [4] = {.lex_state = 92}, + [5] = {.lex_state = 96}, + [6] = {.lex_state = 78, .external_lex_state = 2}, + [7] = {.lex_state = 78, .external_lex_state = 2}, + [8] = {.lex_state = 102}, + [9] = {.lex_state = 102}, + [10] = {.lex_state = 78, .external_lex_state = 2}, + [11] = {.lex_state = 104, .external_lex_state = 3}, + [12] = {.lex_state = 106, .external_lex_state = 2}, + [13] = {.lex_state = 96}, + [14] = {.lex_state = 96}, + [15] = {.lex_state = 108, .external_lex_state = 4}, + [16] = {.lex_state = 108, .external_lex_state = 5}, + [17] = {.lex_state = 102}, + [18] = {.lex_state = 112, .external_lex_state = 6}, + [19] = {.lex_state = 115}, + [20] = {.lex_state = 122}, + [21] = {.lex_state = 112, .external_lex_state = 6}, + [22] = {.lex_state = 122, .external_lex_state = 7}, + [23] = {.lex_state = 78, .external_lex_state = 2}, + [24] = {.lex_state = 78, .external_lex_state = 2}, + [25] = {.lex_state = 78, .external_lex_state = 2}, + [26] = {.lex_state = 132, .external_lex_state = 6}, + [27] = {.lex_state = 134}, + [28] = {.lex_state = 134}, + [29] = {.lex_state = 136, .external_lex_state = 5}, + [30] = {.lex_state = 112, .external_lex_state = 5}, + [31] = {.lex_state = 140, .external_lex_state = 4}, + [32] = {.lex_state = 85}, + [33] = {.lex_state = 142, .external_lex_state = 5}, + [34] = {.lex_state = 78, .external_lex_state = 2}, + [35] = {.lex_state = 102, .external_lex_state = 2}, + [36] = {.lex_state = 102}, + [37] = {.lex_state = 102}, + [38] = {.lex_state = 144, .external_lex_state = 8}, + [39] = {.lex_state = 146, .external_lex_state = 9}, + [40] = {.lex_state = 149, .external_lex_state = 9}, + [41] = {.lex_state = 96}, + [42] = {.lex_state = 96}, + [43] = {.lex_state = 153, .external_lex_state = 10}, + [44] = {.lex_state = 115}, + [45] = {.lex_state = 122}, + [46] = {.lex_state = 153, .external_lex_state = 10}, + [47] = {.lex_state = 122, .external_lex_state = 7}, + [48] = {.lex_state = 78, .external_lex_state = 2}, + [49] = {.lex_state = 78, .external_lex_state = 2}, + [50] = {.lex_state = 78, .external_lex_state = 2}, + [51] = {.lex_state = 153}, + [52] = {.lex_state = 85}, + [53] = {.lex_state = 92}, + [54] = {.lex_state = 96}, + [55] = {.lex_state = 78, .external_lex_state = 2}, + [56] = {.lex_state = 78, .external_lex_state = 2}, + [57] = {.lex_state = 102}, + [58] = {.lex_state = 102}, + [59] = {.lex_state = 78, .external_lex_state = 2}, + [60] = {.lex_state = 104, .external_lex_state = 3}, + [61] = {.lex_state = 106, .external_lex_state = 2}, + [62] = {.lex_state = 96}, + [63] = {.lex_state = 96}, + [64] = {.lex_state = 108, .external_lex_state = 11}, + [65] = {.lex_state = 108, .external_lex_state = 12}, + [66] = {.lex_state = 112, .external_lex_state = 13}, + [67] = {.lex_state = 115}, + [68] = {.lex_state = 122}, + [69] = {.lex_state = 112, .external_lex_state = 13}, + [70] = {.lex_state = 122, .external_lex_state = 7}, + [71] = {.lex_state = 78, .external_lex_state = 2}, + [72] = {.lex_state = 78, .external_lex_state = 2}, + [73] = {.lex_state = 78, .external_lex_state = 2}, + [74] = {.lex_state = 132, .external_lex_state = 13}, + [75] = {.lex_state = 102}, + [76] = {.lex_state = 136, .external_lex_state = 12}, + [77] = {.lex_state = 112, .external_lex_state = 12}, + [78] = {.lex_state = 140, .external_lex_state = 11}, + [79] = {.lex_state = 85}, + [80] = {.lex_state = 112, .external_lex_state = 12}, + [81] = {.lex_state = 102, .external_lex_state = 2}, + [82] = {.lex_state = 102}, + [83] = {.lex_state = 149, .external_lex_state = 14}, + [84] = {.lex_state = 115}, + [85] = {.lex_state = 122}, + [86] = {.lex_state = 149, .external_lex_state = 14}, + [87] = {.lex_state = 122, .external_lex_state = 7}, + [88] = {.lex_state = 78, .external_lex_state = 2}, + [89] = {.lex_state = 78, .external_lex_state = 2}, + [90] = {.lex_state = 78, .external_lex_state = 2}, + [91] = {.lex_state = 149, .external_lex_state = 9}, + [92] = {.lex_state = 172}, + [93] = {.lex_state = 85}, + [94] = {.lex_state = 106, .external_lex_state = 2}, + [95] = {.lex_state = 178, .external_lex_state = 4}, + [96] = {.lex_state = 178, .external_lex_state = 5}, + [97] = {.lex_state = 142, .external_lex_state = 6}, + [98] = {.lex_state = 142, .external_lex_state = 6}, + [99] = {.lex_state = 180, .external_lex_state = 6}, + [100] = {.lex_state = 85}, + [101] = {.lex_state = 182, .external_lex_state = 5}, + [102] = {.lex_state = 142, .external_lex_state = 5}, + [103] = {.lex_state = 184, .external_lex_state = 4}, + [104] = {.lex_state = 85}, + [105] = {.lex_state = 78, .external_lex_state = 2}, + [106] = {.lex_state = 102, .external_lex_state = 2}, + [107] = {.lex_state = 85}, + [108] = {.lex_state = 92}, + [109] = {.lex_state = 96}, + [110] = {.lex_state = 78, .external_lex_state = 2}, + [111] = {.lex_state = 78, .external_lex_state = 2}, + [112] = {.lex_state = 102}, + [113] = {.lex_state = 102}, + [114] = {.lex_state = 78, .external_lex_state = 2}, + [115] = {.lex_state = 104, .external_lex_state = 3}, + [116] = {.lex_state = 186, .external_lex_state = 5}, + [117] = {.lex_state = 106, .external_lex_state = 2}, + [118] = {.lex_state = 96}, + [119] = {.lex_state = 96}, + [120] = {.lex_state = 199, .external_lex_state = 15}, + [121] = {.lex_state = 199, .external_lex_state = 16}, + [122] = {.lex_state = 201, .external_lex_state = 17}, + [123] = {.lex_state = 115}, + [124] = {.lex_state = 122}, + [125] = {.lex_state = 201, .external_lex_state = 17}, + [126] = {.lex_state = 122, .external_lex_state = 7}, + [127] = {.lex_state = 78, .external_lex_state = 2}, + [128] = {.lex_state = 78, .external_lex_state = 2}, + [129] = {.lex_state = 78, .external_lex_state = 2}, + [130] = {.lex_state = 203, .external_lex_state = 17}, + [131] = {.lex_state = 92, .external_lex_state = 18}, + [132] = {.lex_state = 205, .external_lex_state = 16}, + [133] = {.lex_state = 201, .external_lex_state = 16}, + [134] = {.lex_state = 207, .external_lex_state = 15}, + [135] = {.lex_state = 85}, + [136] = {.lex_state = 201, .external_lex_state = 16}, + [137] = {.lex_state = 78, .external_lex_state = 2}, + [138] = {.lex_state = 102, .external_lex_state = 2}, + [139] = {.lex_state = 85}, + [140] = {.lex_state = 186, .external_lex_state = 5}, + [141] = {.lex_state = 85}, + [142] = {.lex_state = 96}, + [143] = {.lex_state = 96}, + [144] = {.lex_state = 209, .external_lex_state = 19}, + [145] = {.lex_state = 115}, + [146] = {.lex_state = 122}, + [147] = {.lex_state = 209, .external_lex_state = 19}, + [148] = {.lex_state = 122, .external_lex_state = 7}, + [149] = {.lex_state = 78, .external_lex_state = 2}, + [150] = {.lex_state = 78, .external_lex_state = 2}, + [151] = {.lex_state = 78, .external_lex_state = 2}, + [152] = {.lex_state = 209, .external_lex_state = 20}, + [153] = {.lex_state = 96}, + [154] = {.lex_state = 212, .external_lex_state = 10}, + [155] = {.lex_state = 212, .external_lex_state = 10}, + [156] = {.lex_state = 212}, + [157] = {.lex_state = 85}, + [158] = {.lex_state = 108, .external_lex_state = 21}, + [159] = {.lex_state = 115}, + [160] = {.lex_state = 122}, + [161] = {.lex_state = 108, .external_lex_state = 21}, + [162] = {.lex_state = 122, .external_lex_state = 7}, + [163] = {.lex_state = 78, .external_lex_state = 2}, + [164] = {.lex_state = 78, .external_lex_state = 2}, + [165] = {.lex_state = 78, .external_lex_state = 2}, + [166] = {.lex_state = 85}, + [167] = {.lex_state = 108, .external_lex_state = 4}, + [168] = {.lex_state = 108, .external_lex_state = 6}, + [169] = {.lex_state = 115}, + [170] = {.lex_state = 122}, + [171] = {.lex_state = 108, .external_lex_state = 6}, + [172] = {.lex_state = 122, .external_lex_state = 7}, + [173] = {.lex_state = 78, .external_lex_state = 2}, + [174] = {.lex_state = 78, .external_lex_state = 2}, + [175] = {.lex_state = 78, .external_lex_state = 2}, + [176] = {.lex_state = 108, .external_lex_state = 5}, + [177] = {.lex_state = 102, .external_lex_state = 22}, + [178] = {.lex_state = 115}, + [179] = {.lex_state = 122}, + [180] = {.lex_state = 102, .external_lex_state = 22}, + [181] = {.lex_state = 122, .external_lex_state = 7}, + [182] = {.lex_state = 78, .external_lex_state = 2}, + [183] = {.lex_state = 78, .external_lex_state = 2}, + [184] = {.lex_state = 78, .external_lex_state = 2}, + [185] = {.lex_state = 102, .external_lex_state = 2}, + [186] = {.lex_state = 102}, + [187] = {.lex_state = 112, .external_lex_state = 6}, + [188] = {.lex_state = 142, .external_lex_state = 6}, + [189] = {.lex_state = 215}, + [190] = {.lex_state = 115, .external_lex_state = 10}, + [191] = {.lex_state = 122, .external_lex_state = 7}, + [192] = {.lex_state = 78, .external_lex_state = 2}, + [193] = {.lex_state = 78, .external_lex_state = 2}, + [194] = {.lex_state = 115}, + [195] = {.lex_state = 142, .external_lex_state = 6}, + [196] = {.lex_state = 142, .external_lex_state = 6}, + [197] = {.lex_state = 142, .external_lex_state = 6}, + [198] = {.lex_state = 85}, + [199] = {.lex_state = 221, .external_lex_state = 7}, + [200] = {.lex_state = 223, .external_lex_state = 18}, + [201] = {.lex_state = 223, .external_lex_state = 18}, + [202] = {.lex_state = 85}, + [203] = {.lex_state = 85}, + [204] = {.lex_state = 106, .external_lex_state = 2}, + [205] = {.lex_state = 108, .external_lex_state = 4}, + [206] = {.lex_state = 108, .external_lex_state = 5}, + [207] = {.lex_state = 112, .external_lex_state = 6}, + [208] = {.lex_state = 112, .external_lex_state = 6}, + [209] = {.lex_state = 132, .external_lex_state = 6}, + [210] = {.lex_state = 78}, + [211] = {.lex_state = 227, .external_lex_state = 5}, + [212] = {.lex_state = 112, .external_lex_state = 5}, + [213] = {.lex_state = 140, .external_lex_state = 4}, + [214] = {.lex_state = 85}, + [215] = {.lex_state = 78, .external_lex_state = 2}, + [216] = {.lex_state = 102, .external_lex_state = 2}, + [217] = {.lex_state = 85}, + [218] = {.lex_state = 85}, + [219] = {.lex_state = 229, .external_lex_state = 9}, + [220] = {.lex_state = 96, .external_lex_state = 23}, + [221] = {.lex_state = 78}, + [222] = {.lex_state = 231, .external_lex_state = 2}, + [223] = {.lex_state = 78, .external_lex_state = 2}, + [224] = {.lex_state = 78, .external_lex_state = 2}, + [225] = {.lex_state = 102}, + [226] = {.lex_state = 78, .external_lex_state = 24}, + [227] = {.lex_state = 102}, + [228] = {.lex_state = 233, .external_lex_state = 9}, + [229] = {.lex_state = 136, .external_lex_state = 5}, + [230] = {.lex_state = 235, .external_lex_state = 25}, + [231] = {.lex_state = 112, .external_lex_state = 6}, + [232] = {.lex_state = 112, .external_lex_state = 6}, + [233] = {.lex_state = 112, .external_lex_state = 5}, + [234] = {.lex_state = 136, .external_lex_state = 5}, + [235] = {.lex_state = 140, .external_lex_state = 4}, + [236] = {.lex_state = 78, .external_lex_state = 2}, + [237] = {.lex_state = 112, .external_lex_state = 5}, + [238] = {.lex_state = 102, .external_lex_state = 2}, + [239] = {.lex_state = 102, .external_lex_state = 22}, + [240] = {.lex_state = 102, .external_lex_state = 22}, + [241] = {.lex_state = 102, .external_lex_state = 2}, + [242] = {.lex_state = 237, .external_lex_state = 19}, + [243] = {.lex_state = 237, .external_lex_state = 19}, + [244] = {.lex_state = 237, .external_lex_state = 19}, + [245] = {.lex_state = 184, .external_lex_state = 4}, + [246] = {.lex_state = 239}, + [247] = {.lex_state = 140, .external_lex_state = 21}, + [248] = {.lex_state = 115}, + [249] = {.lex_state = 122}, + [250] = {.lex_state = 140, .external_lex_state = 21}, + [251] = {.lex_state = 122, .external_lex_state = 7}, + [252] = {.lex_state = 78, .external_lex_state = 2}, + [253] = {.lex_state = 78, .external_lex_state = 2}, + [254] = {.lex_state = 78, .external_lex_state = 2}, + [255] = {.lex_state = 146, .external_lex_state = 9}, + [256] = {.lex_state = 96}, + [257] = {.lex_state = 96}, + [258] = {.lex_state = 242, .external_lex_state = 14}, + [259] = {.lex_state = 115}, + [260] = {.lex_state = 122}, + [261] = {.lex_state = 242, .external_lex_state = 14}, + [262] = {.lex_state = 122, .external_lex_state = 7}, + [263] = {.lex_state = 78, .external_lex_state = 2}, + [264] = {.lex_state = 78, .external_lex_state = 2}, + [265] = {.lex_state = 78, .external_lex_state = 2}, + [266] = {.lex_state = 242, .external_lex_state = 9}, + [267] = {.lex_state = 102}, + [268] = {.lex_state = 102}, + [269] = {.lex_state = 96}, + [270] = {.lex_state = 96}, + [271] = {.lex_state = 245, .external_lex_state = 10}, + [272] = {.lex_state = 115}, + [273] = {.lex_state = 122}, + [274] = {.lex_state = 245, .external_lex_state = 10}, + [275] = {.lex_state = 122, .external_lex_state = 7}, + [276] = {.lex_state = 78, .external_lex_state = 2}, + [277] = {.lex_state = 78, .external_lex_state = 2}, + [278] = {.lex_state = 78, .external_lex_state = 2}, + [279] = {.lex_state = 245}, + [280] = {.lex_state = 153}, + [281] = {.lex_state = 102}, + [282] = {.lex_state = 153, .external_lex_state = 10}, + [283] = {.lex_state = 247, .external_lex_state = 10}, + [284] = {.lex_state = 215}, + [285] = {.lex_state = 115}, + [286] = {.lex_state = 247, .external_lex_state = 10}, + [287] = {.lex_state = 247, .external_lex_state = 10}, + [288] = {.lex_state = 247, .external_lex_state = 10}, + [289] = {.lex_state = 85}, + [290] = {.lex_state = 221, .external_lex_state = 7}, + [291] = {.lex_state = 223, .external_lex_state = 18}, + [292] = {.lex_state = 223, .external_lex_state = 18}, + [293] = {.lex_state = 85}, + [294] = {.lex_state = 78}, + [295] = {.lex_state = 85}, + [296] = {.lex_state = 186, .external_lex_state = 5}, + [297] = {.lex_state = 96}, + [298] = {.lex_state = 96, .external_lex_state = 25}, + [299] = {.lex_state = 247}, + [300] = {.lex_state = 144, .external_lex_state = 8}, + [301] = {.lex_state = 146, .external_lex_state = 9}, + [302] = {.lex_state = 149, .external_lex_state = 9}, + [303] = {.lex_state = 153}, + [304] = {.lex_state = 102}, + [305] = {.lex_state = 102}, + [306] = {.lex_state = 149, .external_lex_state = 14}, + [307] = {.lex_state = 149, .external_lex_state = 14}, + [308] = {.lex_state = 149, .external_lex_state = 9}, + [309] = {.lex_state = 172}, + [310] = {.lex_state = 85}, + [311] = {.lex_state = 136, .external_lex_state = 12}, + [312] = {.lex_state = 92, .external_lex_state = 18}, + [313] = {.lex_state = 136, .external_lex_state = 12}, + [314] = {.lex_state = 209, .external_lex_state = 20}, + [315] = {.lex_state = 212}, + [316] = {.lex_state = 85}, + [317] = {.lex_state = 108, .external_lex_state = 26}, + [318] = {.lex_state = 115}, + [319] = {.lex_state = 122}, + [320] = {.lex_state = 108, .external_lex_state = 26}, + [321] = {.lex_state = 122, .external_lex_state = 7}, + [322] = {.lex_state = 78, .external_lex_state = 2}, + [323] = {.lex_state = 78, .external_lex_state = 2}, + [324] = {.lex_state = 78, .external_lex_state = 2}, + [325] = {.lex_state = 85}, + [326] = {.lex_state = 108, .external_lex_state = 11}, + [327] = {.lex_state = 108, .external_lex_state = 13}, + [328] = {.lex_state = 115}, + [329] = {.lex_state = 122}, + [330] = {.lex_state = 108, .external_lex_state = 13}, + [331] = {.lex_state = 122, .external_lex_state = 7}, + [332] = {.lex_state = 78, .external_lex_state = 2}, + [333] = {.lex_state = 78, .external_lex_state = 2}, + [334] = {.lex_state = 78, .external_lex_state = 2}, + [335] = {.lex_state = 108, .external_lex_state = 12}, + [336] = {.lex_state = 102}, + [337] = {.lex_state = 112, .external_lex_state = 13}, + [338] = {.lex_state = 112, .external_lex_state = 13}, + [339] = {.lex_state = 215}, + [340] = {.lex_state = 115}, + [341] = {.lex_state = 112, .external_lex_state = 13}, + [342] = {.lex_state = 112, .external_lex_state = 13}, + [343] = {.lex_state = 112, .external_lex_state = 13}, + [344] = {.lex_state = 85}, + [345] = {.lex_state = 221, .external_lex_state = 7}, + [346] = {.lex_state = 223, .external_lex_state = 18}, + [347] = {.lex_state = 223, .external_lex_state = 18}, + [348] = {.lex_state = 85}, + [349] = {.lex_state = 78}, + [350] = {.lex_state = 85}, + [351] = {.lex_state = 85}, + [352] = {.lex_state = 249, .external_lex_state = 2}, + [353] = {.lex_state = 186, .external_lex_state = 5}, + [354] = {.lex_state = 78}, + [355] = {.lex_state = 102}, + [356] = {.lex_state = 78, .external_lex_state = 2}, + [357] = {.lex_state = 78, .external_lex_state = 2}, + [358] = {.lex_state = 102}, + [359] = {.lex_state = 78, .external_lex_state = 24}, + [360] = {.lex_state = 102}, + [361] = {.lex_state = 136, .external_lex_state = 12}, + [362] = {.lex_state = 235, .external_lex_state = 25}, + [363] = {.lex_state = 112, .external_lex_state = 13}, + [364] = {.lex_state = 112, .external_lex_state = 13}, + [365] = {.lex_state = 112, .external_lex_state = 12}, + [366] = {.lex_state = 112, .external_lex_state = 12}, + [367] = {.lex_state = 255, .external_lex_state = 2}, + [368] = {.lex_state = 102}, + [369] = {.lex_state = 146, .external_lex_state = 9}, + [370] = {.lex_state = 149}, + [371] = {.lex_state = 149, .external_lex_state = 14}, + [372] = {.lex_state = 149, .external_lex_state = 14}, + [373] = {.lex_state = 215}, + [374] = {.lex_state = 115}, + [375] = {.lex_state = 149, .external_lex_state = 14}, + [376] = {.lex_state = 149, .external_lex_state = 14}, + [377] = {.lex_state = 149, .external_lex_state = 14}, + [378] = {.lex_state = 146, .external_lex_state = 9}, + [379] = {.lex_state = 149}, + [380] = {.lex_state = 85}, + [381] = {.lex_state = 221, .external_lex_state = 7}, + [382] = {.lex_state = 223, .external_lex_state = 18}, + [383] = {.lex_state = 223, .external_lex_state = 18}, + [384] = {.lex_state = 85}, + [385] = {.lex_state = 78}, + [386] = {.lex_state = 85}, + [387] = {.lex_state = 85}, + [388] = {.lex_state = 186, .external_lex_state = 5}, + [389] = {.lex_state = 144, .external_lex_state = 8}, + [390] = {.lex_state = 85}, + [391] = {.lex_state = 178, .external_lex_state = 21}, + [392] = {.lex_state = 178, .external_lex_state = 21}, + [393] = {.lex_state = 85}, + [394] = {.lex_state = 178, .external_lex_state = 4}, + [395] = {.lex_state = 178, .external_lex_state = 6}, + [396] = {.lex_state = 178, .external_lex_state = 6}, + [397] = {.lex_state = 178, .external_lex_state = 5}, + [398] = {.lex_state = 142, .external_lex_state = 6}, + [399] = {.lex_state = 186, .external_lex_state = 5}, + [400] = {.lex_state = 78}, + [401] = {.lex_state = 78, .external_lex_state = 2}, + [402] = {.lex_state = 78, .external_lex_state = 2}, + [403] = {.lex_state = 102}, + [404] = {.lex_state = 102}, + [405] = {.lex_state = 182, .external_lex_state = 5}, + [406] = {.lex_state = 235, .external_lex_state = 25}, + [407] = {.lex_state = 142, .external_lex_state = 6}, + [408] = {.lex_state = 142, .external_lex_state = 6}, + [409] = {.lex_state = 142, .external_lex_state = 5}, + [410] = {.lex_state = 182, .external_lex_state = 5}, + [411] = {.lex_state = 184, .external_lex_state = 4}, + [412] = {.lex_state = 142, .external_lex_state = 5}, + [413] = {.lex_state = 144, .external_lex_state = 8}, + [414] = {.lex_state = 146, .external_lex_state = 9}, + [415] = {.lex_state = 149, .external_lex_state = 9}, + [416] = {.lex_state = 153}, + [417] = {.lex_state = 102}, + [418] = {.lex_state = 102}, + [419] = {.lex_state = 149, .external_lex_state = 14}, + [420] = {.lex_state = 149, .external_lex_state = 14}, + [421] = {.lex_state = 149, .external_lex_state = 9}, + [422] = {.lex_state = 172}, + [423] = {.lex_state = 85}, + [424] = {.lex_state = 205, .external_lex_state = 16}, + [425] = {.lex_state = 92, .external_lex_state = 18}, + [426] = {.lex_state = 205, .external_lex_state = 16}, + [427] = {.lex_state = 209, .external_lex_state = 20}, + [428] = {.lex_state = 212}, + [429] = {.lex_state = 85}, + [430] = {.lex_state = 199, .external_lex_state = 27}, + [431] = {.lex_state = 115}, + [432] = {.lex_state = 122}, + [433] = {.lex_state = 199, .external_lex_state = 27}, + [434] = {.lex_state = 122, .external_lex_state = 7}, + [435] = {.lex_state = 78, .external_lex_state = 2}, + [436] = {.lex_state = 78, .external_lex_state = 2}, + [437] = {.lex_state = 78, .external_lex_state = 2}, + [438] = {.lex_state = 85}, + [439] = {.lex_state = 199, .external_lex_state = 15}, + [440] = {.lex_state = 199, .external_lex_state = 17}, + [441] = {.lex_state = 115}, + [442] = {.lex_state = 122}, + [443] = {.lex_state = 199, .external_lex_state = 17}, + [444] = {.lex_state = 122, .external_lex_state = 7}, + [445] = {.lex_state = 78, .external_lex_state = 2}, + [446] = {.lex_state = 78, .external_lex_state = 2}, + [447] = {.lex_state = 78, .external_lex_state = 2}, + [448] = {.lex_state = 199, .external_lex_state = 16}, + [449] = {.lex_state = 102}, + [450] = {.lex_state = 201, .external_lex_state = 17}, + [451] = {.lex_state = 201, .external_lex_state = 17}, + [452] = {.lex_state = 215}, + [453] = {.lex_state = 115}, + [454] = {.lex_state = 201, .external_lex_state = 17}, + [455] = {.lex_state = 201, .external_lex_state = 17}, + [456] = {.lex_state = 201, .external_lex_state = 17}, + [457] = {.lex_state = 85}, + [458] = {.lex_state = 221, .external_lex_state = 7}, + [459] = {.lex_state = 223, .external_lex_state = 18}, + [460] = {.lex_state = 223, .external_lex_state = 18}, + [461] = {.lex_state = 85}, + [462] = {.lex_state = 78}, + [463] = {.lex_state = 85}, + [464] = {.lex_state = 85}, + [465] = {.lex_state = 186, .external_lex_state = 5}, + [466] = {.lex_state = 258, .external_lex_state = 28}, + [467] = {.lex_state = 96, .external_lex_state = 23}, + [468] = {.lex_state = 78}, + [469] = {.lex_state = 104, .external_lex_state = 3}, + [470] = {.lex_state = 78, .external_lex_state = 2}, + [471] = {.lex_state = 78, .external_lex_state = 2}, + [472] = {.lex_state = 102}, + [473] = {.lex_state = 78, .external_lex_state = 24}, + [474] = {.lex_state = 102}, + [475] = {.lex_state = 258, .external_lex_state = 28}, + [476] = {.lex_state = 205, .external_lex_state = 16}, + [477] = {.lex_state = 235, .external_lex_state = 25}, + [478] = {.lex_state = 201, .external_lex_state = 17}, + [479] = {.lex_state = 201, .external_lex_state = 17}, + [480] = {.lex_state = 201, .external_lex_state = 16}, + [481] = {.lex_state = 205, .external_lex_state = 16}, + [482] = {.lex_state = 207, .external_lex_state = 15}, + [483] = {.lex_state = 201, .external_lex_state = 16}, + [484] = {.lex_state = 144, .external_lex_state = 8}, + [485] = {.lex_state = 245}, + [486] = {.lex_state = 209, .external_lex_state = 20}, + [487] = {.lex_state = 102}, + [488] = {.lex_state = 209, .external_lex_state = 19}, + [489] = {.lex_state = 209, .external_lex_state = 19}, + [490] = {.lex_state = 215}, + [491] = {.lex_state = 115}, + [492] = {.lex_state = 209, .external_lex_state = 19}, + [493] = {.lex_state = 209, .external_lex_state = 19}, + [494] = {.lex_state = 209, .external_lex_state = 19}, + [495] = {.lex_state = 85}, + [496] = {.lex_state = 221, .external_lex_state = 7}, + [497] = {.lex_state = 223, .external_lex_state = 18}, + [498] = {.lex_state = 223, .external_lex_state = 18}, + [499] = {.lex_state = 85}, + [500] = {.lex_state = 78}, + [501] = {.lex_state = 85}, + [502] = {.lex_state = 96}, + [503] = {.lex_state = 96, .external_lex_state = 25}, + [504] = {.lex_state = 209, .external_lex_state = 20}, + [505] = {.lex_state = 212}, + [506] = {.lex_state = 212, .external_lex_state = 10}, + [507] = {.lex_state = 96}, + [508] = {.lex_state = 96, .external_lex_state = 25}, + [509] = {.lex_state = 144, .external_lex_state = 8}, + [510] = {.lex_state = 102}, + [511] = {.lex_state = 108, .external_lex_state = 21}, + [512] = {.lex_state = 178, .external_lex_state = 21}, + [513] = {.lex_state = 215}, + [514] = {.lex_state = 115}, + [515] = {.lex_state = 178, .external_lex_state = 21}, + [516] = {.lex_state = 178, .external_lex_state = 21}, + [517] = {.lex_state = 178, .external_lex_state = 21}, + [518] = {.lex_state = 85}, + [519] = {.lex_state = 221, .external_lex_state = 7}, + [520] = {.lex_state = 223, .external_lex_state = 18}, + [521] = {.lex_state = 223, .external_lex_state = 18}, + [522] = {.lex_state = 85}, + [523] = {.lex_state = 78}, + [524] = {.lex_state = 85}, + [525] = {.lex_state = 108, .external_lex_state = 4}, + [526] = {.lex_state = 102}, + [527] = {.lex_state = 108, .external_lex_state = 6}, + [528] = {.lex_state = 178, .external_lex_state = 6}, + [529] = {.lex_state = 215}, + [530] = {.lex_state = 115}, + [531] = {.lex_state = 178, .external_lex_state = 6}, + [532] = {.lex_state = 178, .external_lex_state = 6}, + [533] = {.lex_state = 178, .external_lex_state = 6}, + [534] = {.lex_state = 85}, + [535] = {.lex_state = 221, .external_lex_state = 7}, + [536] = {.lex_state = 223, .external_lex_state = 18}, + [537] = {.lex_state = 223, .external_lex_state = 18}, + [538] = {.lex_state = 85}, + [539] = {.lex_state = 78}, + [540] = {.lex_state = 85}, + [541] = {.lex_state = 108, .external_lex_state = 5}, + [542] = {.lex_state = 102}, + [543] = {.lex_state = 102, .external_lex_state = 22}, + [544] = {.lex_state = 102, .external_lex_state = 22}, + [545] = {.lex_state = 215}, + [546] = {.lex_state = 115}, + [547] = {.lex_state = 102, .external_lex_state = 22}, + [548] = {.lex_state = 102, .external_lex_state = 22}, + [549] = {.lex_state = 102, .external_lex_state = 22}, + [550] = {.lex_state = 85}, + [551] = {.lex_state = 221, .external_lex_state = 7}, + [552] = {.lex_state = 223, .external_lex_state = 18}, + [553] = {.lex_state = 223, .external_lex_state = 18}, + [554] = {.lex_state = 85}, + [555] = {.lex_state = 78}, + [556] = {.lex_state = 85}, + [557] = {.lex_state = 142, .external_lex_state = 6}, + [558] = {.lex_state = 112, .external_lex_state = 6}, + [559] = {.lex_state = 115, .external_lex_state = 10}, + [560] = {.lex_state = 142, .external_lex_state = 6}, + [561] = {.lex_state = 115, .external_lex_state = 10}, + [562] = {.lex_state = 115, .external_lex_state = 10}, + [563] = {.lex_state = 115}, + [564] = {.lex_state = 85}, + [565] = {.lex_state = 221, .external_lex_state = 7}, + [566] = {.lex_state = 223, .external_lex_state = 18}, + [567] = {.lex_state = 223, .external_lex_state = 18}, + [568] = {.lex_state = 85}, + [569] = {.lex_state = 78}, + [570] = {.lex_state = 215}, + [571] = {.lex_state = 115}, + [572] = {.lex_state = 102}, + [573] = {.lex_state = 260, .external_lex_state = 18}, + [574] = {.lex_state = 85}, + [575] = {.lex_state = 223, .external_lex_state = 18}, + [576] = {.lex_state = 223, .external_lex_state = 18}, + [577] = {.lex_state = 142, .external_lex_state = 6}, + [578] = {.lex_state = 262, .external_lex_state = 29}, + [579] = {.lex_state = 115}, + [580] = {.lex_state = 122}, + [581] = {.lex_state = 262, .external_lex_state = 29}, + [582] = {.lex_state = 122, .external_lex_state = 7}, + [583] = {.lex_state = 262, .external_lex_state = 30}, + [584] = {.lex_state = 78, .external_lex_state = 2}, + [585] = {.lex_state = 78, .external_lex_state = 2}, + [586] = {.lex_state = 78, .external_lex_state = 2}, + [587] = {.lex_state = 262, .external_lex_state = 18}, + [588] = {.lex_state = 142, .external_lex_state = 6}, + [589] = {.lex_state = 262, .external_lex_state = 30}, + [590] = {.lex_state = 262, .external_lex_state = 18}, + [591] = {.lex_state = 142, .external_lex_state = 6}, + [592] = {.lex_state = 144, .external_lex_state = 8}, + [593] = {.lex_state = 85}, + [594] = {.lex_state = 108, .external_lex_state = 21}, + [595] = {.lex_state = 108, .external_lex_state = 21}, + [596] = {.lex_state = 85}, + [597] = {.lex_state = 108, .external_lex_state = 4}, + [598] = {.lex_state = 108, .external_lex_state = 6}, + [599] = {.lex_state = 108, .external_lex_state = 6}, + [600] = {.lex_state = 108, .external_lex_state = 5}, + [601] = {.lex_state = 112, .external_lex_state = 6}, + [602] = {.lex_state = 78}, + [603] = {.lex_state = 78, .external_lex_state = 2}, + [604] = {.lex_state = 78, .external_lex_state = 2}, + [605] = {.lex_state = 78, .external_lex_state = 2}, + [606] = {.lex_state = 102}, + [607] = {.lex_state = 102}, + [608] = {.lex_state = 146, .external_lex_state = 9}, + [609] = {.lex_state = 227, .external_lex_state = 5}, + [610] = {.lex_state = 235, .external_lex_state = 25}, + [611] = {.lex_state = 112, .external_lex_state = 6}, + [612] = {.lex_state = 112, .external_lex_state = 6}, + [613] = {.lex_state = 112, .external_lex_state = 5}, + [614] = {.lex_state = 227, .external_lex_state = 5}, + [615] = {.lex_state = 140, .external_lex_state = 4}, + [616] = {.lex_state = 112, .external_lex_state = 5}, + [617] = {.lex_state = 142, .external_lex_state = 6}, + [618] = {.lex_state = 78}, + [619] = {.lex_state = 229, .external_lex_state = 9}, + [620] = {.lex_state = 122}, + [621] = {.lex_state = 122, .external_lex_state = 7}, + [622] = {.lex_state = 78, .external_lex_state = 2}, + [623] = {.lex_state = 78, .external_lex_state = 2}, + [624] = {.lex_state = 96, .external_lex_state = 23}, + [625] = {.lex_state = 102}, + [626] = {.lex_state = 136, .external_lex_state = 5}, + [627] = {.lex_state = 140, .external_lex_state = 4}, + [628] = {.lex_state = 136, .external_lex_state = 5}, + [629] = {.lex_state = 140, .external_lex_state = 4}, + [630] = {.lex_state = 136, .external_lex_state = 6}, + [631] = {.lex_state = 136, .external_lex_state = 6}, + [632] = {.lex_state = 186, .external_lex_state = 5}, + [633] = {.lex_state = 186, .external_lex_state = 5}, + [634] = {.lex_state = 136, .external_lex_state = 6}, + [635] = {.lex_state = 136, .external_lex_state = 6}, + [636] = {.lex_state = 186, .external_lex_state = 5}, + [637] = {.lex_state = 231, .external_lex_state = 2}, + [638] = {.lex_state = 136, .external_lex_state = 5}, + [639] = {.lex_state = 142, .external_lex_state = 5}, + [640] = {.lex_state = 112, .external_lex_state = 6}, + [641] = {.lex_state = 112, .external_lex_state = 6}, + [642] = {.lex_state = 112, .external_lex_state = 5}, + [643] = {.lex_state = 231, .external_lex_state = 2}, + [644] = {.lex_state = 233, .external_lex_state = 9}, + [645] = {.lex_state = 106, .external_lex_state = 2}, + [646] = {.lex_state = 108, .external_lex_state = 4}, + [647] = {.lex_state = 108, .external_lex_state = 5}, + [648] = {.lex_state = 136, .external_lex_state = 5}, + [649] = {.lex_state = 112, .external_lex_state = 5}, + [650] = {.lex_state = 140, .external_lex_state = 4}, + [651] = {.lex_state = 102, .external_lex_state = 2}, + [652] = {.lex_state = 112, .external_lex_state = 5}, + [653] = {.lex_state = 237, .external_lex_state = 20}, + [654] = {.lex_state = 264, .external_lex_state = 10}, + [655] = {.lex_state = 237, .external_lex_state = 19}, + [656] = {.lex_state = 237, .external_lex_state = 20}, + [657] = {.lex_state = 264, .external_lex_state = 10}, + [658] = {.lex_state = 209, .external_lex_state = 20}, + [659] = {.lex_state = 184, .external_lex_state = 4}, + [660] = {.lex_state = 239, .external_lex_state = 10}, + [661] = {.lex_state = 115}, + [662] = {.lex_state = 122}, + [663] = {.lex_state = 239, .external_lex_state = 10}, + [664] = {.lex_state = 122, .external_lex_state = 7}, + [665] = {.lex_state = 78, .external_lex_state = 2}, + [666] = {.lex_state = 78, .external_lex_state = 2}, + [667] = {.lex_state = 78, .external_lex_state = 2}, + [668] = {.lex_state = 239}, + [669] = {.lex_state = 102}, + [670] = {.lex_state = 140, .external_lex_state = 21}, + [671] = {.lex_state = 184, .external_lex_state = 21}, + [672] = {.lex_state = 215}, + [673] = {.lex_state = 115}, + [674] = {.lex_state = 184, .external_lex_state = 21}, + [675] = {.lex_state = 184, .external_lex_state = 21}, + [676] = {.lex_state = 184, .external_lex_state = 21}, + [677] = {.lex_state = 85}, + [678] = {.lex_state = 221, .external_lex_state = 7}, + [679] = {.lex_state = 223, .external_lex_state = 18}, + [680] = {.lex_state = 223, .external_lex_state = 18}, + [681] = {.lex_state = 85}, + [682] = {.lex_state = 78}, + [683] = {.lex_state = 85}, + [684] = {.lex_state = 266}, + [685] = {.lex_state = 242, .external_lex_state = 9}, + [686] = {.lex_state = 245}, + [687] = {.lex_state = 242, .external_lex_state = 9}, + [688] = {.lex_state = 102}, + [689] = {.lex_state = 242, .external_lex_state = 14}, + [690] = {.lex_state = 242, .external_lex_state = 14}, + [691] = {.lex_state = 215}, + [692] = {.lex_state = 115}, + [693] = {.lex_state = 242, .external_lex_state = 14}, + [694] = {.lex_state = 242, .external_lex_state = 14}, + [695] = {.lex_state = 242, .external_lex_state = 14}, + [696] = {.lex_state = 85}, + [697] = {.lex_state = 221, .external_lex_state = 7}, + [698] = {.lex_state = 223, .external_lex_state = 18}, + [699] = {.lex_state = 223, .external_lex_state = 18}, + [700] = {.lex_state = 85}, + [701] = {.lex_state = 78}, + [702] = {.lex_state = 85}, + [703] = {.lex_state = 146, .external_lex_state = 9}, + [704] = {.lex_state = 96}, + [705] = {.lex_state = 96, .external_lex_state = 25}, + [706] = {.lex_state = 242, .external_lex_state = 9}, + [707] = {.lex_state = 268, .external_lex_state = 14}, + [708] = {.lex_state = 115}, + [709] = {.lex_state = 122}, + [710] = {.lex_state = 268, .external_lex_state = 14}, + [711] = {.lex_state = 122, .external_lex_state = 7}, + [712] = {.lex_state = 78, .external_lex_state = 2}, + [713] = {.lex_state = 78, .external_lex_state = 2}, + [714] = {.lex_state = 78, .external_lex_state = 2}, + [715] = {.lex_state = 268, .external_lex_state = 9}, + [716] = {.lex_state = 186, .external_lex_state = 5}, + [717] = {.lex_state = 245}, + [718] = {.lex_state = 245}, + [719] = {.lex_state = 102}, + [720] = {.lex_state = 245, .external_lex_state = 10}, + [721] = {.lex_state = 270, .external_lex_state = 10}, + [722] = {.lex_state = 215}, + [723] = {.lex_state = 115}, + [724] = {.lex_state = 270, .external_lex_state = 10}, + [725] = {.lex_state = 270, .external_lex_state = 10}, + [726] = {.lex_state = 270, .external_lex_state = 10}, + [727] = {.lex_state = 85}, + [728] = {.lex_state = 221, .external_lex_state = 7}, + [729] = {.lex_state = 223, .external_lex_state = 18}, + [730] = {.lex_state = 223, .external_lex_state = 18}, + [731] = {.lex_state = 85}, + [732] = {.lex_state = 78}, + [733] = {.lex_state = 85}, + [734] = {.lex_state = 247}, + [735] = {.lex_state = 96}, + [736] = {.lex_state = 96, .external_lex_state = 25}, + [737] = {.lex_state = 245}, + [738] = {.lex_state = 247, .external_lex_state = 10}, + [739] = {.lex_state = 153, .external_lex_state = 10}, + [740] = {.lex_state = 247, .external_lex_state = 10}, + [741] = {.lex_state = 215}, + [742] = {.lex_state = 260, .external_lex_state = 18}, + [743] = {.lex_state = 85}, + [744] = {.lex_state = 223, .external_lex_state = 18}, + [745] = {.lex_state = 223, .external_lex_state = 18}, + [746] = {.lex_state = 247, .external_lex_state = 10}, + [747] = {.lex_state = 262, .external_lex_state = 30}, + [748] = {.lex_state = 262, .external_lex_state = 18}, + [749] = {.lex_state = 247, .external_lex_state = 10}, + [750] = {.lex_state = 262, .external_lex_state = 30}, + [751] = {.lex_state = 262, .external_lex_state = 18}, + [752] = {.lex_state = 247, .external_lex_state = 10}, + [753] = {.lex_state = 247, .external_lex_state = 10}, + [754] = {.lex_state = 247}, + [755] = {.lex_state = 247}, + [756] = {.lex_state = 140, .external_lex_state = 11}, + [757] = {.lex_state = 239}, + [758] = {.lex_state = 140, .external_lex_state = 26}, + [759] = {.lex_state = 115}, + [760] = {.lex_state = 122}, + [761] = {.lex_state = 140, .external_lex_state = 26}, + [762] = {.lex_state = 122, .external_lex_state = 7}, + [763] = {.lex_state = 78, .external_lex_state = 2}, + [764] = {.lex_state = 78, .external_lex_state = 2}, + [765] = {.lex_state = 78, .external_lex_state = 2}, + [766] = {.lex_state = 146, .external_lex_state = 9}, + [767] = {.lex_state = 242, .external_lex_state = 9}, + [768] = {.lex_state = 102}, + [769] = {.lex_state = 102}, + [770] = {.lex_state = 136, .external_lex_state = 12}, + [771] = {.lex_state = 249, .external_lex_state = 2}, + [772] = {.lex_state = 136, .external_lex_state = 12}, + [773] = {.lex_state = 255, .external_lex_state = 2}, + [774] = {.lex_state = 146, .external_lex_state = 9}, + [775] = {.lex_state = 149}, + [776] = {.lex_state = 146, .external_lex_state = 9}, + [777] = {.lex_state = 149}, + [778] = {.lex_state = 85}, + [779] = {.lex_state = 136, .external_lex_state = 12}, + [780] = {.lex_state = 136, .external_lex_state = 12}, + [781] = {.lex_state = 136, .external_lex_state = 12}, + [782] = {.lex_state = 144, .external_lex_state = 8}, + [783] = {.lex_state = 102}, + [784] = {.lex_state = 108, .external_lex_state = 26}, + [785] = {.lex_state = 108, .external_lex_state = 26}, + [786] = {.lex_state = 215}, + [787] = {.lex_state = 115}, + [788] = {.lex_state = 108, .external_lex_state = 26}, + [789] = {.lex_state = 108, .external_lex_state = 26}, + [790] = {.lex_state = 108, .external_lex_state = 26}, + [791] = {.lex_state = 85}, + [792] = {.lex_state = 221, .external_lex_state = 7}, + [793] = {.lex_state = 223, .external_lex_state = 18}, + [794] = {.lex_state = 223, .external_lex_state = 18}, + [795] = {.lex_state = 85}, + [796] = {.lex_state = 78}, + [797] = {.lex_state = 85}, + [798] = {.lex_state = 108, .external_lex_state = 11}, + [799] = {.lex_state = 102}, + [800] = {.lex_state = 108, .external_lex_state = 13}, + [801] = {.lex_state = 108, .external_lex_state = 13}, + [802] = {.lex_state = 215}, + [803] = {.lex_state = 115}, + [804] = {.lex_state = 108, .external_lex_state = 13}, + [805] = {.lex_state = 108, .external_lex_state = 13}, + [806] = {.lex_state = 108, .external_lex_state = 13}, + [807] = {.lex_state = 85}, + [808] = {.lex_state = 221, .external_lex_state = 7}, + [809] = {.lex_state = 223, .external_lex_state = 18}, + [810] = {.lex_state = 223, .external_lex_state = 18}, + [811] = {.lex_state = 85}, + [812] = {.lex_state = 78}, + [813] = {.lex_state = 85}, + [814] = {.lex_state = 108, .external_lex_state = 12}, + [815] = {.lex_state = 112, .external_lex_state = 13}, + [816] = {.lex_state = 112, .external_lex_state = 13}, + [817] = {.lex_state = 112, .external_lex_state = 13}, + [818] = {.lex_state = 215}, + [819] = {.lex_state = 260, .external_lex_state = 18}, + [820] = {.lex_state = 85}, + [821] = {.lex_state = 223, .external_lex_state = 18}, + [822] = {.lex_state = 223, .external_lex_state = 18}, + [823] = {.lex_state = 112, .external_lex_state = 13}, + [824] = {.lex_state = 262, .external_lex_state = 30}, + [825] = {.lex_state = 262, .external_lex_state = 18}, + [826] = {.lex_state = 112, .external_lex_state = 13}, + [827] = {.lex_state = 262, .external_lex_state = 30}, + [828] = {.lex_state = 262, .external_lex_state = 18}, + [829] = {.lex_state = 112, .external_lex_state = 13}, + [830] = {.lex_state = 112, .external_lex_state = 13}, + [831] = {.lex_state = 78}, + [832] = {.lex_state = 85}, + [833] = {.lex_state = 186, .external_lex_state = 5}, + [834] = {.lex_state = 106, .external_lex_state = 2}, + [835] = {.lex_state = 273, .external_lex_state = 4}, + [836] = {.lex_state = 273, .external_lex_state = 5}, + [837] = {.lex_state = 279, .external_lex_state = 6}, + [838] = {.lex_state = 115}, + [839] = {.lex_state = 122}, + [840] = {.lex_state = 279, .external_lex_state = 6}, + [841] = {.lex_state = 122, .external_lex_state = 7}, + [842] = {.lex_state = 78, .external_lex_state = 2}, + [843] = {.lex_state = 78, .external_lex_state = 2}, + [844] = {.lex_state = 78, .external_lex_state = 2}, + [845] = {.lex_state = 281, .external_lex_state = 6}, + [846] = {.lex_state = 172}, + [847] = {.lex_state = 283, .external_lex_state = 5}, + [848] = {.lex_state = 279, .external_lex_state = 5}, + [849] = {.lex_state = 285, .external_lex_state = 4}, + [850] = {.lex_state = 85}, + [851] = {.lex_state = 279, .external_lex_state = 5}, + [852] = {.lex_state = 78, .external_lex_state = 2}, + [853] = {.lex_state = 102, .external_lex_state = 2}, + [854] = {.lex_state = 102}, + [855] = {.lex_state = 136, .external_lex_state = 12}, + [856] = {.lex_state = 140, .external_lex_state = 11}, + [857] = {.lex_state = 136, .external_lex_state = 12}, + [858] = {.lex_state = 140, .external_lex_state = 11}, + [859] = {.lex_state = 136, .external_lex_state = 13}, + [860] = {.lex_state = 136, .external_lex_state = 13}, + [861] = {.lex_state = 136, .external_lex_state = 12}, + [862] = {.lex_state = 136, .external_lex_state = 12}, + [863] = {.lex_state = 136, .external_lex_state = 13}, + [864] = {.lex_state = 136, .external_lex_state = 13}, + [865] = {.lex_state = 136, .external_lex_state = 12}, + [866] = {.lex_state = 136, .external_lex_state = 12}, + [867] = {.lex_state = 112, .external_lex_state = 12}, + [868] = {.lex_state = 112, .external_lex_state = 13}, + [869] = {.lex_state = 112, .external_lex_state = 13}, + [870] = {.lex_state = 112, .external_lex_state = 12}, + [871] = {.lex_state = 112, .external_lex_state = 12}, + [872] = {.lex_state = 85}, + [873] = {.lex_state = 186, .external_lex_state = 5}, + [874] = {.lex_state = 78, .external_lex_state = 2}, + [875] = {.lex_state = 287, .external_lex_state = 2}, + [876] = {.lex_state = 106, .external_lex_state = 2}, + [877] = {.lex_state = 289, .external_lex_state = 4}, + [878] = {.lex_state = 289, .external_lex_state = 5}, + [879] = {.lex_state = 299, .external_lex_state = 6}, + [880] = {.lex_state = 115}, + [881] = {.lex_state = 122}, + [882] = {.lex_state = 299, .external_lex_state = 6}, + [883] = {.lex_state = 122, .external_lex_state = 7}, + [884] = {.lex_state = 78, .external_lex_state = 2}, + [885] = {.lex_state = 78, .external_lex_state = 2}, + [886] = {.lex_state = 78, .external_lex_state = 2}, + [887] = {.lex_state = 301, .external_lex_state = 6}, + [888] = {.lex_state = 303}, + [889] = {.lex_state = 303, .external_lex_state = 5}, + [890] = {.lex_state = 303}, + [891] = {.lex_state = 299, .external_lex_state = 5}, + [892] = {.lex_state = 306, .external_lex_state = 4}, + [893] = {.lex_state = 85}, + [894] = {.lex_state = 299, .external_lex_state = 5}, + [895] = {.lex_state = 78, .external_lex_state = 2}, + [896] = {.lex_state = 303}, + [897] = {.lex_state = 102, .external_lex_state = 2}, + [898] = {.lex_state = 149, .external_lex_state = 14}, + [899] = {.lex_state = 308}, + [900] = {.lex_state = 146, .external_lex_state = 9}, + [901] = {.lex_state = 149, .external_lex_state = 14}, + [902] = {.lex_state = 149, .external_lex_state = 14}, + [903] = {.lex_state = 215}, + [904] = {.lex_state = 308}, + [905] = {.lex_state = 146, .external_lex_state = 9}, + [906] = {.lex_state = 260, .external_lex_state = 18}, + [907] = {.lex_state = 85}, + [908] = {.lex_state = 223, .external_lex_state = 18}, + [909] = {.lex_state = 223, .external_lex_state = 18}, + [910] = {.lex_state = 149, .external_lex_state = 14}, + [911] = {.lex_state = 262, .external_lex_state = 30}, + [912] = {.lex_state = 262, .external_lex_state = 18}, + [913] = {.lex_state = 149, .external_lex_state = 14}, + [914] = {.lex_state = 262, .external_lex_state = 30}, + [915] = {.lex_state = 262, .external_lex_state = 18}, + [916] = {.lex_state = 149, .external_lex_state = 14}, + [917] = {.lex_state = 149, .external_lex_state = 14}, + [918] = {.lex_state = 78}, + [919] = {.lex_state = 184, .external_lex_state = 21}, + [920] = {.lex_state = 184, .external_lex_state = 21}, + [921] = {.lex_state = 144, .external_lex_state = 8}, + [922] = {.lex_state = 178, .external_lex_state = 21}, + [923] = {.lex_state = 178, .external_lex_state = 4}, + [924] = {.lex_state = 178, .external_lex_state = 6}, + [925] = {.lex_state = 178, .external_lex_state = 5}, + [926] = {.lex_state = 142, .external_lex_state = 6}, + [927] = {.lex_state = 102}, + [928] = {.lex_state = 182, .external_lex_state = 5}, + [929] = {.lex_state = 184, .external_lex_state = 4}, + [930] = {.lex_state = 182, .external_lex_state = 5}, + [931] = {.lex_state = 184, .external_lex_state = 4}, + [932] = {.lex_state = 182, .external_lex_state = 6}, + [933] = {.lex_state = 182, .external_lex_state = 6}, + [934] = {.lex_state = 182, .external_lex_state = 6}, + [935] = {.lex_state = 182, .external_lex_state = 6}, + [936] = {.lex_state = 182, .external_lex_state = 5}, + [937] = {.lex_state = 142, .external_lex_state = 6}, + [938] = {.lex_state = 142, .external_lex_state = 6}, + [939] = {.lex_state = 142, .external_lex_state = 5}, + [940] = {.lex_state = 142, .external_lex_state = 5}, + [941] = {.lex_state = 207, .external_lex_state = 15}, + [942] = {.lex_state = 239}, + [943] = {.lex_state = 207, .external_lex_state = 27}, + [944] = {.lex_state = 115}, + [945] = {.lex_state = 122}, + [946] = {.lex_state = 207, .external_lex_state = 27}, + [947] = {.lex_state = 122, .external_lex_state = 7}, + [948] = {.lex_state = 78, .external_lex_state = 2}, + [949] = {.lex_state = 78, .external_lex_state = 2}, + [950] = {.lex_state = 78, .external_lex_state = 2}, + [951] = {.lex_state = 146, .external_lex_state = 9}, + [952] = {.lex_state = 242, .external_lex_state = 9}, + [953] = {.lex_state = 102}, + [954] = {.lex_state = 102}, + [955] = {.lex_state = 205, .external_lex_state = 16}, + [956] = {.lex_state = 249, .external_lex_state = 2}, + [957] = {.lex_state = 205, .external_lex_state = 16}, + [958] = {.lex_state = 255, .external_lex_state = 2}, + [959] = {.lex_state = 146, .external_lex_state = 9}, + [960] = {.lex_state = 149}, + [961] = {.lex_state = 146, .external_lex_state = 9}, + [962] = {.lex_state = 149}, + [963] = {.lex_state = 85}, + [964] = {.lex_state = 205, .external_lex_state = 16}, + [965] = {.lex_state = 205, .external_lex_state = 16}, + [966] = {.lex_state = 205, .external_lex_state = 16}, + [967] = {.lex_state = 144, .external_lex_state = 8}, + [968] = {.lex_state = 102}, + [969] = {.lex_state = 199, .external_lex_state = 27}, + [970] = {.lex_state = 199, .external_lex_state = 27}, + [971] = {.lex_state = 215}, + [972] = {.lex_state = 115}, + [973] = {.lex_state = 199, .external_lex_state = 27}, + [974] = {.lex_state = 199, .external_lex_state = 27}, + [975] = {.lex_state = 199, .external_lex_state = 27}, + [976] = {.lex_state = 85}, + [977] = {.lex_state = 221, .external_lex_state = 7}, + [978] = {.lex_state = 223, .external_lex_state = 18}, + [979] = {.lex_state = 223, .external_lex_state = 18}, + [980] = {.lex_state = 85}, + [981] = {.lex_state = 78}, + [982] = {.lex_state = 85}, + [983] = {.lex_state = 199, .external_lex_state = 15}, + [984] = {.lex_state = 102}, + [985] = {.lex_state = 199, .external_lex_state = 17}, + [986] = {.lex_state = 199, .external_lex_state = 17}, + [987] = {.lex_state = 215}, + [988] = {.lex_state = 115}, + [989] = {.lex_state = 199, .external_lex_state = 17}, + [990] = {.lex_state = 199, .external_lex_state = 17}, + [991] = {.lex_state = 199, .external_lex_state = 17}, + [992] = {.lex_state = 85}, + [993] = {.lex_state = 221, .external_lex_state = 7}, + [994] = {.lex_state = 223, .external_lex_state = 18}, + [995] = {.lex_state = 223, .external_lex_state = 18}, + [996] = {.lex_state = 85}, + [997] = {.lex_state = 78}, + [998] = {.lex_state = 85}, + [999] = {.lex_state = 199, .external_lex_state = 16}, + [1000] = {.lex_state = 201, .external_lex_state = 17}, + [1001] = {.lex_state = 201, .external_lex_state = 17}, + [1002] = {.lex_state = 201, .external_lex_state = 17}, + [1003] = {.lex_state = 215}, + [1004] = {.lex_state = 260, .external_lex_state = 18}, + [1005] = {.lex_state = 85}, + [1006] = {.lex_state = 223, .external_lex_state = 18}, + [1007] = {.lex_state = 223, .external_lex_state = 18}, + [1008] = {.lex_state = 201, .external_lex_state = 17}, + [1009] = {.lex_state = 262, .external_lex_state = 30}, + [1010] = {.lex_state = 262, .external_lex_state = 18}, + [1011] = {.lex_state = 201, .external_lex_state = 17}, + [1012] = {.lex_state = 262, .external_lex_state = 30}, + [1013] = {.lex_state = 262, .external_lex_state = 18}, + [1014] = {.lex_state = 201, .external_lex_state = 17}, + [1015] = {.lex_state = 201, .external_lex_state = 17}, + [1016] = {.lex_state = 78}, + [1017] = {.lex_state = 258, .external_lex_state = 28}, + [1018] = {.lex_state = 96, .external_lex_state = 23}, + [1019] = {.lex_state = 102}, + [1020] = {.lex_state = 205, .external_lex_state = 16}, + [1021] = {.lex_state = 207, .external_lex_state = 15}, + [1022] = {.lex_state = 205, .external_lex_state = 16}, + [1023] = {.lex_state = 207, .external_lex_state = 15}, + [1024] = {.lex_state = 205, .external_lex_state = 17}, + [1025] = {.lex_state = 205, .external_lex_state = 17}, + [1026] = {.lex_state = 205, .external_lex_state = 16}, + [1027] = {.lex_state = 205, .external_lex_state = 16}, + [1028] = {.lex_state = 205, .external_lex_state = 17}, + [1029] = {.lex_state = 205, .external_lex_state = 17}, + [1030] = {.lex_state = 205, .external_lex_state = 16}, + [1031] = {.lex_state = 104, .external_lex_state = 3}, + [1032] = {.lex_state = 205, .external_lex_state = 16}, + [1033] = {.lex_state = 201, .external_lex_state = 16}, + [1034] = {.lex_state = 201, .external_lex_state = 17}, + [1035] = {.lex_state = 201, .external_lex_state = 17}, + [1036] = {.lex_state = 201, .external_lex_state = 16}, + [1037] = {.lex_state = 104, .external_lex_state = 3}, + [1038] = {.lex_state = 258, .external_lex_state = 28}, + [1039] = {.lex_state = 201, .external_lex_state = 16}, + [1040] = {.lex_state = 102, .external_lex_state = 2}, + [1041] = {.lex_state = 239}, + [1042] = {.lex_state = 102, .external_lex_state = 22}, + [1043] = {.lex_state = 102, .external_lex_state = 22}, + [1044] = {.lex_state = 209, .external_lex_state = 20}, + [1045] = {.lex_state = 209, .external_lex_state = 19}, + [1046] = {.lex_state = 209, .external_lex_state = 19}, + [1047] = {.lex_state = 209, .external_lex_state = 19}, + [1048] = {.lex_state = 215}, + [1049] = {.lex_state = 260, .external_lex_state = 18}, + [1050] = {.lex_state = 85}, + [1051] = {.lex_state = 223, .external_lex_state = 18}, + [1052] = {.lex_state = 223, .external_lex_state = 18}, + [1053] = {.lex_state = 209, .external_lex_state = 19}, + [1054] = {.lex_state = 262, .external_lex_state = 30}, + [1055] = {.lex_state = 262, .external_lex_state = 18}, + [1056] = {.lex_state = 209, .external_lex_state = 19}, + [1057] = {.lex_state = 262, .external_lex_state = 30}, + [1058] = {.lex_state = 262, .external_lex_state = 18}, + [1059] = {.lex_state = 209, .external_lex_state = 19}, + [1060] = {.lex_state = 209, .external_lex_state = 19}, + [1061] = {.lex_state = 209, .external_lex_state = 20}, + [1062] = {.lex_state = 209, .external_lex_state = 20}, + [1063] = {.lex_state = 212, .external_lex_state = 10}, + [1064] = {.lex_state = 178, .external_lex_state = 4}, + [1065] = {.lex_state = 239}, + [1066] = {.lex_state = 108, .external_lex_state = 21}, + [1067] = {.lex_state = 108, .external_lex_state = 21}, + [1068] = {.lex_state = 178, .external_lex_state = 21}, + [1069] = {.lex_state = 108, .external_lex_state = 21}, + [1070] = {.lex_state = 178, .external_lex_state = 21}, + [1071] = {.lex_state = 215}, + [1072] = {.lex_state = 260, .external_lex_state = 18}, + [1073] = {.lex_state = 85}, + [1074] = {.lex_state = 223, .external_lex_state = 18}, + [1075] = {.lex_state = 223, .external_lex_state = 18}, + [1076] = {.lex_state = 178, .external_lex_state = 21}, + [1077] = {.lex_state = 262, .external_lex_state = 30}, + [1078] = {.lex_state = 262, .external_lex_state = 18}, + [1079] = {.lex_state = 178, .external_lex_state = 21}, + [1080] = {.lex_state = 262, .external_lex_state = 30}, + [1081] = {.lex_state = 262, .external_lex_state = 18}, + [1082] = {.lex_state = 178, .external_lex_state = 21}, + [1083] = {.lex_state = 178, .external_lex_state = 21}, + [1084] = {.lex_state = 178, .external_lex_state = 6}, + [1085] = {.lex_state = 108, .external_lex_state = 6}, + [1086] = {.lex_state = 178, .external_lex_state = 6}, + [1087] = {.lex_state = 215}, + [1088] = {.lex_state = 260, .external_lex_state = 18}, + [1089] = {.lex_state = 85}, + [1090] = {.lex_state = 223, .external_lex_state = 18}, + [1091] = {.lex_state = 223, .external_lex_state = 18}, + [1092] = {.lex_state = 178, .external_lex_state = 6}, + [1093] = {.lex_state = 262, .external_lex_state = 30}, + [1094] = {.lex_state = 262, .external_lex_state = 18}, + [1095] = {.lex_state = 178, .external_lex_state = 6}, + [1096] = {.lex_state = 262, .external_lex_state = 30}, + [1097] = {.lex_state = 262, .external_lex_state = 18}, + [1098] = {.lex_state = 178, .external_lex_state = 6}, + [1099] = {.lex_state = 178, .external_lex_state = 6}, + [1100] = {.lex_state = 102, .external_lex_state = 22}, + [1101] = {.lex_state = 102, .external_lex_state = 22}, + [1102] = {.lex_state = 102, .external_lex_state = 22}, + [1103] = {.lex_state = 215}, + [1104] = {.lex_state = 260, .external_lex_state = 18}, + [1105] = {.lex_state = 85}, + [1106] = {.lex_state = 223, .external_lex_state = 18}, + [1107] = {.lex_state = 223, .external_lex_state = 18}, + [1108] = {.lex_state = 102, .external_lex_state = 22}, + [1109] = {.lex_state = 262, .external_lex_state = 30}, + [1110] = {.lex_state = 262, .external_lex_state = 18}, + [1111] = {.lex_state = 102, .external_lex_state = 22}, + [1112] = {.lex_state = 262, .external_lex_state = 30}, + [1113] = {.lex_state = 262, .external_lex_state = 18}, + [1114] = {.lex_state = 102, .external_lex_state = 22}, + [1115] = {.lex_state = 102, .external_lex_state = 22}, + [1116] = {.lex_state = 115}, + [1117] = {.lex_state = 260, .external_lex_state = 18}, + [1118] = {.lex_state = 85}, + [1119] = {.lex_state = 223, .external_lex_state = 18}, + [1120] = {.lex_state = 223, .external_lex_state = 18}, + [1121] = {.lex_state = 115, .external_lex_state = 10}, + [1122] = {.lex_state = 262, .external_lex_state = 30}, + [1123] = {.lex_state = 262, .external_lex_state = 18}, + [1124] = {.lex_state = 115, .external_lex_state = 10}, + [1125] = {.lex_state = 262, .external_lex_state = 30}, + [1126] = {.lex_state = 262, .external_lex_state = 18}, + [1127] = {.lex_state = 115, .external_lex_state = 10}, + [1128] = {.lex_state = 142, .external_lex_state = 6}, + [1129] = {.lex_state = 215}, + [1130] = {.lex_state = 237, .external_lex_state = 19}, + [1131] = {.lex_state = 237, .external_lex_state = 19}, + [1132] = {.lex_state = 237, .external_lex_state = 19}, + [1133] = {.lex_state = 142, .external_lex_state = 6}, + [1134] = {.lex_state = 92, .external_lex_state = 29}, + [1135] = {.lex_state = 115}, + [1136] = {.lex_state = 122}, + [1137] = {.lex_state = 92, .external_lex_state = 29}, + [1138] = {.lex_state = 122, .external_lex_state = 7}, + [1139] = {.lex_state = 78, .external_lex_state = 2}, + [1140] = {.lex_state = 78, .external_lex_state = 2}, + [1141] = {.lex_state = 78, .external_lex_state = 2}, + [1142] = {.lex_state = 92, .external_lex_state = 18}, + [1143] = {.lex_state = 260, .external_lex_state = 18}, + [1144] = {.lex_state = 142, .external_lex_state = 6}, + [1145] = {.lex_state = 262, .external_lex_state = 30}, + [1146] = {.lex_state = 262, .external_lex_state = 18}, + [1147] = {.lex_state = 262, .external_lex_state = 30}, + [1148] = {.lex_state = 262, .external_lex_state = 18}, + [1149] = {.lex_state = 102}, + [1150] = {.lex_state = 262, .external_lex_state = 29}, + [1151] = {.lex_state = 262, .external_lex_state = 29}, + [1152] = {.lex_state = 215}, + [1153] = {.lex_state = 115}, + [1154] = {.lex_state = 262, .external_lex_state = 29}, + [1155] = {.lex_state = 262, .external_lex_state = 29}, + [1156] = {.lex_state = 262, .external_lex_state = 29}, + [1157] = {.lex_state = 85}, + [1158] = {.lex_state = 221, .external_lex_state = 7}, + [1159] = {.lex_state = 223, .external_lex_state = 18}, + [1160] = {.lex_state = 223, .external_lex_state = 18}, + [1161] = {.lex_state = 262, .external_lex_state = 18}, + [1162] = {.lex_state = 142, .external_lex_state = 6}, + [1163] = {.lex_state = 262, .external_lex_state = 18}, + [1164] = {.lex_state = 85}, + [1165] = {.lex_state = 78}, + [1166] = {.lex_state = 85}, + [1167] = {.lex_state = 262, .external_lex_state = 18}, + [1168] = {.lex_state = 262, .external_lex_state = 18}, + [1169] = {.lex_state = 140, .external_lex_state = 21}, + [1170] = {.lex_state = 140, .external_lex_state = 21}, + [1171] = {.lex_state = 144, .external_lex_state = 8}, + [1172] = {.lex_state = 108, .external_lex_state = 21}, + [1173] = {.lex_state = 108, .external_lex_state = 4}, + [1174] = {.lex_state = 108, .external_lex_state = 6}, + [1175] = {.lex_state = 108, .external_lex_state = 5}, + [1176] = {.lex_state = 112, .external_lex_state = 6}, + [1177] = {.lex_state = 102}, + [1178] = {.lex_state = 227, .external_lex_state = 5}, + [1179] = {.lex_state = 140, .external_lex_state = 4}, + [1180] = {.lex_state = 227, .external_lex_state = 5}, + [1181] = {.lex_state = 140, .external_lex_state = 4}, + [1182] = {.lex_state = 227, .external_lex_state = 6}, + [1183] = {.lex_state = 227, .external_lex_state = 6}, + [1184] = {.lex_state = 227, .external_lex_state = 6}, + [1185] = {.lex_state = 227, .external_lex_state = 6}, + [1186] = {.lex_state = 78, .external_lex_state = 2}, + [1187] = {.lex_state = 227, .external_lex_state = 5}, + [1188] = {.lex_state = 112, .external_lex_state = 6}, + [1189] = {.lex_state = 112, .external_lex_state = 6}, + [1190] = {.lex_state = 112, .external_lex_state = 5}, + [1191] = {.lex_state = 78, .external_lex_state = 2}, + [1192] = {.lex_state = 146, .external_lex_state = 9}, + [1193] = {.lex_state = 112, .external_lex_state = 5}, + [1194] = {.lex_state = 186, .external_lex_state = 5}, + [1195] = {.lex_state = 96, .external_lex_state = 23}, + [1196] = {.lex_state = 96, .external_lex_state = 23}, + [1197] = {.lex_state = 85}, + [1198] = {.lex_state = 221, .external_lex_state = 7}, + [1199] = {.lex_state = 223, .external_lex_state = 18}, + [1200] = {.lex_state = 223, .external_lex_state = 18}, + [1201] = {.lex_state = 85}, + [1202] = {.lex_state = 78}, + [1203] = {.lex_state = 229, .external_lex_state = 9}, + [1204] = {.lex_state = 96, .external_lex_state = 23}, + [1205] = {.lex_state = 136, .external_lex_state = 6}, + [1206] = {.lex_state = 136, .external_lex_state = 6}, + [1207] = {.lex_state = 186, .external_lex_state = 5}, + [1208] = {.lex_state = 136, .external_lex_state = 6}, + [1209] = {.lex_state = 231, .external_lex_state = 2}, + [1210] = {.lex_state = 108, .external_lex_state = 4}, + [1211] = {.lex_state = 108, .external_lex_state = 5}, + [1212] = {.lex_state = 78}, + [1213] = {.lex_state = 78, .external_lex_state = 2}, + [1214] = {.lex_state = 78, .external_lex_state = 2}, + [1215] = {.lex_state = 78, .external_lex_state = 2}, + [1216] = {.lex_state = 102}, + [1217] = {.lex_state = 102}, + [1218] = {.lex_state = 146, .external_lex_state = 9}, + [1219] = {.lex_state = 136, .external_lex_state = 5}, + [1220] = {.lex_state = 112, .external_lex_state = 5}, + [1221] = {.lex_state = 112, .external_lex_state = 5}, + [1222] = {.lex_state = 264, .external_lex_state = 10}, + [1223] = {.lex_state = 85}, + [1224] = {.lex_state = 237, .external_lex_state = 19}, + [1225] = {.lex_state = 264, .external_lex_state = 10}, + [1226] = {.lex_state = 85}, + [1227] = {.lex_state = 102}, + [1228] = {.lex_state = 239, .external_lex_state = 10}, + [1229] = {.lex_state = 239, .external_lex_state = 10}, + [1230] = {.lex_state = 215}, + [1231] = {.lex_state = 115}, + [1232] = {.lex_state = 239, .external_lex_state = 10}, + [1233] = {.lex_state = 239, .external_lex_state = 10}, + [1234] = {.lex_state = 239, .external_lex_state = 10}, + [1235] = {.lex_state = 85}, + [1236] = {.lex_state = 221, .external_lex_state = 7}, + [1237] = {.lex_state = 223, .external_lex_state = 18}, + [1238] = {.lex_state = 223, .external_lex_state = 18}, + [1239] = {.lex_state = 85}, + [1240] = {.lex_state = 78}, + [1241] = {.lex_state = 85}, + [1242] = {.lex_state = 184, .external_lex_state = 4}, + [1243] = {.lex_state = 239}, + [1244] = {.lex_state = 184, .external_lex_state = 21}, + [1245] = {.lex_state = 140, .external_lex_state = 21}, + [1246] = {.lex_state = 184, .external_lex_state = 21}, + [1247] = {.lex_state = 215}, + [1248] = {.lex_state = 260, .external_lex_state = 18}, + [1249] = {.lex_state = 85}, + [1250] = {.lex_state = 223, .external_lex_state = 18}, + [1251] = {.lex_state = 223, .external_lex_state = 18}, + [1252] = {.lex_state = 184, .external_lex_state = 21}, + [1253] = {.lex_state = 262, .external_lex_state = 30}, + [1254] = {.lex_state = 262, .external_lex_state = 18}, + [1255] = {.lex_state = 184, .external_lex_state = 21}, + [1256] = {.lex_state = 262, .external_lex_state = 30}, + [1257] = {.lex_state = 262, .external_lex_state = 18}, + [1258] = {.lex_state = 184, .external_lex_state = 21}, + [1259] = {.lex_state = 184, .external_lex_state = 21}, + [1260] = {.lex_state = 311}, + [1261] = {.lex_state = 153}, + [1262] = {.lex_state = 266}, + [1263] = {.lex_state = 242, .external_lex_state = 9}, + [1264] = {.lex_state = 242, .external_lex_state = 14}, + [1265] = {.lex_state = 242, .external_lex_state = 14}, + [1266] = {.lex_state = 242, .external_lex_state = 14}, + [1267] = {.lex_state = 215}, + [1268] = {.lex_state = 260, .external_lex_state = 18}, + [1269] = {.lex_state = 85}, + [1270] = {.lex_state = 223, .external_lex_state = 18}, + [1271] = {.lex_state = 223, .external_lex_state = 18}, + [1272] = {.lex_state = 242, .external_lex_state = 14}, + [1273] = {.lex_state = 262, .external_lex_state = 30}, + [1274] = {.lex_state = 262, .external_lex_state = 18}, + [1275] = {.lex_state = 242, .external_lex_state = 14}, + [1276] = {.lex_state = 262, .external_lex_state = 30}, + [1277] = {.lex_state = 262, .external_lex_state = 18}, + [1278] = {.lex_state = 242, .external_lex_state = 14}, + [1279] = {.lex_state = 242, .external_lex_state = 14}, + [1280] = {.lex_state = 242, .external_lex_state = 9}, + [1281] = {.lex_state = 242, .external_lex_state = 9}, + [1282] = {.lex_state = 242, .external_lex_state = 9}, + [1283] = {.lex_state = 102}, + [1284] = {.lex_state = 268, .external_lex_state = 14}, + [1285] = {.lex_state = 268, .external_lex_state = 14}, + [1286] = {.lex_state = 215}, + [1287] = {.lex_state = 115}, + [1288] = {.lex_state = 268, .external_lex_state = 14}, + [1289] = {.lex_state = 268, .external_lex_state = 14}, + [1290] = {.lex_state = 268, .external_lex_state = 14}, + [1291] = {.lex_state = 85}, + [1292] = {.lex_state = 221, .external_lex_state = 7}, + [1293] = {.lex_state = 223, .external_lex_state = 18}, + [1294] = {.lex_state = 223, .external_lex_state = 18}, + [1295] = {.lex_state = 85}, + [1296] = {.lex_state = 78}, + [1297] = {.lex_state = 85}, + [1298] = {.lex_state = 102}, + [1299] = {.lex_state = 268, .external_lex_state = 9}, + [1300] = {.lex_state = 245}, + [1301] = {.lex_state = 270, .external_lex_state = 10}, + [1302] = {.lex_state = 245, .external_lex_state = 10}, + [1303] = {.lex_state = 270, .external_lex_state = 10}, + [1304] = {.lex_state = 215}, + [1305] = {.lex_state = 260, .external_lex_state = 18}, + [1306] = {.lex_state = 85}, + [1307] = {.lex_state = 223, .external_lex_state = 18}, + [1308] = {.lex_state = 223, .external_lex_state = 18}, + [1309] = {.lex_state = 270, .external_lex_state = 10}, + [1310] = {.lex_state = 262, .external_lex_state = 30}, + [1311] = {.lex_state = 262, .external_lex_state = 18}, + [1312] = {.lex_state = 270, .external_lex_state = 10}, + [1313] = {.lex_state = 262, .external_lex_state = 30}, + [1314] = {.lex_state = 262, .external_lex_state = 18}, + [1315] = {.lex_state = 270, .external_lex_state = 10}, + [1316] = {.lex_state = 270, .external_lex_state = 10}, + [1317] = {.lex_state = 245}, + [1318] = {.lex_state = 245}, + [1319] = {.lex_state = 247, .external_lex_state = 10}, + [1320] = {.lex_state = 247, .external_lex_state = 10}, + [1321] = {.lex_state = 92, .external_lex_state = 29}, + [1322] = {.lex_state = 92, .external_lex_state = 29}, + [1323] = {.lex_state = 92, .external_lex_state = 18}, + [1324] = {.lex_state = 260, .external_lex_state = 18}, + [1325] = {.lex_state = 247, .external_lex_state = 10}, + [1326] = {.lex_state = 262, .external_lex_state = 30}, + [1327] = {.lex_state = 262, .external_lex_state = 18}, + [1328] = {.lex_state = 262, .external_lex_state = 30}, + [1329] = {.lex_state = 262, .external_lex_state = 18}, + [1330] = {.lex_state = 262, .external_lex_state = 18}, + [1331] = {.lex_state = 247, .external_lex_state = 10}, + [1332] = {.lex_state = 262, .external_lex_state = 18}, + [1333] = {.lex_state = 262, .external_lex_state = 18}, + [1334] = {.lex_state = 140, .external_lex_state = 11}, + [1335] = {.lex_state = 239}, + [1336] = {.lex_state = 102}, + [1337] = {.lex_state = 140, .external_lex_state = 26}, + [1338] = {.lex_state = 140, .external_lex_state = 26}, + [1339] = {.lex_state = 215}, + [1340] = {.lex_state = 115}, + [1341] = {.lex_state = 140, .external_lex_state = 26}, + [1342] = {.lex_state = 140, .external_lex_state = 26}, + [1343] = {.lex_state = 140, .external_lex_state = 26}, + [1344] = {.lex_state = 85}, + [1345] = {.lex_state = 221, .external_lex_state = 7}, + [1346] = {.lex_state = 223, .external_lex_state = 18}, + [1347] = {.lex_state = 223, .external_lex_state = 18}, + [1348] = {.lex_state = 85}, + [1349] = {.lex_state = 78}, + [1350] = {.lex_state = 85}, + [1351] = {.lex_state = 266}, + [1352] = {.lex_state = 242, .external_lex_state = 9}, + [1353] = {.lex_state = 146, .external_lex_state = 9}, + [1354] = {.lex_state = 268, .external_lex_state = 9}, + [1355] = {.lex_state = 136, .external_lex_state = 12}, + [1356] = {.lex_state = 136, .external_lex_state = 12}, + [1357] = {.lex_state = 172}, + [1358] = {.lex_state = 136, .external_lex_state = 12}, + [1359] = {.lex_state = 303}, + [1360] = {.lex_state = 303}, + [1361] = {.lex_state = 303}, + [1362] = {.lex_state = 308}, + [1363] = {.lex_state = 146, .external_lex_state = 9}, + [1364] = {.lex_state = 308}, + [1365] = {.lex_state = 146, .external_lex_state = 9}, + [1366] = {.lex_state = 78}, + [1367] = {.lex_state = 108, .external_lex_state = 11}, + [1368] = {.lex_state = 239}, + [1369] = {.lex_state = 108, .external_lex_state = 26}, + [1370] = {.lex_state = 108, .external_lex_state = 26}, + [1371] = {.lex_state = 108, .external_lex_state = 26}, + [1372] = {.lex_state = 108, .external_lex_state = 26}, + [1373] = {.lex_state = 108, .external_lex_state = 26}, + [1374] = {.lex_state = 215}, + [1375] = {.lex_state = 260, .external_lex_state = 18}, + [1376] = {.lex_state = 85}, + [1377] = {.lex_state = 223, .external_lex_state = 18}, + [1378] = {.lex_state = 223, .external_lex_state = 18}, + [1379] = {.lex_state = 108, .external_lex_state = 26}, + [1380] = {.lex_state = 262, .external_lex_state = 30}, + [1381] = {.lex_state = 262, .external_lex_state = 18}, + [1382] = {.lex_state = 108, .external_lex_state = 26}, + [1383] = {.lex_state = 262, .external_lex_state = 30}, + [1384] = {.lex_state = 262, .external_lex_state = 18}, + [1385] = {.lex_state = 108, .external_lex_state = 26}, + [1386] = {.lex_state = 108, .external_lex_state = 26}, + [1387] = {.lex_state = 108, .external_lex_state = 13}, + [1388] = {.lex_state = 108, .external_lex_state = 13}, + [1389] = {.lex_state = 108, .external_lex_state = 13}, + [1390] = {.lex_state = 215}, + [1391] = {.lex_state = 260, .external_lex_state = 18}, + [1392] = {.lex_state = 85}, + [1393] = {.lex_state = 223, .external_lex_state = 18}, + [1394] = {.lex_state = 223, .external_lex_state = 18}, + [1395] = {.lex_state = 108, .external_lex_state = 13}, + [1396] = {.lex_state = 262, .external_lex_state = 30}, + [1397] = {.lex_state = 262, .external_lex_state = 18}, + [1398] = {.lex_state = 108, .external_lex_state = 13}, + [1399] = {.lex_state = 262, .external_lex_state = 30}, + [1400] = {.lex_state = 262, .external_lex_state = 18}, + [1401] = {.lex_state = 108, .external_lex_state = 13}, + [1402] = {.lex_state = 108, .external_lex_state = 13}, + [1403] = {.lex_state = 112, .external_lex_state = 13}, + [1404] = {.lex_state = 112, .external_lex_state = 13}, + [1405] = {.lex_state = 92, .external_lex_state = 29}, + [1406] = {.lex_state = 92, .external_lex_state = 29}, + [1407] = {.lex_state = 92, .external_lex_state = 18}, + [1408] = {.lex_state = 260, .external_lex_state = 18}, + [1409] = {.lex_state = 112, .external_lex_state = 13}, + [1410] = {.lex_state = 262, .external_lex_state = 30}, + [1411] = {.lex_state = 262, .external_lex_state = 18}, + [1412] = {.lex_state = 262, .external_lex_state = 30}, + [1413] = {.lex_state = 262, .external_lex_state = 18}, + [1414] = {.lex_state = 262, .external_lex_state = 18}, + [1415] = {.lex_state = 112, .external_lex_state = 13}, + [1416] = {.lex_state = 262, .external_lex_state = 18}, + [1417] = {.lex_state = 262, .external_lex_state = 18}, + [1418] = {.lex_state = 136, .external_lex_state = 12}, + [1419] = {.lex_state = 144, .external_lex_state = 8}, + [1420] = {.lex_state = 85}, + [1421] = {.lex_state = 273, .external_lex_state = 21}, + [1422] = {.lex_state = 115}, + [1423] = {.lex_state = 122}, + [1424] = {.lex_state = 273, .external_lex_state = 21}, + [1425] = {.lex_state = 122, .external_lex_state = 7}, + [1426] = {.lex_state = 78, .external_lex_state = 2}, + [1427] = {.lex_state = 78, .external_lex_state = 2}, + [1428] = {.lex_state = 78, .external_lex_state = 2}, + [1429] = {.lex_state = 85}, + [1430] = {.lex_state = 273, .external_lex_state = 4}, + [1431] = {.lex_state = 273, .external_lex_state = 6}, + [1432] = {.lex_state = 115}, + [1433] = {.lex_state = 122}, + [1434] = {.lex_state = 273, .external_lex_state = 6}, + [1435] = {.lex_state = 122, .external_lex_state = 7}, + [1436] = {.lex_state = 78, .external_lex_state = 2}, + [1437] = {.lex_state = 78, .external_lex_state = 2}, + [1438] = {.lex_state = 78, .external_lex_state = 2}, + [1439] = {.lex_state = 273, .external_lex_state = 5}, + [1440] = {.lex_state = 102}, + [1441] = {.lex_state = 279, .external_lex_state = 6}, + [1442] = {.lex_state = 279, .external_lex_state = 6}, + [1443] = {.lex_state = 215}, + [1444] = {.lex_state = 115}, + [1445] = {.lex_state = 279, .external_lex_state = 6}, + [1446] = {.lex_state = 279, .external_lex_state = 6}, + [1447] = {.lex_state = 279, .external_lex_state = 6}, + [1448] = {.lex_state = 85}, + [1449] = {.lex_state = 221, .external_lex_state = 7}, + [1450] = {.lex_state = 223, .external_lex_state = 18}, + [1451] = {.lex_state = 223, .external_lex_state = 18}, + [1452] = {.lex_state = 85}, + [1453] = {.lex_state = 78}, + [1454] = {.lex_state = 85}, + [1455] = {.lex_state = 186, .external_lex_state = 5}, + [1456] = {.lex_state = 78}, + [1457] = {.lex_state = 249, .external_lex_state = 2}, + [1458] = {.lex_state = 78, .external_lex_state = 2}, + [1459] = {.lex_state = 78, .external_lex_state = 2}, + [1460] = {.lex_state = 102}, + [1461] = {.lex_state = 102}, + [1462] = {.lex_state = 314, .external_lex_state = 9}, + [1463] = {.lex_state = 283, .external_lex_state = 5}, + [1464] = {.lex_state = 235, .external_lex_state = 25}, + [1465] = {.lex_state = 279, .external_lex_state = 6}, + [1466] = {.lex_state = 279, .external_lex_state = 6}, + [1467] = {.lex_state = 279, .external_lex_state = 5}, + [1468] = {.lex_state = 283, .external_lex_state = 5}, + [1469] = {.lex_state = 285, .external_lex_state = 4}, + [1470] = {.lex_state = 279, .external_lex_state = 5}, + [1471] = {.lex_state = 136, .external_lex_state = 13}, + [1472] = {.lex_state = 136, .external_lex_state = 13}, + [1473] = {.lex_state = 136, .external_lex_state = 12}, + [1474] = {.lex_state = 136, .external_lex_state = 13}, + [1475] = {.lex_state = 144, .external_lex_state = 8}, + [1476] = {.lex_state = 102}, + [1477] = {.lex_state = 85}, + [1478] = {.lex_state = 106, .external_lex_state = 2}, + [1479] = {.lex_state = 316, .external_lex_state = 4}, + [1480] = {.lex_state = 316, .external_lex_state = 5}, + [1481] = {.lex_state = 318, .external_lex_state = 6}, + [1482] = {.lex_state = 115}, + [1483] = {.lex_state = 122}, + [1484] = {.lex_state = 318, .external_lex_state = 6}, + [1485] = {.lex_state = 122, .external_lex_state = 7}, + [1486] = {.lex_state = 78, .external_lex_state = 2}, + [1487] = {.lex_state = 78, .external_lex_state = 2}, + [1488] = {.lex_state = 78, .external_lex_state = 2}, + [1489] = {.lex_state = 320, .external_lex_state = 6}, + [1490] = {.lex_state = 303}, + [1491] = {.lex_state = 322, .external_lex_state = 5}, + [1492] = {.lex_state = 318, .external_lex_state = 5}, + [1493] = {.lex_state = 324, .external_lex_state = 4}, + [1494] = {.lex_state = 85}, + [1495] = {.lex_state = 318, .external_lex_state = 5}, + [1496] = {.lex_state = 78, .external_lex_state = 2}, + [1497] = {.lex_state = 102, .external_lex_state = 2}, + [1498] = {.lex_state = 85}, + [1499] = {.lex_state = 289, .external_lex_state = 21}, + [1500] = {.lex_state = 115}, + [1501] = {.lex_state = 122}, + [1502] = {.lex_state = 289, .external_lex_state = 21}, + [1503] = {.lex_state = 122, .external_lex_state = 7}, + [1504] = {.lex_state = 78, .external_lex_state = 2}, + [1505] = {.lex_state = 78, .external_lex_state = 2}, + [1506] = {.lex_state = 78, .external_lex_state = 2}, + [1507] = {.lex_state = 85}, + [1508] = {.lex_state = 289, .external_lex_state = 4}, + [1509] = {.lex_state = 289, .external_lex_state = 6}, + [1510] = {.lex_state = 115}, + [1511] = {.lex_state = 122}, + [1512] = {.lex_state = 289, .external_lex_state = 6}, + [1513] = {.lex_state = 122, .external_lex_state = 7}, + [1514] = {.lex_state = 78, .external_lex_state = 2}, + [1515] = {.lex_state = 78, .external_lex_state = 2}, + [1516] = {.lex_state = 78, .external_lex_state = 2}, + [1517] = {.lex_state = 289, .external_lex_state = 5}, + [1518] = {.lex_state = 102}, + [1519] = {.lex_state = 299, .external_lex_state = 6}, + [1520] = {.lex_state = 299, .external_lex_state = 6}, + [1521] = {.lex_state = 215}, + [1522] = {.lex_state = 115}, + [1523] = {.lex_state = 299, .external_lex_state = 6}, + [1524] = {.lex_state = 299, .external_lex_state = 6}, + [1525] = {.lex_state = 299, .external_lex_state = 6}, + [1526] = {.lex_state = 85}, + [1527] = {.lex_state = 221, .external_lex_state = 7}, + [1528] = {.lex_state = 223, .external_lex_state = 18}, + [1529] = {.lex_state = 223, .external_lex_state = 18}, + [1530] = {.lex_state = 85}, + [1531] = {.lex_state = 78}, + [1532] = {.lex_state = 85}, + [1533] = {.lex_state = 186, .external_lex_state = 5}, + [1534] = {.lex_state = 303}, + [1535] = {.lex_state = 303}, + [1536] = {.lex_state = 78}, + [1537] = {.lex_state = 255, .external_lex_state = 2}, + [1538] = {.lex_state = 78, .external_lex_state = 2}, + [1539] = {.lex_state = 78, .external_lex_state = 2}, + [1540] = {.lex_state = 102}, + [1541] = {.lex_state = 102}, + [1542] = {.lex_state = 326, .external_lex_state = 9}, + [1543] = {.lex_state = 303, .external_lex_state = 5}, + [1544] = {.lex_state = 235, .external_lex_state = 25}, + [1545] = {.lex_state = 299, .external_lex_state = 6}, + [1546] = {.lex_state = 299, .external_lex_state = 6}, + [1547] = {.lex_state = 299, .external_lex_state = 5}, + [1548] = {.lex_state = 303, .external_lex_state = 5}, + [1549] = {.lex_state = 306, .external_lex_state = 4}, + [1550] = {.lex_state = 303}, + [1551] = {.lex_state = 299, .external_lex_state = 5}, + [1552] = {.lex_state = 186, .external_lex_state = 5}, + [1553] = {.lex_state = 239, .external_lex_state = 10}, + [1554] = {.lex_state = 239, .external_lex_state = 10}, + [1555] = {.lex_state = 328}, + [1556] = {.lex_state = 239}, + [1557] = {.lex_state = 102}, + [1558] = {.lex_state = 308}, + [1559] = {.lex_state = 149, .external_lex_state = 14}, + [1560] = {.lex_state = 186, .external_lex_state = 5}, + [1561] = {.lex_state = 328}, + [1562] = {.lex_state = 102}, + [1563] = {.lex_state = 308}, + [1564] = {.lex_state = 149, .external_lex_state = 14}, + [1565] = {.lex_state = 92, .external_lex_state = 29}, + [1566] = {.lex_state = 92, .external_lex_state = 29}, + [1567] = {.lex_state = 92, .external_lex_state = 18}, + [1568] = {.lex_state = 260, .external_lex_state = 18}, + [1569] = {.lex_state = 149, .external_lex_state = 14}, + [1570] = {.lex_state = 262, .external_lex_state = 30}, + [1571] = {.lex_state = 262, .external_lex_state = 18}, + [1572] = {.lex_state = 262, .external_lex_state = 30}, + [1573] = {.lex_state = 262, .external_lex_state = 18}, + [1574] = {.lex_state = 262, .external_lex_state = 18}, + [1575] = {.lex_state = 149, .external_lex_state = 14}, + [1576] = {.lex_state = 262, .external_lex_state = 18}, + [1577] = {.lex_state = 262, .external_lex_state = 18}, + [1578] = {.lex_state = 186, .external_lex_state = 5}, + [1579] = {.lex_state = 184, .external_lex_state = 21}, + [1580] = {.lex_state = 178, .external_lex_state = 21}, + [1581] = {.lex_state = 178, .external_lex_state = 21}, + [1582] = {.lex_state = 178, .external_lex_state = 21}, + [1583] = {.lex_state = 178, .external_lex_state = 6}, + [1584] = {.lex_state = 182, .external_lex_state = 6}, + [1585] = {.lex_state = 182, .external_lex_state = 6}, + [1586] = {.lex_state = 182, .external_lex_state = 6}, + [1587] = {.lex_state = 207, .external_lex_state = 15}, + [1588] = {.lex_state = 239}, + [1589] = {.lex_state = 102}, + [1590] = {.lex_state = 207, .external_lex_state = 27}, + [1591] = {.lex_state = 207, .external_lex_state = 27}, + [1592] = {.lex_state = 215}, + [1593] = {.lex_state = 115}, + [1594] = {.lex_state = 207, .external_lex_state = 27}, + [1595] = {.lex_state = 207, .external_lex_state = 27}, + [1596] = {.lex_state = 207, .external_lex_state = 27}, + [1597] = {.lex_state = 85}, + [1598] = {.lex_state = 221, .external_lex_state = 7}, + [1599] = {.lex_state = 223, .external_lex_state = 18}, + [1600] = {.lex_state = 223, .external_lex_state = 18}, + [1601] = {.lex_state = 85}, + [1602] = {.lex_state = 78}, + [1603] = {.lex_state = 85}, + [1604] = {.lex_state = 266}, + [1605] = {.lex_state = 242, .external_lex_state = 9}, + [1606] = {.lex_state = 146, .external_lex_state = 9}, + [1607] = {.lex_state = 268, .external_lex_state = 9}, + [1608] = {.lex_state = 205, .external_lex_state = 16}, + [1609] = {.lex_state = 205, .external_lex_state = 16}, + [1610] = {.lex_state = 172}, + [1611] = {.lex_state = 205, .external_lex_state = 16}, + [1612] = {.lex_state = 303}, + [1613] = {.lex_state = 303}, + [1614] = {.lex_state = 303}, + [1615] = {.lex_state = 308}, + [1616] = {.lex_state = 146, .external_lex_state = 9}, + [1617] = {.lex_state = 308}, + [1618] = {.lex_state = 146, .external_lex_state = 9}, + [1619] = {.lex_state = 78}, + [1620] = {.lex_state = 199, .external_lex_state = 15}, + [1621] = {.lex_state = 239}, + [1622] = {.lex_state = 199, .external_lex_state = 27}, + [1623] = {.lex_state = 199, .external_lex_state = 27}, + [1624] = {.lex_state = 199, .external_lex_state = 27}, + [1625] = {.lex_state = 199, .external_lex_state = 27}, + [1626] = {.lex_state = 199, .external_lex_state = 27}, + [1627] = {.lex_state = 215}, + [1628] = {.lex_state = 260, .external_lex_state = 18}, + [1629] = {.lex_state = 85}, + [1630] = {.lex_state = 223, .external_lex_state = 18}, + [1631] = {.lex_state = 223, .external_lex_state = 18}, + [1632] = {.lex_state = 199, .external_lex_state = 27}, + [1633] = {.lex_state = 262, .external_lex_state = 30}, + [1634] = {.lex_state = 262, .external_lex_state = 18}, + [1635] = {.lex_state = 199, .external_lex_state = 27}, + [1636] = {.lex_state = 262, .external_lex_state = 30}, + [1637] = {.lex_state = 262, .external_lex_state = 18}, + [1638] = {.lex_state = 199, .external_lex_state = 27}, + [1639] = {.lex_state = 199, .external_lex_state = 27}, + [1640] = {.lex_state = 199, .external_lex_state = 17}, + [1641] = {.lex_state = 199, .external_lex_state = 17}, + [1642] = {.lex_state = 199, .external_lex_state = 17}, + [1643] = {.lex_state = 215}, + [1644] = {.lex_state = 260, .external_lex_state = 18}, + [1645] = {.lex_state = 85}, + [1646] = {.lex_state = 223, .external_lex_state = 18}, + [1647] = {.lex_state = 223, .external_lex_state = 18}, + [1648] = {.lex_state = 199, .external_lex_state = 17}, + [1649] = {.lex_state = 262, .external_lex_state = 30}, + [1650] = {.lex_state = 262, .external_lex_state = 18}, + [1651] = {.lex_state = 199, .external_lex_state = 17}, + [1652] = {.lex_state = 262, .external_lex_state = 30}, + [1653] = {.lex_state = 262, .external_lex_state = 18}, + [1654] = {.lex_state = 199, .external_lex_state = 17}, + [1655] = {.lex_state = 199, .external_lex_state = 17}, + [1656] = {.lex_state = 201, .external_lex_state = 17}, + [1657] = {.lex_state = 201, .external_lex_state = 17}, + [1658] = {.lex_state = 92, .external_lex_state = 29}, + [1659] = {.lex_state = 92, .external_lex_state = 29}, + [1660] = {.lex_state = 92, .external_lex_state = 18}, + [1661] = {.lex_state = 260, .external_lex_state = 18}, + [1662] = {.lex_state = 201, .external_lex_state = 17}, + [1663] = {.lex_state = 262, .external_lex_state = 30}, + [1664] = {.lex_state = 262, .external_lex_state = 18}, + [1665] = {.lex_state = 262, .external_lex_state = 30}, + [1666] = {.lex_state = 262, .external_lex_state = 18}, + [1667] = {.lex_state = 262, .external_lex_state = 18}, + [1668] = {.lex_state = 201, .external_lex_state = 17}, + [1669] = {.lex_state = 262, .external_lex_state = 18}, + [1670] = {.lex_state = 262, .external_lex_state = 18}, + [1671] = {.lex_state = 205, .external_lex_state = 16}, + [1672] = {.lex_state = 258, .external_lex_state = 28}, + [1673] = {.lex_state = 205, .external_lex_state = 17}, + [1674] = {.lex_state = 205, .external_lex_state = 17}, + [1675] = {.lex_state = 205, .external_lex_state = 16}, + [1676] = {.lex_state = 205, .external_lex_state = 17}, + [1677] = {.lex_state = 104, .external_lex_state = 3}, + [1678] = {.lex_state = 102, .external_lex_state = 2}, + [1679] = {.lex_state = 239}, + [1680] = {.lex_state = 209, .external_lex_state = 19}, + [1681] = {.lex_state = 209, .external_lex_state = 19}, + [1682] = {.lex_state = 92, .external_lex_state = 29}, + [1683] = {.lex_state = 92, .external_lex_state = 29}, + [1684] = {.lex_state = 92, .external_lex_state = 18}, + [1685] = {.lex_state = 260, .external_lex_state = 18}, + [1686] = {.lex_state = 209, .external_lex_state = 19}, + [1687] = {.lex_state = 262, .external_lex_state = 30}, + [1688] = {.lex_state = 262, .external_lex_state = 18}, + [1689] = {.lex_state = 262, .external_lex_state = 30}, + [1690] = {.lex_state = 262, .external_lex_state = 18}, + [1691] = {.lex_state = 262, .external_lex_state = 18}, + [1692] = {.lex_state = 209, .external_lex_state = 19}, + [1693] = {.lex_state = 262, .external_lex_state = 18}, + [1694] = {.lex_state = 262, .external_lex_state = 18}, + [1695] = {.lex_state = 178, .external_lex_state = 4}, + [1696] = {.lex_state = 239}, + [1697] = {.lex_state = 178, .external_lex_state = 21}, + [1698] = {.lex_state = 178, .external_lex_state = 21}, + [1699] = {.lex_state = 92, .external_lex_state = 29}, + [1700] = {.lex_state = 92, .external_lex_state = 29}, + [1701] = {.lex_state = 92, .external_lex_state = 18}, + [1702] = {.lex_state = 260, .external_lex_state = 18}, + [1703] = {.lex_state = 178, .external_lex_state = 21}, + [1704] = {.lex_state = 262, .external_lex_state = 30}, + [1705] = {.lex_state = 262, .external_lex_state = 18}, + [1706] = {.lex_state = 262, .external_lex_state = 30}, + [1707] = {.lex_state = 262, .external_lex_state = 18}, + [1708] = {.lex_state = 262, .external_lex_state = 18}, + [1709] = {.lex_state = 178, .external_lex_state = 21}, + [1710] = {.lex_state = 262, .external_lex_state = 18}, + [1711] = {.lex_state = 262, .external_lex_state = 18}, + [1712] = {.lex_state = 178, .external_lex_state = 6}, + [1713] = {.lex_state = 178, .external_lex_state = 6}, + [1714] = {.lex_state = 92, .external_lex_state = 29}, + [1715] = {.lex_state = 92, .external_lex_state = 29}, + [1716] = {.lex_state = 92, .external_lex_state = 18}, + [1717] = {.lex_state = 260, .external_lex_state = 18}, + [1718] = {.lex_state = 178, .external_lex_state = 6}, + [1719] = {.lex_state = 262, .external_lex_state = 30}, + [1720] = {.lex_state = 262, .external_lex_state = 18}, + [1721] = {.lex_state = 262, .external_lex_state = 30}, + [1722] = {.lex_state = 262, .external_lex_state = 18}, + [1723] = {.lex_state = 262, .external_lex_state = 18}, + [1724] = {.lex_state = 178, .external_lex_state = 6}, + [1725] = {.lex_state = 262, .external_lex_state = 18}, + [1726] = {.lex_state = 262, .external_lex_state = 18}, + [1727] = {.lex_state = 102, .external_lex_state = 22}, + [1728] = {.lex_state = 102, .external_lex_state = 22}, + [1729] = {.lex_state = 92, .external_lex_state = 29}, + [1730] = {.lex_state = 92, .external_lex_state = 29}, + [1731] = {.lex_state = 92, .external_lex_state = 18}, + [1732] = {.lex_state = 260, .external_lex_state = 18}, + [1733] = {.lex_state = 102, .external_lex_state = 22}, + [1734] = {.lex_state = 262, .external_lex_state = 30}, + [1735] = {.lex_state = 262, .external_lex_state = 18}, + [1736] = {.lex_state = 262, .external_lex_state = 30}, + [1737] = {.lex_state = 262, .external_lex_state = 18}, + [1738] = {.lex_state = 262, .external_lex_state = 18}, + [1739] = {.lex_state = 102, .external_lex_state = 22}, + [1740] = {.lex_state = 262, .external_lex_state = 18}, + [1741] = {.lex_state = 262, .external_lex_state = 18}, + [1742] = {.lex_state = 115, .external_lex_state = 10}, + [1743] = {.lex_state = 92, .external_lex_state = 29}, + [1744] = {.lex_state = 92, .external_lex_state = 29}, + [1745] = {.lex_state = 92, .external_lex_state = 18}, + [1746] = {.lex_state = 260, .external_lex_state = 18}, + [1747] = {.lex_state = 115, .external_lex_state = 10}, + [1748] = {.lex_state = 262, .external_lex_state = 30}, + [1749] = {.lex_state = 262, .external_lex_state = 18}, + [1750] = {.lex_state = 262, .external_lex_state = 30}, + [1751] = {.lex_state = 262, .external_lex_state = 18}, + [1752] = {.lex_state = 262, .external_lex_state = 18}, + [1753] = {.lex_state = 115, .external_lex_state = 10}, + [1754] = {.lex_state = 262, .external_lex_state = 18}, + [1755] = {.lex_state = 262, .external_lex_state = 18}, + [1756] = {.lex_state = 237, .external_lex_state = 20}, + [1757] = {.lex_state = 223, .external_lex_state = 29}, + [1758] = {.lex_state = 237, .external_lex_state = 20}, + [1759] = {.lex_state = 223, .external_lex_state = 29}, + [1760] = {.lex_state = 209, .external_lex_state = 20}, + [1761] = {.lex_state = 102}, + [1762] = {.lex_state = 142, .external_lex_state = 6}, + [1763] = {.lex_state = 92, .external_lex_state = 29}, + [1764] = {.lex_state = 92, .external_lex_state = 29}, + [1765] = {.lex_state = 215}, + [1766] = {.lex_state = 115}, + [1767] = {.lex_state = 92, .external_lex_state = 29}, + [1768] = {.lex_state = 92, .external_lex_state = 29}, + [1769] = {.lex_state = 92, .external_lex_state = 29}, + [1770] = {.lex_state = 142, .external_lex_state = 6}, + [1771] = {.lex_state = 85}, + [1772] = {.lex_state = 221, .external_lex_state = 7}, + [1773] = {.lex_state = 223, .external_lex_state = 18}, + [1774] = {.lex_state = 223, .external_lex_state = 18}, + [1775] = {.lex_state = 85}, + [1776] = {.lex_state = 78}, + [1777] = {.lex_state = 85}, + [1778] = {.lex_state = 92, .external_lex_state = 29}, + [1779] = {.lex_state = 92, .external_lex_state = 29}, + [1780] = {.lex_state = 92, .external_lex_state = 18}, + [1781] = {.lex_state = 262, .external_lex_state = 18}, + [1782] = {.lex_state = 142, .external_lex_state = 6}, + [1783] = {.lex_state = 262, .external_lex_state = 18}, + [1784] = {.lex_state = 262, .external_lex_state = 18}, + [1785] = {.lex_state = 262, .external_lex_state = 18}, + [1786] = {.lex_state = 262, .external_lex_state = 29}, + [1787] = {.lex_state = 262, .external_lex_state = 29}, + [1788] = {.lex_state = 262, .external_lex_state = 29}, + [1789] = {.lex_state = 215}, + [1790] = {.lex_state = 260, .external_lex_state = 18}, + [1791] = {.lex_state = 85}, + [1792] = {.lex_state = 223, .external_lex_state = 18}, + [1793] = {.lex_state = 223, .external_lex_state = 18}, + [1794] = {.lex_state = 262, .external_lex_state = 29}, + [1795] = {.lex_state = 262, .external_lex_state = 30}, + [1796] = {.lex_state = 262, .external_lex_state = 18}, + [1797] = {.lex_state = 262, .external_lex_state = 29}, + [1798] = {.lex_state = 262, .external_lex_state = 30}, + [1799] = {.lex_state = 262, .external_lex_state = 18}, + [1800] = {.lex_state = 142, .external_lex_state = 6}, + [1801] = {.lex_state = 262, .external_lex_state = 18}, + [1802] = {.lex_state = 262, .external_lex_state = 29}, + [1803] = {.lex_state = 262, .external_lex_state = 29}, + [1804] = {.lex_state = 140, .external_lex_state = 21}, + [1805] = {.lex_state = 108, .external_lex_state = 21}, + [1806] = {.lex_state = 108, .external_lex_state = 21}, + [1807] = {.lex_state = 108, .external_lex_state = 21}, + [1808] = {.lex_state = 108, .external_lex_state = 6}, + [1809] = {.lex_state = 227, .external_lex_state = 6}, + [1810] = {.lex_state = 227, .external_lex_state = 6}, + [1811] = {.lex_state = 227, .external_lex_state = 6}, + [1812] = {.lex_state = 78, .external_lex_state = 2}, + [1813] = {.lex_state = 260, .external_lex_state = 18}, + [1814] = {.lex_state = 85}, + [1815] = {.lex_state = 223, .external_lex_state = 18}, + [1816] = {.lex_state = 223, .external_lex_state = 18}, + [1817] = {.lex_state = 96, .external_lex_state = 23}, + [1818] = {.lex_state = 262, .external_lex_state = 30}, + [1819] = {.lex_state = 262, .external_lex_state = 18}, + [1820] = {.lex_state = 96, .external_lex_state = 23}, + [1821] = {.lex_state = 262, .external_lex_state = 30}, + [1822] = {.lex_state = 262, .external_lex_state = 18}, + [1823] = {.lex_state = 96, .external_lex_state = 23}, + [1824] = {.lex_state = 136, .external_lex_state = 6}, + [1825] = {.lex_state = 102}, + [1826] = {.lex_state = 136, .external_lex_state = 5}, + [1827] = {.lex_state = 140, .external_lex_state = 4}, + [1828] = {.lex_state = 136, .external_lex_state = 5}, + [1829] = {.lex_state = 140, .external_lex_state = 4}, + [1830] = {.lex_state = 136, .external_lex_state = 6}, + [1831] = {.lex_state = 136, .external_lex_state = 6}, + [1832] = {.lex_state = 136, .external_lex_state = 6}, + [1833] = {.lex_state = 136, .external_lex_state = 6}, + [1834] = {.lex_state = 78, .external_lex_state = 2}, + [1835] = {.lex_state = 136, .external_lex_state = 5}, + [1836] = {.lex_state = 112, .external_lex_state = 5}, + [1837] = {.lex_state = 85}, + [1838] = {.lex_state = 85}, + [1839] = {.lex_state = 239, .external_lex_state = 10}, + [1840] = {.lex_state = 239, .external_lex_state = 10}, + [1841] = {.lex_state = 239, .external_lex_state = 10}, + [1842] = {.lex_state = 215}, + [1843] = {.lex_state = 260, .external_lex_state = 18}, + [1844] = {.lex_state = 85}, + [1845] = {.lex_state = 223, .external_lex_state = 18}, + [1846] = {.lex_state = 223, .external_lex_state = 18}, + [1847] = {.lex_state = 239, .external_lex_state = 10}, + [1848] = {.lex_state = 262, .external_lex_state = 30}, + [1849] = {.lex_state = 262, .external_lex_state = 18}, + [1850] = {.lex_state = 239, .external_lex_state = 10}, + [1851] = {.lex_state = 262, .external_lex_state = 30}, + [1852] = {.lex_state = 262, .external_lex_state = 18}, + [1853] = {.lex_state = 239, .external_lex_state = 10}, + [1854] = {.lex_state = 239, .external_lex_state = 10}, + [1855] = {.lex_state = 184, .external_lex_state = 21}, + [1856] = {.lex_state = 184, .external_lex_state = 21}, + [1857] = {.lex_state = 92, .external_lex_state = 29}, + [1858] = {.lex_state = 92, .external_lex_state = 29}, + [1859] = {.lex_state = 92, .external_lex_state = 18}, + [1860] = {.lex_state = 260, .external_lex_state = 18}, + [1861] = {.lex_state = 184, .external_lex_state = 21}, + [1862] = {.lex_state = 262, .external_lex_state = 30}, + [1863] = {.lex_state = 262, .external_lex_state = 18}, + [1864] = {.lex_state = 262, .external_lex_state = 30}, + [1865] = {.lex_state = 262, .external_lex_state = 18}, + [1866] = {.lex_state = 262, .external_lex_state = 18}, + [1867] = {.lex_state = 184, .external_lex_state = 21}, + [1868] = {.lex_state = 262, .external_lex_state = 18}, + [1869] = {.lex_state = 262, .external_lex_state = 18}, + [1870] = {.lex_state = 311}, + [1871] = {.lex_state = 186, .external_lex_state = 5}, + [1872] = {.lex_state = 311}, + [1873] = {.lex_state = 153}, + [1874] = {.lex_state = 242, .external_lex_state = 14}, + [1875] = {.lex_state = 242, .external_lex_state = 14}, + [1876] = {.lex_state = 92, .external_lex_state = 29}, + [1877] = {.lex_state = 92, .external_lex_state = 29}, + [1878] = {.lex_state = 92, .external_lex_state = 18}, + [1879] = {.lex_state = 260, .external_lex_state = 18}, + [1880] = {.lex_state = 242, .external_lex_state = 14}, + [1881] = {.lex_state = 262, .external_lex_state = 30}, + [1882] = {.lex_state = 262, .external_lex_state = 18}, + [1883] = {.lex_state = 262, .external_lex_state = 30}, + [1884] = {.lex_state = 262, .external_lex_state = 18}, + [1885] = {.lex_state = 262, .external_lex_state = 18}, + [1886] = {.lex_state = 242, .external_lex_state = 14}, + [1887] = {.lex_state = 262, .external_lex_state = 18}, + [1888] = {.lex_state = 262, .external_lex_state = 18}, + [1889] = {.lex_state = 266}, + [1890] = {.lex_state = 268, .external_lex_state = 14}, + [1891] = {.lex_state = 268, .external_lex_state = 14}, + [1892] = {.lex_state = 268, .external_lex_state = 14}, + [1893] = {.lex_state = 215}, + [1894] = {.lex_state = 260, .external_lex_state = 18}, + [1895] = {.lex_state = 85}, + [1896] = {.lex_state = 223, .external_lex_state = 18}, + [1897] = {.lex_state = 223, .external_lex_state = 18}, + [1898] = {.lex_state = 268, .external_lex_state = 14}, + [1899] = {.lex_state = 262, .external_lex_state = 30}, + [1900] = {.lex_state = 262, .external_lex_state = 18}, + [1901] = {.lex_state = 268, .external_lex_state = 14}, + [1902] = {.lex_state = 262, .external_lex_state = 30}, + [1903] = {.lex_state = 262, .external_lex_state = 18}, + [1904] = {.lex_state = 268, .external_lex_state = 14}, + [1905] = {.lex_state = 268, .external_lex_state = 14}, + [1906] = {.lex_state = 186, .external_lex_state = 5}, + [1907] = {.lex_state = 270, .external_lex_state = 10}, + [1908] = {.lex_state = 270, .external_lex_state = 10}, + [1909] = {.lex_state = 92, .external_lex_state = 29}, + [1910] = {.lex_state = 92, .external_lex_state = 29}, + [1911] = {.lex_state = 92, .external_lex_state = 18}, + [1912] = {.lex_state = 260, .external_lex_state = 18}, + [1913] = {.lex_state = 270, .external_lex_state = 10}, + [1914] = {.lex_state = 262, .external_lex_state = 30}, + [1915] = {.lex_state = 262, .external_lex_state = 18}, + [1916] = {.lex_state = 262, .external_lex_state = 30}, + [1917] = {.lex_state = 262, .external_lex_state = 18}, + [1918] = {.lex_state = 262, .external_lex_state = 18}, + [1919] = {.lex_state = 270, .external_lex_state = 10}, + [1920] = {.lex_state = 262, .external_lex_state = 18}, + [1921] = {.lex_state = 262, .external_lex_state = 18}, + [1922] = {.lex_state = 247, .external_lex_state = 10}, + [1923] = {.lex_state = 247, .external_lex_state = 10}, + [1924] = {.lex_state = 92, .external_lex_state = 29}, + [1925] = {.lex_state = 92, .external_lex_state = 29}, + [1926] = {.lex_state = 92, .external_lex_state = 18}, + [1927] = {.lex_state = 262, .external_lex_state = 18}, + [1928] = {.lex_state = 247, .external_lex_state = 10}, + [1929] = {.lex_state = 262, .external_lex_state = 18}, + [1930] = {.lex_state = 262, .external_lex_state = 18}, + [1931] = {.lex_state = 262, .external_lex_state = 18}, + [1932] = {.lex_state = 247, .external_lex_state = 10}, + [1933] = {.lex_state = 262, .external_lex_state = 18}, + [1934] = {.lex_state = 140, .external_lex_state = 11}, + [1935] = {.lex_state = 140, .external_lex_state = 26}, + [1936] = {.lex_state = 140, .external_lex_state = 26}, + [1937] = {.lex_state = 140, .external_lex_state = 26}, + [1938] = {.lex_state = 215}, + [1939] = {.lex_state = 260, .external_lex_state = 18}, + [1940] = {.lex_state = 85}, + [1941] = {.lex_state = 223, .external_lex_state = 18}, + [1942] = {.lex_state = 223, .external_lex_state = 18}, + [1943] = {.lex_state = 140, .external_lex_state = 26}, + [1944] = {.lex_state = 262, .external_lex_state = 30}, + [1945] = {.lex_state = 262, .external_lex_state = 18}, + [1946] = {.lex_state = 140, .external_lex_state = 26}, + [1947] = {.lex_state = 262, .external_lex_state = 30}, + [1948] = {.lex_state = 262, .external_lex_state = 18}, + [1949] = {.lex_state = 140, .external_lex_state = 26}, + [1950] = {.lex_state = 140, .external_lex_state = 26}, + [1951] = {.lex_state = 311}, + [1952] = {.lex_state = 153}, + [1953] = {.lex_state = 266}, + [1954] = {.lex_state = 242, .external_lex_state = 9}, + [1955] = {.lex_state = 102}, + [1956] = {.lex_state = 136, .external_lex_state = 12}, + [1957] = {.lex_state = 136, .external_lex_state = 12}, + [1958] = {.lex_state = 303}, + [1959] = {.lex_state = 303}, + [1960] = {.lex_state = 136, .external_lex_state = 12}, + [1961] = {.lex_state = 328}, + [1962] = {.lex_state = 102}, + [1963] = {.lex_state = 308}, + [1964] = {.lex_state = 136, .external_lex_state = 12}, + [1965] = {.lex_state = 328}, + [1966] = {.lex_state = 102}, + [1967] = {.lex_state = 308}, + [1968] = {.lex_state = 136, .external_lex_state = 12}, + [1969] = {.lex_state = 108, .external_lex_state = 11}, + [1970] = {.lex_state = 239}, + [1971] = {.lex_state = 108, .external_lex_state = 26}, + [1972] = {.lex_state = 108, .external_lex_state = 26}, + [1973] = {.lex_state = 92, .external_lex_state = 29}, + [1974] = {.lex_state = 92, .external_lex_state = 29}, + [1975] = {.lex_state = 92, .external_lex_state = 18}, + [1976] = {.lex_state = 260, .external_lex_state = 18}, + [1977] = {.lex_state = 108, .external_lex_state = 26}, + [1978] = {.lex_state = 262, .external_lex_state = 30}, + [1979] = {.lex_state = 262, .external_lex_state = 18}, + [1980] = {.lex_state = 262, .external_lex_state = 30}, + [1981] = {.lex_state = 262, .external_lex_state = 18}, + [1982] = {.lex_state = 262, .external_lex_state = 18}, + [1983] = {.lex_state = 108, .external_lex_state = 26}, + [1984] = {.lex_state = 262, .external_lex_state = 18}, + [1985] = {.lex_state = 262, .external_lex_state = 18}, + [1986] = {.lex_state = 108, .external_lex_state = 13}, + [1987] = {.lex_state = 108, .external_lex_state = 13}, + [1988] = {.lex_state = 92, .external_lex_state = 29}, + [1989] = {.lex_state = 92, .external_lex_state = 29}, + [1990] = {.lex_state = 92, .external_lex_state = 18}, + [1991] = {.lex_state = 260, .external_lex_state = 18}, + [1992] = {.lex_state = 108, .external_lex_state = 13}, + [1993] = {.lex_state = 262, .external_lex_state = 30}, + [1994] = {.lex_state = 262, .external_lex_state = 18}, + [1995] = {.lex_state = 262, .external_lex_state = 30}, + [1996] = {.lex_state = 262, .external_lex_state = 18}, + [1997] = {.lex_state = 262, .external_lex_state = 18}, + [1998] = {.lex_state = 108, .external_lex_state = 13}, + [1999] = {.lex_state = 262, .external_lex_state = 18}, + [2000] = {.lex_state = 262, .external_lex_state = 18}, + [2001] = {.lex_state = 112, .external_lex_state = 13}, + [2002] = {.lex_state = 112, .external_lex_state = 13}, + [2003] = {.lex_state = 92, .external_lex_state = 29}, + [2004] = {.lex_state = 92, .external_lex_state = 29}, + [2005] = {.lex_state = 92, .external_lex_state = 18}, + [2006] = {.lex_state = 262, .external_lex_state = 18}, + [2007] = {.lex_state = 112, .external_lex_state = 13}, + [2008] = {.lex_state = 262, .external_lex_state = 18}, + [2009] = {.lex_state = 262, .external_lex_state = 18}, + [2010] = {.lex_state = 262, .external_lex_state = 18}, + [2011] = {.lex_state = 112, .external_lex_state = 13}, + [2012] = {.lex_state = 262, .external_lex_state = 18}, + [2013] = {.lex_state = 285, .external_lex_state = 4}, + [2014] = {.lex_state = 239}, + [2015] = {.lex_state = 285, .external_lex_state = 21}, + [2016] = {.lex_state = 115}, + [2017] = {.lex_state = 122}, + [2018] = {.lex_state = 285, .external_lex_state = 21}, + [2019] = {.lex_state = 122, .external_lex_state = 7}, + [2020] = {.lex_state = 78, .external_lex_state = 2}, + [2021] = {.lex_state = 78, .external_lex_state = 2}, + [2022] = {.lex_state = 78, .external_lex_state = 2}, + [2023] = {.lex_state = 144, .external_lex_state = 8}, + [2024] = {.lex_state = 102}, + [2025] = {.lex_state = 273, .external_lex_state = 21}, + [2026] = {.lex_state = 273, .external_lex_state = 21}, + [2027] = {.lex_state = 215}, + [2028] = {.lex_state = 115}, + [2029] = {.lex_state = 273, .external_lex_state = 21}, + [2030] = {.lex_state = 273, .external_lex_state = 21}, + [2031] = {.lex_state = 273, .external_lex_state = 21}, + [2032] = {.lex_state = 85}, + [2033] = {.lex_state = 221, .external_lex_state = 7}, + [2034] = {.lex_state = 223, .external_lex_state = 18}, + [2035] = {.lex_state = 223, .external_lex_state = 18}, + [2036] = {.lex_state = 85}, + [2037] = {.lex_state = 78}, + [2038] = {.lex_state = 85}, + [2039] = {.lex_state = 273, .external_lex_state = 4}, + [2040] = {.lex_state = 102}, + [2041] = {.lex_state = 273, .external_lex_state = 6}, + [2042] = {.lex_state = 273, .external_lex_state = 6}, + [2043] = {.lex_state = 215}, + [2044] = {.lex_state = 115}, + [2045] = {.lex_state = 273, .external_lex_state = 6}, + [2046] = {.lex_state = 273, .external_lex_state = 6}, + [2047] = {.lex_state = 273, .external_lex_state = 6}, + [2048] = {.lex_state = 85}, + [2049] = {.lex_state = 221, .external_lex_state = 7}, + [2050] = {.lex_state = 223, .external_lex_state = 18}, + [2051] = {.lex_state = 223, .external_lex_state = 18}, + [2052] = {.lex_state = 85}, + [2053] = {.lex_state = 78}, + [2054] = {.lex_state = 85}, + [2055] = {.lex_state = 273, .external_lex_state = 5}, + [2056] = {.lex_state = 279, .external_lex_state = 6}, + [2057] = {.lex_state = 279, .external_lex_state = 6}, + [2058] = {.lex_state = 279, .external_lex_state = 6}, + [2059] = {.lex_state = 215}, + [2060] = {.lex_state = 260, .external_lex_state = 18}, + [2061] = {.lex_state = 85}, + [2062] = {.lex_state = 223, .external_lex_state = 18}, + [2063] = {.lex_state = 223, .external_lex_state = 18}, + [2064] = {.lex_state = 279, .external_lex_state = 6}, + [2065] = {.lex_state = 262, .external_lex_state = 30}, + [2066] = {.lex_state = 262, .external_lex_state = 18}, + [2067] = {.lex_state = 279, .external_lex_state = 6}, + [2068] = {.lex_state = 262, .external_lex_state = 30}, + [2069] = {.lex_state = 262, .external_lex_state = 18}, + [2070] = {.lex_state = 279, .external_lex_state = 6}, + [2071] = {.lex_state = 279, .external_lex_state = 6}, + [2072] = {.lex_state = 102}, + [2073] = {.lex_state = 283, .external_lex_state = 5}, + [2074] = {.lex_state = 285, .external_lex_state = 4}, + [2075] = {.lex_state = 283, .external_lex_state = 5}, + [2076] = {.lex_state = 285, .external_lex_state = 4}, + [2077] = {.lex_state = 283, .external_lex_state = 6}, + [2078] = {.lex_state = 115}, + [2079] = {.lex_state = 122}, + [2080] = {.lex_state = 283, .external_lex_state = 6}, + [2081] = {.lex_state = 122, .external_lex_state = 7}, + [2082] = {.lex_state = 78, .external_lex_state = 2}, + [2083] = {.lex_state = 78, .external_lex_state = 2}, + [2084] = {.lex_state = 78, .external_lex_state = 2}, + [2085] = {.lex_state = 283, .external_lex_state = 6}, + [2086] = {.lex_state = 283, .external_lex_state = 6}, + [2087] = {.lex_state = 249, .external_lex_state = 2}, + [2088] = {.lex_state = 283, .external_lex_state = 5}, + [2089] = {.lex_state = 279, .external_lex_state = 5}, + [2090] = {.lex_state = 279, .external_lex_state = 6}, + [2091] = {.lex_state = 279, .external_lex_state = 6}, + [2092] = {.lex_state = 279, .external_lex_state = 5}, + [2093] = {.lex_state = 249, .external_lex_state = 2}, + [2094] = {.lex_state = 314, .external_lex_state = 9}, + [2095] = {.lex_state = 279, .external_lex_state = 5}, + [2096] = {.lex_state = 136, .external_lex_state = 13}, + [2097] = {.lex_state = 306, .external_lex_state = 4}, + [2098] = {.lex_state = 239}, + [2099] = {.lex_state = 306, .external_lex_state = 21}, + [2100] = {.lex_state = 115}, + [2101] = {.lex_state = 122}, + [2102] = {.lex_state = 306, .external_lex_state = 21}, + [2103] = {.lex_state = 122, .external_lex_state = 7}, + [2104] = {.lex_state = 78, .external_lex_state = 2}, + [2105] = {.lex_state = 78, .external_lex_state = 2}, + [2106] = {.lex_state = 78, .external_lex_state = 2}, + [2107] = {.lex_state = 255, .external_lex_state = 2}, + [2108] = {.lex_state = 144, .external_lex_state = 8}, + [2109] = {.lex_state = 85}, + [2110] = {.lex_state = 316, .external_lex_state = 21}, + [2111] = {.lex_state = 115}, + [2112] = {.lex_state = 122}, + [2113] = {.lex_state = 316, .external_lex_state = 21}, + [2114] = {.lex_state = 122, .external_lex_state = 7}, + [2115] = {.lex_state = 78, .external_lex_state = 2}, + [2116] = {.lex_state = 78, .external_lex_state = 2}, + [2117] = {.lex_state = 78, .external_lex_state = 2}, + [2118] = {.lex_state = 85}, + [2119] = {.lex_state = 316, .external_lex_state = 4}, + [2120] = {.lex_state = 316, .external_lex_state = 6}, + [2121] = {.lex_state = 115}, + [2122] = {.lex_state = 122}, + [2123] = {.lex_state = 316, .external_lex_state = 6}, + [2124] = {.lex_state = 122, .external_lex_state = 7}, + [2125] = {.lex_state = 78, .external_lex_state = 2}, + [2126] = {.lex_state = 78, .external_lex_state = 2}, + [2127] = {.lex_state = 78, .external_lex_state = 2}, + [2128] = {.lex_state = 316, .external_lex_state = 5}, + [2129] = {.lex_state = 102}, + [2130] = {.lex_state = 318, .external_lex_state = 6}, + [2131] = {.lex_state = 318, .external_lex_state = 6}, + [2132] = {.lex_state = 215}, + [2133] = {.lex_state = 115}, + [2134] = {.lex_state = 318, .external_lex_state = 6}, + [2135] = {.lex_state = 318, .external_lex_state = 6}, + [2136] = {.lex_state = 318, .external_lex_state = 6}, + [2137] = {.lex_state = 85}, + [2138] = {.lex_state = 221, .external_lex_state = 7}, + [2139] = {.lex_state = 223, .external_lex_state = 18}, + [2140] = {.lex_state = 223, .external_lex_state = 18}, + [2141] = {.lex_state = 85}, + [2142] = {.lex_state = 78}, + [2143] = {.lex_state = 85}, + [2144] = {.lex_state = 78}, + [2145] = {.lex_state = 287, .external_lex_state = 2}, + [2146] = {.lex_state = 78, .external_lex_state = 2}, + [2147] = {.lex_state = 78, .external_lex_state = 2}, + [2148] = {.lex_state = 102}, + [2149] = {.lex_state = 102}, + [2150] = {.lex_state = 326, .external_lex_state = 9}, + [2151] = {.lex_state = 322, .external_lex_state = 5}, + [2152] = {.lex_state = 235, .external_lex_state = 25}, + [2153] = {.lex_state = 318, .external_lex_state = 6}, + [2154] = {.lex_state = 318, .external_lex_state = 6}, + [2155] = {.lex_state = 318, .external_lex_state = 5}, + [2156] = {.lex_state = 322, .external_lex_state = 5}, + [2157] = {.lex_state = 324, .external_lex_state = 4}, + [2158] = {.lex_state = 318, .external_lex_state = 5}, + [2159] = {.lex_state = 144, .external_lex_state = 8}, + [2160] = {.lex_state = 102}, + [2161] = {.lex_state = 289, .external_lex_state = 21}, + [2162] = {.lex_state = 289, .external_lex_state = 21}, + [2163] = {.lex_state = 215}, + [2164] = {.lex_state = 115}, + [2165] = {.lex_state = 289, .external_lex_state = 21}, + [2166] = {.lex_state = 289, .external_lex_state = 21}, + [2167] = {.lex_state = 289, .external_lex_state = 21}, + [2168] = {.lex_state = 85}, + [2169] = {.lex_state = 221, .external_lex_state = 7}, + [2170] = {.lex_state = 223, .external_lex_state = 18}, + [2171] = {.lex_state = 223, .external_lex_state = 18}, + [2172] = {.lex_state = 85}, + [2173] = {.lex_state = 78}, + [2174] = {.lex_state = 85}, + [2175] = {.lex_state = 289, .external_lex_state = 4}, + [2176] = {.lex_state = 102}, + [2177] = {.lex_state = 289, .external_lex_state = 6}, + [2178] = {.lex_state = 289, .external_lex_state = 6}, + [2179] = {.lex_state = 215}, + [2180] = {.lex_state = 115}, + [2181] = {.lex_state = 289, .external_lex_state = 6}, + [2182] = {.lex_state = 289, .external_lex_state = 6}, + [2183] = {.lex_state = 289, .external_lex_state = 6}, + [2184] = {.lex_state = 85}, + [2185] = {.lex_state = 221, .external_lex_state = 7}, + [2186] = {.lex_state = 223, .external_lex_state = 18}, + [2187] = {.lex_state = 223, .external_lex_state = 18}, + [2188] = {.lex_state = 85}, + [2189] = {.lex_state = 78}, + [2190] = {.lex_state = 85}, + [2191] = {.lex_state = 289, .external_lex_state = 5}, + [2192] = {.lex_state = 299, .external_lex_state = 6}, + [2193] = {.lex_state = 299, .external_lex_state = 6}, + [2194] = {.lex_state = 299, .external_lex_state = 6}, + [2195] = {.lex_state = 215}, + [2196] = {.lex_state = 260, .external_lex_state = 18}, + [2197] = {.lex_state = 85}, + [2198] = {.lex_state = 223, .external_lex_state = 18}, + [2199] = {.lex_state = 223, .external_lex_state = 18}, + [2200] = {.lex_state = 299, .external_lex_state = 6}, + [2201] = {.lex_state = 262, .external_lex_state = 30}, + [2202] = {.lex_state = 262, .external_lex_state = 18}, + [2203] = {.lex_state = 299, .external_lex_state = 6}, + [2204] = {.lex_state = 262, .external_lex_state = 30}, + [2205] = {.lex_state = 262, .external_lex_state = 18}, + [2206] = {.lex_state = 299, .external_lex_state = 6}, + [2207] = {.lex_state = 299, .external_lex_state = 6}, + [2208] = {.lex_state = 186, .external_lex_state = 5}, + [2209] = {.lex_state = 303}, + [2210] = {.lex_state = 102}, + [2211] = {.lex_state = 303, .external_lex_state = 5}, + [2212] = {.lex_state = 306, .external_lex_state = 4}, + [2213] = {.lex_state = 303, .external_lex_state = 5}, + [2214] = {.lex_state = 306, .external_lex_state = 4}, + [2215] = {.lex_state = 303, .external_lex_state = 6}, + [2216] = {.lex_state = 303, .external_lex_state = 6}, + [2217] = {.lex_state = 303, .external_lex_state = 6}, + [2218] = {.lex_state = 303, .external_lex_state = 6}, + [2219] = {.lex_state = 255, .external_lex_state = 2}, + [2220] = {.lex_state = 303, .external_lex_state = 5}, + [2221] = {.lex_state = 299, .external_lex_state = 5}, + [2222] = {.lex_state = 299, .external_lex_state = 6}, + [2223] = {.lex_state = 299, .external_lex_state = 6}, + [2224] = {.lex_state = 299, .external_lex_state = 5}, + [2225] = {.lex_state = 255, .external_lex_state = 2}, + [2226] = {.lex_state = 326, .external_lex_state = 9}, + [2227] = {.lex_state = 299, .external_lex_state = 5}, + [2228] = {.lex_state = 102}, + [2229] = {.lex_state = 331, .external_lex_state = 2}, + [2230] = {.lex_state = 239}, + [2231] = {.lex_state = 239, .external_lex_state = 10}, + [2232] = {.lex_state = 331, .external_lex_state = 2}, + [2233] = {.lex_state = 239}, + [2234] = {.lex_state = 186, .external_lex_state = 5}, + [2235] = {.lex_state = 328}, + [2236] = {.lex_state = 102}, + [2237] = {.lex_state = 102}, + [2238] = {.lex_state = 186, .external_lex_state = 5}, + [2239] = {.lex_state = 328}, + [2240] = {.lex_state = 102}, + [2241] = {.lex_state = 149, .external_lex_state = 14}, + [2242] = {.lex_state = 149, .external_lex_state = 14}, + [2243] = {.lex_state = 92, .external_lex_state = 29}, + [2244] = {.lex_state = 92, .external_lex_state = 29}, + [2245] = {.lex_state = 92, .external_lex_state = 18}, + [2246] = {.lex_state = 262, .external_lex_state = 18}, + [2247] = {.lex_state = 149, .external_lex_state = 14}, + [2248] = {.lex_state = 262, .external_lex_state = 18}, + [2249] = {.lex_state = 262, .external_lex_state = 18}, + [2250] = {.lex_state = 262, .external_lex_state = 18}, + [2251] = {.lex_state = 149, .external_lex_state = 14}, + [2252] = {.lex_state = 262, .external_lex_state = 18}, + [2253] = {.lex_state = 184, .external_lex_state = 21}, + [2254] = {.lex_state = 182, .external_lex_state = 6}, + [2255] = {.lex_state = 207, .external_lex_state = 15}, + [2256] = {.lex_state = 207, .external_lex_state = 27}, + [2257] = {.lex_state = 207, .external_lex_state = 27}, + [2258] = {.lex_state = 207, .external_lex_state = 27}, + [2259] = {.lex_state = 215}, + [2260] = {.lex_state = 260, .external_lex_state = 18}, + [2261] = {.lex_state = 85}, + [2262] = {.lex_state = 223, .external_lex_state = 18}, + [2263] = {.lex_state = 223, .external_lex_state = 18}, + [2264] = {.lex_state = 207, .external_lex_state = 27}, + [2265] = {.lex_state = 262, .external_lex_state = 30}, + [2266] = {.lex_state = 262, .external_lex_state = 18}, + [2267] = {.lex_state = 207, .external_lex_state = 27}, + [2268] = {.lex_state = 262, .external_lex_state = 30}, + [2269] = {.lex_state = 262, .external_lex_state = 18}, + [2270] = {.lex_state = 207, .external_lex_state = 27}, + [2271] = {.lex_state = 207, .external_lex_state = 27}, + [2272] = {.lex_state = 311}, + [2273] = {.lex_state = 153}, + [2274] = {.lex_state = 266}, + [2275] = {.lex_state = 242, .external_lex_state = 9}, + [2276] = {.lex_state = 102}, + [2277] = {.lex_state = 205, .external_lex_state = 16}, + [2278] = {.lex_state = 205, .external_lex_state = 16}, + [2279] = {.lex_state = 303}, + [2280] = {.lex_state = 303}, + [2281] = {.lex_state = 205, .external_lex_state = 16}, + [2282] = {.lex_state = 328}, + [2283] = {.lex_state = 102}, + [2284] = {.lex_state = 308}, + [2285] = {.lex_state = 205, .external_lex_state = 16}, + [2286] = {.lex_state = 328}, + [2287] = {.lex_state = 102}, + [2288] = {.lex_state = 308}, + [2289] = {.lex_state = 205, .external_lex_state = 16}, + [2290] = {.lex_state = 199, .external_lex_state = 15}, + [2291] = {.lex_state = 239}, + [2292] = {.lex_state = 199, .external_lex_state = 27}, + [2293] = {.lex_state = 199, .external_lex_state = 27}, + [2294] = {.lex_state = 92, .external_lex_state = 29}, + [2295] = {.lex_state = 92, .external_lex_state = 29}, + [2296] = {.lex_state = 92, .external_lex_state = 18}, + [2297] = {.lex_state = 260, .external_lex_state = 18}, + [2298] = {.lex_state = 199, .external_lex_state = 27}, + [2299] = {.lex_state = 262, .external_lex_state = 30}, + [2300] = {.lex_state = 262, .external_lex_state = 18}, + [2301] = {.lex_state = 262, .external_lex_state = 30}, + [2302] = {.lex_state = 262, .external_lex_state = 18}, + [2303] = {.lex_state = 262, .external_lex_state = 18}, + [2304] = {.lex_state = 199, .external_lex_state = 27}, + [2305] = {.lex_state = 262, .external_lex_state = 18}, + [2306] = {.lex_state = 262, .external_lex_state = 18}, + [2307] = {.lex_state = 199, .external_lex_state = 17}, + [2308] = {.lex_state = 199, .external_lex_state = 17}, + [2309] = {.lex_state = 92, .external_lex_state = 29}, + [2310] = {.lex_state = 92, .external_lex_state = 29}, + [2311] = {.lex_state = 92, .external_lex_state = 18}, + [2312] = {.lex_state = 260, .external_lex_state = 18}, + [2313] = {.lex_state = 199, .external_lex_state = 17}, + [2314] = {.lex_state = 262, .external_lex_state = 30}, + [2315] = {.lex_state = 262, .external_lex_state = 18}, + [2316] = {.lex_state = 262, .external_lex_state = 30}, + [2317] = {.lex_state = 262, .external_lex_state = 18}, + [2318] = {.lex_state = 262, .external_lex_state = 18}, + [2319] = {.lex_state = 199, .external_lex_state = 17}, + [2320] = {.lex_state = 262, .external_lex_state = 18}, + [2321] = {.lex_state = 262, .external_lex_state = 18}, + [2322] = {.lex_state = 201, .external_lex_state = 17}, + [2323] = {.lex_state = 201, .external_lex_state = 17}, + [2324] = {.lex_state = 92, .external_lex_state = 29}, + [2325] = {.lex_state = 92, .external_lex_state = 29}, + [2326] = {.lex_state = 92, .external_lex_state = 18}, + [2327] = {.lex_state = 262, .external_lex_state = 18}, + [2328] = {.lex_state = 201, .external_lex_state = 17}, + [2329] = {.lex_state = 262, .external_lex_state = 18}, + [2330] = {.lex_state = 262, .external_lex_state = 18}, + [2331] = {.lex_state = 262, .external_lex_state = 18}, + [2332] = {.lex_state = 201, .external_lex_state = 17}, + [2333] = {.lex_state = 262, .external_lex_state = 18}, + [2334] = {.lex_state = 205, .external_lex_state = 17}, + [2335] = {.lex_state = 102, .external_lex_state = 2}, + [2336] = {.lex_state = 209, .external_lex_state = 19}, + [2337] = {.lex_state = 209, .external_lex_state = 19}, + [2338] = {.lex_state = 92, .external_lex_state = 29}, + [2339] = {.lex_state = 92, .external_lex_state = 29}, + [2340] = {.lex_state = 92, .external_lex_state = 18}, + [2341] = {.lex_state = 262, .external_lex_state = 18}, + [2342] = {.lex_state = 209, .external_lex_state = 19}, + [2343] = {.lex_state = 262, .external_lex_state = 18}, + [2344] = {.lex_state = 262, .external_lex_state = 18}, + [2345] = {.lex_state = 262, .external_lex_state = 18}, + [2346] = {.lex_state = 209, .external_lex_state = 19}, + [2347] = {.lex_state = 262, .external_lex_state = 18}, + [2348] = {.lex_state = 178, .external_lex_state = 4}, + [2349] = {.lex_state = 178, .external_lex_state = 21}, + [2350] = {.lex_state = 178, .external_lex_state = 21}, + [2351] = {.lex_state = 92, .external_lex_state = 29}, + [2352] = {.lex_state = 92, .external_lex_state = 29}, + [2353] = {.lex_state = 92, .external_lex_state = 18}, + [2354] = {.lex_state = 262, .external_lex_state = 18}, + [2355] = {.lex_state = 178, .external_lex_state = 21}, + [2356] = {.lex_state = 262, .external_lex_state = 18}, + [2357] = {.lex_state = 262, .external_lex_state = 18}, + [2358] = {.lex_state = 262, .external_lex_state = 18}, + [2359] = {.lex_state = 178, .external_lex_state = 21}, + [2360] = {.lex_state = 262, .external_lex_state = 18}, + [2361] = {.lex_state = 178, .external_lex_state = 6}, + [2362] = {.lex_state = 178, .external_lex_state = 6}, + [2363] = {.lex_state = 92, .external_lex_state = 29}, + [2364] = {.lex_state = 92, .external_lex_state = 29}, + [2365] = {.lex_state = 92, .external_lex_state = 18}, + [2366] = {.lex_state = 262, .external_lex_state = 18}, + [2367] = {.lex_state = 178, .external_lex_state = 6}, + [2368] = {.lex_state = 262, .external_lex_state = 18}, + [2369] = {.lex_state = 262, .external_lex_state = 18}, + [2370] = {.lex_state = 262, .external_lex_state = 18}, + [2371] = {.lex_state = 178, .external_lex_state = 6}, + [2372] = {.lex_state = 262, .external_lex_state = 18}, + [2373] = {.lex_state = 102, .external_lex_state = 22}, + [2374] = {.lex_state = 102, .external_lex_state = 22}, + [2375] = {.lex_state = 92, .external_lex_state = 29}, + [2376] = {.lex_state = 92, .external_lex_state = 29}, + [2377] = {.lex_state = 92, .external_lex_state = 18}, + [2378] = {.lex_state = 262, .external_lex_state = 18}, + [2379] = {.lex_state = 102, .external_lex_state = 22}, + [2380] = {.lex_state = 262, .external_lex_state = 18}, + [2381] = {.lex_state = 262, .external_lex_state = 18}, + [2382] = {.lex_state = 262, .external_lex_state = 18}, + [2383] = {.lex_state = 102, .external_lex_state = 22}, + [2384] = {.lex_state = 262, .external_lex_state = 18}, + [2385] = {.lex_state = 115, .external_lex_state = 10}, + [2386] = {.lex_state = 115, .external_lex_state = 10}, + [2387] = {.lex_state = 92, .external_lex_state = 29}, + [2388] = {.lex_state = 92, .external_lex_state = 29}, + [2389] = {.lex_state = 92, .external_lex_state = 18}, + [2390] = {.lex_state = 262, .external_lex_state = 18}, + [2391] = {.lex_state = 115, .external_lex_state = 10}, + [2392] = {.lex_state = 262, .external_lex_state = 18}, + [2393] = {.lex_state = 262, .external_lex_state = 18}, + [2394] = {.lex_state = 262, .external_lex_state = 18}, + [2395] = {.lex_state = 115, .external_lex_state = 10}, + [2396] = {.lex_state = 262, .external_lex_state = 18}, + [2397] = {.lex_state = 223, .external_lex_state = 29}, + [2398] = {.lex_state = 223, .external_lex_state = 18}, + [2399] = {.lex_state = 223, .external_lex_state = 29}, + [2400] = {.lex_state = 223, .external_lex_state = 18}, + [2401] = {.lex_state = 92, .external_lex_state = 29}, + [2402] = {.lex_state = 92, .external_lex_state = 29}, + [2403] = {.lex_state = 92, .external_lex_state = 29}, + [2404] = {.lex_state = 215}, + [2405] = {.lex_state = 260, .external_lex_state = 18}, + [2406] = {.lex_state = 85}, + [2407] = {.lex_state = 223, .external_lex_state = 18}, + [2408] = {.lex_state = 223, .external_lex_state = 18}, + [2409] = {.lex_state = 92, .external_lex_state = 29}, + [2410] = {.lex_state = 262, .external_lex_state = 30}, + [2411] = {.lex_state = 262, .external_lex_state = 18}, + [2412] = {.lex_state = 92, .external_lex_state = 29}, + [2413] = {.lex_state = 262, .external_lex_state = 30}, + [2414] = {.lex_state = 262, .external_lex_state = 18}, + [2415] = {.lex_state = 92, .external_lex_state = 29}, + [2416] = {.lex_state = 92, .external_lex_state = 29}, + [2417] = {.lex_state = 142, .external_lex_state = 6}, + [2418] = {.lex_state = 142, .external_lex_state = 6}, + [2419] = {.lex_state = 142, .external_lex_state = 6}, + [2420] = {.lex_state = 262, .external_lex_state = 18}, + [2421] = {.lex_state = 262, .external_lex_state = 18}, + [2422] = {.lex_state = 262, .external_lex_state = 29}, + [2423] = {.lex_state = 262, .external_lex_state = 29}, + [2424] = {.lex_state = 92, .external_lex_state = 29}, + [2425] = {.lex_state = 92, .external_lex_state = 29}, + [2426] = {.lex_state = 92, .external_lex_state = 18}, + [2427] = {.lex_state = 260, .external_lex_state = 18}, + [2428] = {.lex_state = 262, .external_lex_state = 29}, + [2429] = {.lex_state = 262, .external_lex_state = 30}, + [2430] = {.lex_state = 262, .external_lex_state = 18}, + [2431] = {.lex_state = 262, .external_lex_state = 30}, + [2432] = {.lex_state = 262, .external_lex_state = 18}, + [2433] = {.lex_state = 262, .external_lex_state = 18}, + [2434] = {.lex_state = 262, .external_lex_state = 29}, + [2435] = {.lex_state = 262, .external_lex_state = 18}, + [2436] = {.lex_state = 262, .external_lex_state = 18}, + [2437] = {.lex_state = 142, .external_lex_state = 6}, + [2438] = {.lex_state = 140, .external_lex_state = 21}, + [2439] = {.lex_state = 227, .external_lex_state = 6}, + [2440] = {.lex_state = 96, .external_lex_state = 23}, + [2441] = {.lex_state = 92, .external_lex_state = 29}, + [2442] = {.lex_state = 92, .external_lex_state = 29}, + [2443] = {.lex_state = 92, .external_lex_state = 18}, + [2444] = {.lex_state = 260, .external_lex_state = 18}, + [2445] = {.lex_state = 96, .external_lex_state = 23}, + [2446] = {.lex_state = 262, .external_lex_state = 30}, + [2447] = {.lex_state = 262, .external_lex_state = 18}, + [2448] = {.lex_state = 262, .external_lex_state = 30}, + [2449] = {.lex_state = 262, .external_lex_state = 18}, + [2450] = {.lex_state = 262, .external_lex_state = 18}, + [2451] = {.lex_state = 96, .external_lex_state = 23}, + [2452] = {.lex_state = 262, .external_lex_state = 18}, + [2453] = {.lex_state = 262, .external_lex_state = 18}, + [2454] = {.lex_state = 136, .external_lex_state = 6}, + [2455] = {.lex_state = 136, .external_lex_state = 6}, + [2456] = {.lex_state = 136, .external_lex_state = 6}, + [2457] = {.lex_state = 239, .external_lex_state = 10}, + [2458] = {.lex_state = 239, .external_lex_state = 10}, + [2459] = {.lex_state = 92, .external_lex_state = 29}, + [2460] = {.lex_state = 92, .external_lex_state = 29}, + [2461] = {.lex_state = 92, .external_lex_state = 18}, + [2462] = {.lex_state = 260, .external_lex_state = 18}, + [2463] = {.lex_state = 239, .external_lex_state = 10}, + [2464] = {.lex_state = 262, .external_lex_state = 30}, + [2465] = {.lex_state = 262, .external_lex_state = 18}, + [2466] = {.lex_state = 262, .external_lex_state = 30}, + [2467] = {.lex_state = 262, .external_lex_state = 18}, + [2468] = {.lex_state = 262, .external_lex_state = 18}, + [2469] = {.lex_state = 239, .external_lex_state = 10}, + [2470] = {.lex_state = 262, .external_lex_state = 18}, + [2471] = {.lex_state = 262, .external_lex_state = 18}, + [2472] = {.lex_state = 184, .external_lex_state = 21}, + [2473] = {.lex_state = 184, .external_lex_state = 21}, + [2474] = {.lex_state = 92, .external_lex_state = 29}, + [2475] = {.lex_state = 92, .external_lex_state = 29}, + [2476] = {.lex_state = 92, .external_lex_state = 18}, + [2477] = {.lex_state = 262, .external_lex_state = 18}, + [2478] = {.lex_state = 184, .external_lex_state = 21}, + [2479] = {.lex_state = 262, .external_lex_state = 18}, + [2480] = {.lex_state = 262, .external_lex_state = 18}, + [2481] = {.lex_state = 262, .external_lex_state = 18}, + [2482] = {.lex_state = 184, .external_lex_state = 21}, + [2483] = {.lex_state = 262, .external_lex_state = 18}, + [2484] = {.lex_state = 186, .external_lex_state = 5}, + [2485] = {.lex_state = 311}, + [2486] = {.lex_state = 311}, + [2487] = {.lex_state = 242, .external_lex_state = 14}, + [2488] = {.lex_state = 242, .external_lex_state = 14}, + [2489] = {.lex_state = 92, .external_lex_state = 29}, + [2490] = {.lex_state = 92, .external_lex_state = 29}, + [2491] = {.lex_state = 92, .external_lex_state = 18}, + [2492] = {.lex_state = 262, .external_lex_state = 18}, + [2493] = {.lex_state = 242, .external_lex_state = 14}, + [2494] = {.lex_state = 262, .external_lex_state = 18}, + [2495] = {.lex_state = 262, .external_lex_state = 18}, + [2496] = {.lex_state = 262, .external_lex_state = 18}, + [2497] = {.lex_state = 242, .external_lex_state = 14}, + [2498] = {.lex_state = 262, .external_lex_state = 18}, + [2499] = {.lex_state = 153}, + [2500] = {.lex_state = 268, .external_lex_state = 14}, + [2501] = {.lex_state = 268, .external_lex_state = 14}, + [2502] = {.lex_state = 92, .external_lex_state = 29}, + [2503] = {.lex_state = 92, .external_lex_state = 29}, + [2504] = {.lex_state = 92, .external_lex_state = 18}, + [2505] = {.lex_state = 260, .external_lex_state = 18}, + [2506] = {.lex_state = 268, .external_lex_state = 14}, + [2507] = {.lex_state = 262, .external_lex_state = 30}, + [2508] = {.lex_state = 262, .external_lex_state = 18}, + [2509] = {.lex_state = 262, .external_lex_state = 30}, + [2510] = {.lex_state = 262, .external_lex_state = 18}, + [2511] = {.lex_state = 262, .external_lex_state = 18}, + [2512] = {.lex_state = 268, .external_lex_state = 14}, + [2513] = {.lex_state = 262, .external_lex_state = 18}, + [2514] = {.lex_state = 262, .external_lex_state = 18}, + [2515] = {.lex_state = 270, .external_lex_state = 10}, + [2516] = {.lex_state = 270, .external_lex_state = 10}, + [2517] = {.lex_state = 92, .external_lex_state = 29}, + [2518] = {.lex_state = 92, .external_lex_state = 29}, + [2519] = {.lex_state = 92, .external_lex_state = 18}, + [2520] = {.lex_state = 262, .external_lex_state = 18}, + [2521] = {.lex_state = 270, .external_lex_state = 10}, + [2522] = {.lex_state = 262, .external_lex_state = 18}, + [2523] = {.lex_state = 262, .external_lex_state = 18}, + [2524] = {.lex_state = 262, .external_lex_state = 18}, + [2525] = {.lex_state = 270, .external_lex_state = 10}, + [2526] = {.lex_state = 262, .external_lex_state = 18}, + [2527] = {.lex_state = 247, .external_lex_state = 10}, + [2528] = {.lex_state = 247, .external_lex_state = 10}, + [2529] = {.lex_state = 247, .external_lex_state = 10}, + [2530] = {.lex_state = 262, .external_lex_state = 18}, + [2531] = {.lex_state = 262, .external_lex_state = 18}, + [2532] = {.lex_state = 247, .external_lex_state = 10}, + [2533] = {.lex_state = 140, .external_lex_state = 26}, + [2534] = {.lex_state = 140, .external_lex_state = 26}, + [2535] = {.lex_state = 92, .external_lex_state = 29}, + [2536] = {.lex_state = 92, .external_lex_state = 29}, + [2537] = {.lex_state = 92, .external_lex_state = 18}, + [2538] = {.lex_state = 260, .external_lex_state = 18}, + [2539] = {.lex_state = 140, .external_lex_state = 26}, + [2540] = {.lex_state = 262, .external_lex_state = 30}, + [2541] = {.lex_state = 262, .external_lex_state = 18}, + [2542] = {.lex_state = 262, .external_lex_state = 30}, + [2543] = {.lex_state = 262, .external_lex_state = 18}, + [2544] = {.lex_state = 262, .external_lex_state = 18}, + [2545] = {.lex_state = 140, .external_lex_state = 26}, + [2546] = {.lex_state = 262, .external_lex_state = 18}, + [2547] = {.lex_state = 262, .external_lex_state = 18}, + [2548] = {.lex_state = 311}, + [2549] = {.lex_state = 136, .external_lex_state = 12}, + [2550] = {.lex_state = 311}, + [2551] = {.lex_state = 153}, + [2552] = {.lex_state = 266}, + [2553] = {.lex_state = 136, .external_lex_state = 12}, + [2554] = {.lex_state = 136, .external_lex_state = 12}, + [2555] = {.lex_state = 303}, + [2556] = {.lex_state = 136, .external_lex_state = 12}, + [2557] = {.lex_state = 328}, + [2558] = {.lex_state = 102}, + [2559] = {.lex_state = 136, .external_lex_state = 12}, + [2560] = {.lex_state = 328}, + [2561] = {.lex_state = 102}, + [2562] = {.lex_state = 108, .external_lex_state = 11}, + [2563] = {.lex_state = 108, .external_lex_state = 26}, + [2564] = {.lex_state = 108, .external_lex_state = 26}, + [2565] = {.lex_state = 92, .external_lex_state = 29}, + [2566] = {.lex_state = 92, .external_lex_state = 29}, + [2567] = {.lex_state = 92, .external_lex_state = 18}, + [2568] = {.lex_state = 262, .external_lex_state = 18}, + [2569] = {.lex_state = 108, .external_lex_state = 26}, + [2570] = {.lex_state = 262, .external_lex_state = 18}, + [2571] = {.lex_state = 262, .external_lex_state = 18}, + [2572] = {.lex_state = 262, .external_lex_state = 18}, + [2573] = {.lex_state = 108, .external_lex_state = 26}, + [2574] = {.lex_state = 262, .external_lex_state = 18}, + [2575] = {.lex_state = 108, .external_lex_state = 13}, + [2576] = {.lex_state = 108, .external_lex_state = 13}, + [2577] = {.lex_state = 92, .external_lex_state = 29}, + [2578] = {.lex_state = 92, .external_lex_state = 29}, + [2579] = {.lex_state = 92, .external_lex_state = 18}, + [2580] = {.lex_state = 262, .external_lex_state = 18}, + [2581] = {.lex_state = 108, .external_lex_state = 13}, + [2582] = {.lex_state = 262, .external_lex_state = 18}, + [2583] = {.lex_state = 262, .external_lex_state = 18}, + [2584] = {.lex_state = 262, .external_lex_state = 18}, + [2585] = {.lex_state = 108, .external_lex_state = 13}, + [2586] = {.lex_state = 262, .external_lex_state = 18}, + [2587] = {.lex_state = 112, .external_lex_state = 13}, + [2588] = {.lex_state = 112, .external_lex_state = 13}, + [2589] = {.lex_state = 112, .external_lex_state = 13}, + [2590] = {.lex_state = 262, .external_lex_state = 18}, + [2591] = {.lex_state = 262, .external_lex_state = 18}, + [2592] = {.lex_state = 112, .external_lex_state = 13}, + [2593] = {.lex_state = 285, .external_lex_state = 4}, + [2594] = {.lex_state = 239}, + [2595] = {.lex_state = 102}, + [2596] = {.lex_state = 285, .external_lex_state = 21}, + [2597] = {.lex_state = 285, .external_lex_state = 21}, + [2598] = {.lex_state = 215}, + [2599] = {.lex_state = 115}, + [2600] = {.lex_state = 285, .external_lex_state = 21}, + [2601] = {.lex_state = 285, .external_lex_state = 21}, + [2602] = {.lex_state = 285, .external_lex_state = 21}, + [2603] = {.lex_state = 85}, + [2604] = {.lex_state = 221, .external_lex_state = 7}, + [2605] = {.lex_state = 223, .external_lex_state = 18}, + [2606] = {.lex_state = 223, .external_lex_state = 18}, + [2607] = {.lex_state = 85}, + [2608] = {.lex_state = 78}, + [2609] = {.lex_state = 85}, + [2610] = {.lex_state = 273, .external_lex_state = 4}, + [2611] = {.lex_state = 239}, + [2612] = {.lex_state = 273, .external_lex_state = 21}, + [2613] = {.lex_state = 273, .external_lex_state = 21}, + [2614] = {.lex_state = 273, .external_lex_state = 21}, + [2615] = {.lex_state = 273, .external_lex_state = 21}, + [2616] = {.lex_state = 273, .external_lex_state = 21}, + [2617] = {.lex_state = 215}, + [2618] = {.lex_state = 260, .external_lex_state = 18}, + [2619] = {.lex_state = 85}, + [2620] = {.lex_state = 223, .external_lex_state = 18}, + [2621] = {.lex_state = 223, .external_lex_state = 18}, + [2622] = {.lex_state = 273, .external_lex_state = 21}, + [2623] = {.lex_state = 262, .external_lex_state = 30}, + [2624] = {.lex_state = 262, .external_lex_state = 18}, + [2625] = {.lex_state = 273, .external_lex_state = 21}, + [2626] = {.lex_state = 262, .external_lex_state = 30}, + [2627] = {.lex_state = 262, .external_lex_state = 18}, + [2628] = {.lex_state = 273, .external_lex_state = 21}, + [2629] = {.lex_state = 273, .external_lex_state = 21}, + [2630] = {.lex_state = 273, .external_lex_state = 6}, + [2631] = {.lex_state = 273, .external_lex_state = 6}, + [2632] = {.lex_state = 273, .external_lex_state = 6}, + [2633] = {.lex_state = 215}, + [2634] = {.lex_state = 260, .external_lex_state = 18}, + [2635] = {.lex_state = 85}, + [2636] = {.lex_state = 223, .external_lex_state = 18}, + [2637] = {.lex_state = 223, .external_lex_state = 18}, + [2638] = {.lex_state = 273, .external_lex_state = 6}, + [2639] = {.lex_state = 262, .external_lex_state = 30}, + [2640] = {.lex_state = 262, .external_lex_state = 18}, + [2641] = {.lex_state = 273, .external_lex_state = 6}, + [2642] = {.lex_state = 262, .external_lex_state = 30}, + [2643] = {.lex_state = 262, .external_lex_state = 18}, + [2644] = {.lex_state = 273, .external_lex_state = 6}, + [2645] = {.lex_state = 273, .external_lex_state = 6}, + [2646] = {.lex_state = 279, .external_lex_state = 6}, + [2647] = {.lex_state = 279, .external_lex_state = 6}, + [2648] = {.lex_state = 92, .external_lex_state = 29}, + [2649] = {.lex_state = 92, .external_lex_state = 29}, + [2650] = {.lex_state = 92, .external_lex_state = 18}, + [2651] = {.lex_state = 260, .external_lex_state = 18}, + [2652] = {.lex_state = 279, .external_lex_state = 6}, + [2653] = {.lex_state = 262, .external_lex_state = 30}, + [2654] = {.lex_state = 262, .external_lex_state = 18}, + [2655] = {.lex_state = 262, .external_lex_state = 30}, + [2656] = {.lex_state = 262, .external_lex_state = 18}, + [2657] = {.lex_state = 262, .external_lex_state = 18}, + [2658] = {.lex_state = 279, .external_lex_state = 6}, + [2659] = {.lex_state = 262, .external_lex_state = 18}, + [2660] = {.lex_state = 262, .external_lex_state = 18}, + [2661] = {.lex_state = 283, .external_lex_state = 6}, + [2662] = {.lex_state = 283, .external_lex_state = 6}, + [2663] = {.lex_state = 102}, + [2664] = {.lex_state = 283, .external_lex_state = 6}, + [2665] = {.lex_state = 333, .external_lex_state = 6}, + [2666] = {.lex_state = 215}, + [2667] = {.lex_state = 115}, + [2668] = {.lex_state = 333, .external_lex_state = 6}, + [2669] = {.lex_state = 333, .external_lex_state = 6}, + [2670] = {.lex_state = 333, .external_lex_state = 6}, + [2671] = {.lex_state = 85}, + [2672] = {.lex_state = 221, .external_lex_state = 7}, + [2673] = {.lex_state = 223, .external_lex_state = 18}, + [2674] = {.lex_state = 223, .external_lex_state = 18}, + [2675] = {.lex_state = 85}, + [2676] = {.lex_state = 78}, + [2677] = {.lex_state = 85}, + [2678] = {.lex_state = 249, .external_lex_state = 2}, + [2679] = {.lex_state = 306, .external_lex_state = 4}, + [2680] = {.lex_state = 239}, + [2681] = {.lex_state = 102}, + [2682] = {.lex_state = 306, .external_lex_state = 21}, + [2683] = {.lex_state = 306, .external_lex_state = 21}, + [2684] = {.lex_state = 215}, + [2685] = {.lex_state = 115}, + [2686] = {.lex_state = 306, .external_lex_state = 21}, + [2687] = {.lex_state = 306, .external_lex_state = 21}, + [2688] = {.lex_state = 306, .external_lex_state = 21}, + [2689] = {.lex_state = 85}, + [2690] = {.lex_state = 221, .external_lex_state = 7}, + [2691] = {.lex_state = 223, .external_lex_state = 18}, + [2692] = {.lex_state = 223, .external_lex_state = 18}, + [2693] = {.lex_state = 85}, + [2694] = {.lex_state = 78}, + [2695] = {.lex_state = 85}, + [2696] = {.lex_state = 303}, + [2697] = {.lex_state = 324, .external_lex_state = 4}, + [2698] = {.lex_state = 239}, + [2699] = {.lex_state = 324, .external_lex_state = 21}, + [2700] = {.lex_state = 115}, + [2701] = {.lex_state = 122}, + [2702] = {.lex_state = 324, .external_lex_state = 21}, + [2703] = {.lex_state = 122, .external_lex_state = 7}, + [2704] = {.lex_state = 78, .external_lex_state = 2}, + [2705] = {.lex_state = 78, .external_lex_state = 2}, + [2706] = {.lex_state = 78, .external_lex_state = 2}, + [2707] = {.lex_state = 144, .external_lex_state = 8}, + [2708] = {.lex_state = 102}, + [2709] = {.lex_state = 316, .external_lex_state = 21}, + [2710] = {.lex_state = 316, .external_lex_state = 21}, + [2711] = {.lex_state = 215}, + [2712] = {.lex_state = 115}, + [2713] = {.lex_state = 316, .external_lex_state = 21}, + [2714] = {.lex_state = 316, .external_lex_state = 21}, + [2715] = {.lex_state = 316, .external_lex_state = 21}, + [2716] = {.lex_state = 85}, + [2717] = {.lex_state = 221, .external_lex_state = 7}, + [2718] = {.lex_state = 223, .external_lex_state = 18}, + [2719] = {.lex_state = 223, .external_lex_state = 18}, + [2720] = {.lex_state = 85}, + [2721] = {.lex_state = 78}, + [2722] = {.lex_state = 85}, + [2723] = {.lex_state = 316, .external_lex_state = 4}, + [2724] = {.lex_state = 102}, + [2725] = {.lex_state = 316, .external_lex_state = 6}, + [2726] = {.lex_state = 316, .external_lex_state = 6}, + [2727] = {.lex_state = 215}, + [2728] = {.lex_state = 115}, + [2729] = {.lex_state = 316, .external_lex_state = 6}, + [2730] = {.lex_state = 316, .external_lex_state = 6}, + [2731] = {.lex_state = 316, .external_lex_state = 6}, + [2732] = {.lex_state = 85}, + [2733] = {.lex_state = 221, .external_lex_state = 7}, + [2734] = {.lex_state = 223, .external_lex_state = 18}, + [2735] = {.lex_state = 223, .external_lex_state = 18}, + [2736] = {.lex_state = 85}, + [2737] = {.lex_state = 78}, + [2738] = {.lex_state = 85}, + [2739] = {.lex_state = 316, .external_lex_state = 5}, + [2740] = {.lex_state = 318, .external_lex_state = 6}, + [2741] = {.lex_state = 318, .external_lex_state = 6}, + [2742] = {.lex_state = 318, .external_lex_state = 6}, + [2743] = {.lex_state = 215}, + [2744] = {.lex_state = 260, .external_lex_state = 18}, + [2745] = {.lex_state = 85}, + [2746] = {.lex_state = 223, .external_lex_state = 18}, + [2747] = {.lex_state = 223, .external_lex_state = 18}, + [2748] = {.lex_state = 318, .external_lex_state = 6}, + [2749] = {.lex_state = 262, .external_lex_state = 30}, + [2750] = {.lex_state = 262, .external_lex_state = 18}, + [2751] = {.lex_state = 318, .external_lex_state = 6}, + [2752] = {.lex_state = 262, .external_lex_state = 30}, + [2753] = {.lex_state = 262, .external_lex_state = 18}, + [2754] = {.lex_state = 318, .external_lex_state = 6}, + [2755] = {.lex_state = 318, .external_lex_state = 6}, + [2756] = {.lex_state = 102}, + [2757] = {.lex_state = 322, .external_lex_state = 5}, + [2758] = {.lex_state = 324, .external_lex_state = 4}, + [2759] = {.lex_state = 322, .external_lex_state = 5}, + [2760] = {.lex_state = 324, .external_lex_state = 4}, + [2761] = {.lex_state = 322, .external_lex_state = 6}, + [2762] = {.lex_state = 322, .external_lex_state = 6}, + [2763] = {.lex_state = 322, .external_lex_state = 6}, + [2764] = {.lex_state = 322, .external_lex_state = 6}, + [2765] = {.lex_state = 287, .external_lex_state = 2}, + [2766] = {.lex_state = 322, .external_lex_state = 5}, + [2767] = {.lex_state = 318, .external_lex_state = 5}, + [2768] = {.lex_state = 318, .external_lex_state = 6}, + [2769] = {.lex_state = 318, .external_lex_state = 6}, + [2770] = {.lex_state = 318, .external_lex_state = 5}, + [2771] = {.lex_state = 287, .external_lex_state = 2}, + [2772] = {.lex_state = 326, .external_lex_state = 9}, + [2773] = {.lex_state = 318, .external_lex_state = 5}, + [2774] = {.lex_state = 289, .external_lex_state = 4}, + [2775] = {.lex_state = 239}, + [2776] = {.lex_state = 289, .external_lex_state = 21}, + [2777] = {.lex_state = 289, .external_lex_state = 21}, + [2778] = {.lex_state = 289, .external_lex_state = 21}, + [2779] = {.lex_state = 289, .external_lex_state = 21}, + [2780] = {.lex_state = 289, .external_lex_state = 21}, + [2781] = {.lex_state = 215}, + [2782] = {.lex_state = 260, .external_lex_state = 18}, + [2783] = {.lex_state = 85}, + [2784] = {.lex_state = 223, .external_lex_state = 18}, + [2785] = {.lex_state = 223, .external_lex_state = 18}, + [2786] = {.lex_state = 289, .external_lex_state = 21}, + [2787] = {.lex_state = 262, .external_lex_state = 30}, + [2788] = {.lex_state = 262, .external_lex_state = 18}, + [2789] = {.lex_state = 289, .external_lex_state = 21}, + [2790] = {.lex_state = 262, .external_lex_state = 30}, + [2791] = {.lex_state = 262, .external_lex_state = 18}, + [2792] = {.lex_state = 289, .external_lex_state = 21}, + [2793] = {.lex_state = 289, .external_lex_state = 21}, + [2794] = {.lex_state = 289, .external_lex_state = 6}, + [2795] = {.lex_state = 289, .external_lex_state = 6}, + [2796] = {.lex_state = 289, .external_lex_state = 6}, + [2797] = {.lex_state = 215}, + [2798] = {.lex_state = 260, .external_lex_state = 18}, + [2799] = {.lex_state = 85}, + [2800] = {.lex_state = 223, .external_lex_state = 18}, + [2801] = {.lex_state = 223, .external_lex_state = 18}, + [2802] = {.lex_state = 289, .external_lex_state = 6}, + [2803] = {.lex_state = 262, .external_lex_state = 30}, + [2804] = {.lex_state = 262, .external_lex_state = 18}, + [2805] = {.lex_state = 289, .external_lex_state = 6}, + [2806] = {.lex_state = 262, .external_lex_state = 30}, + [2807] = {.lex_state = 262, .external_lex_state = 18}, + [2808] = {.lex_state = 289, .external_lex_state = 6}, + [2809] = {.lex_state = 289, .external_lex_state = 6}, + [2810] = {.lex_state = 299, .external_lex_state = 6}, + [2811] = {.lex_state = 299, .external_lex_state = 6}, + [2812] = {.lex_state = 92, .external_lex_state = 29}, + [2813] = {.lex_state = 92, .external_lex_state = 29}, + [2814] = {.lex_state = 92, .external_lex_state = 18}, + [2815] = {.lex_state = 260, .external_lex_state = 18}, + [2816] = {.lex_state = 299, .external_lex_state = 6}, + [2817] = {.lex_state = 262, .external_lex_state = 30}, + [2818] = {.lex_state = 262, .external_lex_state = 18}, + [2819] = {.lex_state = 262, .external_lex_state = 30}, + [2820] = {.lex_state = 262, .external_lex_state = 18}, + [2821] = {.lex_state = 262, .external_lex_state = 18}, + [2822] = {.lex_state = 299, .external_lex_state = 6}, + [2823] = {.lex_state = 262, .external_lex_state = 18}, + [2824] = {.lex_state = 262, .external_lex_state = 18}, + [2825] = {.lex_state = 186, .external_lex_state = 5}, + [2826] = {.lex_state = 303, .external_lex_state = 6}, + [2827] = {.lex_state = 303, .external_lex_state = 6}, + [2828] = {.lex_state = 303, .external_lex_state = 6}, + [2829] = {.lex_state = 255, .external_lex_state = 2}, + [2830] = {.lex_state = 239, .external_lex_state = 10}, + [2831] = {.lex_state = 239, .external_lex_state = 10}, + [2832] = {.lex_state = 239}, + [2833] = {.lex_state = 85}, + [2834] = {.lex_state = 308}, + [2835] = {.lex_state = 106, .external_lex_state = 2}, + [2836] = {.lex_state = 335, .external_lex_state = 4}, + [2837] = {.lex_state = 335, .external_lex_state = 5}, + [2838] = {.lex_state = 341, .external_lex_state = 6}, + [2839] = {.lex_state = 115}, + [2840] = {.lex_state = 122}, + [2841] = {.lex_state = 341, .external_lex_state = 6}, + [2842] = {.lex_state = 122, .external_lex_state = 7}, + [2843] = {.lex_state = 78, .external_lex_state = 2}, + [2844] = {.lex_state = 78, .external_lex_state = 2}, + [2845] = {.lex_state = 78, .external_lex_state = 2}, + [2846] = {.lex_state = 343, .external_lex_state = 6}, + [2847] = {.lex_state = 328}, + [2848] = {.lex_state = 328, .external_lex_state = 5}, + [2849] = {.lex_state = 341, .external_lex_state = 5}, + [2850] = {.lex_state = 345, .external_lex_state = 4}, + [2851] = {.lex_state = 85}, + [2852] = {.lex_state = 341, .external_lex_state = 5}, + [2853] = {.lex_state = 78, .external_lex_state = 2}, + [2854] = {.lex_state = 102, .external_lex_state = 2}, + [2855] = {.lex_state = 331, .external_lex_state = 2}, + [2856] = {.lex_state = 239}, + [2857] = {.lex_state = 239, .external_lex_state = 10}, + [2858] = {.lex_state = 308}, + [2859] = {.lex_state = 328}, + [2860] = {.lex_state = 331, .external_lex_state = 2}, + [2861] = {.lex_state = 186, .external_lex_state = 5}, + [2862] = {.lex_state = 239, .external_lex_state = 10}, + [2863] = {.lex_state = 239, .external_lex_state = 10}, + [2864] = {.lex_state = 239}, + [2865] = {.lex_state = 328}, + [2866] = {.lex_state = 186, .external_lex_state = 5}, + [2867] = {.lex_state = 328}, + [2868] = {.lex_state = 149, .external_lex_state = 14}, + [2869] = {.lex_state = 149, .external_lex_state = 14}, + [2870] = {.lex_state = 149, .external_lex_state = 14}, + [2871] = {.lex_state = 262, .external_lex_state = 18}, + [2872] = {.lex_state = 262, .external_lex_state = 18}, + [2873] = {.lex_state = 149, .external_lex_state = 14}, + [2874] = {.lex_state = 207, .external_lex_state = 27}, + [2875] = {.lex_state = 207, .external_lex_state = 27}, + [2876] = {.lex_state = 92, .external_lex_state = 29}, + [2877] = {.lex_state = 92, .external_lex_state = 29}, + [2878] = {.lex_state = 92, .external_lex_state = 18}, + [2879] = {.lex_state = 260, .external_lex_state = 18}, + [2880] = {.lex_state = 207, .external_lex_state = 27}, + [2881] = {.lex_state = 262, .external_lex_state = 30}, + [2882] = {.lex_state = 262, .external_lex_state = 18}, + [2883] = {.lex_state = 262, .external_lex_state = 30}, + [2884] = {.lex_state = 262, .external_lex_state = 18}, + [2885] = {.lex_state = 262, .external_lex_state = 18}, + [2886] = {.lex_state = 207, .external_lex_state = 27}, + [2887] = {.lex_state = 262, .external_lex_state = 18}, + [2888] = {.lex_state = 262, .external_lex_state = 18}, + [2889] = {.lex_state = 311}, + [2890] = {.lex_state = 205, .external_lex_state = 16}, + [2891] = {.lex_state = 311}, + [2892] = {.lex_state = 153}, + [2893] = {.lex_state = 266}, + [2894] = {.lex_state = 205, .external_lex_state = 16}, + [2895] = {.lex_state = 205, .external_lex_state = 16}, + [2896] = {.lex_state = 303}, + [2897] = {.lex_state = 205, .external_lex_state = 16}, + [2898] = {.lex_state = 328}, + [2899] = {.lex_state = 102}, + [2900] = {.lex_state = 205, .external_lex_state = 16}, + [2901] = {.lex_state = 328}, + [2902] = {.lex_state = 102}, + [2903] = {.lex_state = 199, .external_lex_state = 15}, + [2904] = {.lex_state = 199, .external_lex_state = 27}, + [2905] = {.lex_state = 199, .external_lex_state = 27}, + [2906] = {.lex_state = 92, .external_lex_state = 29}, + [2907] = {.lex_state = 92, .external_lex_state = 29}, + [2908] = {.lex_state = 92, .external_lex_state = 18}, + [2909] = {.lex_state = 262, .external_lex_state = 18}, + [2910] = {.lex_state = 199, .external_lex_state = 27}, + [2911] = {.lex_state = 262, .external_lex_state = 18}, + [2912] = {.lex_state = 262, .external_lex_state = 18}, + [2913] = {.lex_state = 262, .external_lex_state = 18}, + [2914] = {.lex_state = 199, .external_lex_state = 27}, + [2915] = {.lex_state = 262, .external_lex_state = 18}, + [2916] = {.lex_state = 199, .external_lex_state = 17}, + [2917] = {.lex_state = 199, .external_lex_state = 17}, + [2918] = {.lex_state = 92, .external_lex_state = 29}, + [2919] = {.lex_state = 92, .external_lex_state = 29}, + [2920] = {.lex_state = 92, .external_lex_state = 18}, + [2921] = {.lex_state = 262, .external_lex_state = 18}, + [2922] = {.lex_state = 199, .external_lex_state = 17}, + [2923] = {.lex_state = 262, .external_lex_state = 18}, + [2924] = {.lex_state = 262, .external_lex_state = 18}, + [2925] = {.lex_state = 262, .external_lex_state = 18}, + [2926] = {.lex_state = 199, .external_lex_state = 17}, + [2927] = {.lex_state = 262, .external_lex_state = 18}, + [2928] = {.lex_state = 201, .external_lex_state = 17}, + [2929] = {.lex_state = 201, .external_lex_state = 17}, + [2930] = {.lex_state = 201, .external_lex_state = 17}, + [2931] = {.lex_state = 262, .external_lex_state = 18}, + [2932] = {.lex_state = 262, .external_lex_state = 18}, + [2933] = {.lex_state = 201, .external_lex_state = 17}, + [2934] = {.lex_state = 209, .external_lex_state = 19}, + [2935] = {.lex_state = 209, .external_lex_state = 19}, + [2936] = {.lex_state = 209, .external_lex_state = 19}, + [2937] = {.lex_state = 262, .external_lex_state = 18}, + [2938] = {.lex_state = 262, .external_lex_state = 18}, + [2939] = {.lex_state = 209, .external_lex_state = 19}, + [2940] = {.lex_state = 178, .external_lex_state = 21}, + [2941] = {.lex_state = 178, .external_lex_state = 21}, + [2942] = {.lex_state = 178, .external_lex_state = 21}, + [2943] = {.lex_state = 262, .external_lex_state = 18}, + [2944] = {.lex_state = 262, .external_lex_state = 18}, + [2945] = {.lex_state = 178, .external_lex_state = 21}, + [2946] = {.lex_state = 178, .external_lex_state = 6}, + [2947] = {.lex_state = 178, .external_lex_state = 6}, + [2948] = {.lex_state = 178, .external_lex_state = 6}, + [2949] = {.lex_state = 262, .external_lex_state = 18}, + [2950] = {.lex_state = 262, .external_lex_state = 18}, + [2951] = {.lex_state = 178, .external_lex_state = 6}, + [2952] = {.lex_state = 102, .external_lex_state = 22}, + [2953] = {.lex_state = 102, .external_lex_state = 22}, + [2954] = {.lex_state = 102, .external_lex_state = 22}, + [2955] = {.lex_state = 262, .external_lex_state = 18}, + [2956] = {.lex_state = 262, .external_lex_state = 18}, + [2957] = {.lex_state = 102, .external_lex_state = 22}, + [2958] = {.lex_state = 115, .external_lex_state = 10}, + [2959] = {.lex_state = 115, .external_lex_state = 10}, + [2960] = {.lex_state = 115, .external_lex_state = 10}, + [2961] = {.lex_state = 262, .external_lex_state = 18}, + [2962] = {.lex_state = 262, .external_lex_state = 18}, + [2963] = {.lex_state = 115, .external_lex_state = 10}, + [2964] = {.lex_state = 223, .external_lex_state = 18}, + [2965] = {.lex_state = 223, .external_lex_state = 18}, + [2966] = {.lex_state = 92, .external_lex_state = 29}, + [2967] = {.lex_state = 92, .external_lex_state = 29}, + [2968] = {.lex_state = 92, .external_lex_state = 29}, + [2969] = {.lex_state = 92, .external_lex_state = 29}, + [2970] = {.lex_state = 92, .external_lex_state = 18}, + [2971] = {.lex_state = 260, .external_lex_state = 18}, + [2972] = {.lex_state = 92, .external_lex_state = 29}, + [2973] = {.lex_state = 262, .external_lex_state = 30}, + [2974] = {.lex_state = 262, .external_lex_state = 18}, + [2975] = {.lex_state = 262, .external_lex_state = 30}, + [2976] = {.lex_state = 262, .external_lex_state = 18}, + [2977] = {.lex_state = 262, .external_lex_state = 18}, + [2978] = {.lex_state = 92, .external_lex_state = 29}, + [2979] = {.lex_state = 262, .external_lex_state = 18}, + [2980] = {.lex_state = 262, .external_lex_state = 18}, + [2981] = {.lex_state = 142, .external_lex_state = 6}, + [2982] = {.lex_state = 142, .external_lex_state = 6}, + [2983] = {.lex_state = 262, .external_lex_state = 29}, + [2984] = {.lex_state = 262, .external_lex_state = 29}, + [2985] = {.lex_state = 92, .external_lex_state = 29}, + [2986] = {.lex_state = 92, .external_lex_state = 29}, + [2987] = {.lex_state = 92, .external_lex_state = 18}, + [2988] = {.lex_state = 262, .external_lex_state = 18}, + [2989] = {.lex_state = 262, .external_lex_state = 29}, + [2990] = {.lex_state = 262, .external_lex_state = 18}, + [2991] = {.lex_state = 262, .external_lex_state = 18}, + [2992] = {.lex_state = 262, .external_lex_state = 18}, + [2993] = {.lex_state = 262, .external_lex_state = 29}, + [2994] = {.lex_state = 262, .external_lex_state = 18}, + [2995] = {.lex_state = 96, .external_lex_state = 23}, + [2996] = {.lex_state = 96, .external_lex_state = 23}, + [2997] = {.lex_state = 92, .external_lex_state = 29}, + [2998] = {.lex_state = 92, .external_lex_state = 29}, + [2999] = {.lex_state = 92, .external_lex_state = 18}, + [3000] = {.lex_state = 262, .external_lex_state = 18}, + [3001] = {.lex_state = 96, .external_lex_state = 23}, + [3002] = {.lex_state = 262, .external_lex_state = 18}, + [3003] = {.lex_state = 262, .external_lex_state = 18}, + [3004] = {.lex_state = 262, .external_lex_state = 18}, + [3005] = {.lex_state = 96, .external_lex_state = 23}, + [3006] = {.lex_state = 262, .external_lex_state = 18}, + [3007] = {.lex_state = 136, .external_lex_state = 6}, + [3008] = {.lex_state = 239, .external_lex_state = 10}, + [3009] = {.lex_state = 239, .external_lex_state = 10}, + [3010] = {.lex_state = 92, .external_lex_state = 29}, + [3011] = {.lex_state = 92, .external_lex_state = 29}, + [3012] = {.lex_state = 92, .external_lex_state = 18}, + [3013] = {.lex_state = 262, .external_lex_state = 18}, + [3014] = {.lex_state = 239, .external_lex_state = 10}, + [3015] = {.lex_state = 262, .external_lex_state = 18}, + [3016] = {.lex_state = 262, .external_lex_state = 18}, + [3017] = {.lex_state = 262, .external_lex_state = 18}, + [3018] = {.lex_state = 239, .external_lex_state = 10}, + [3019] = {.lex_state = 262, .external_lex_state = 18}, + [3020] = {.lex_state = 184, .external_lex_state = 21}, + [3021] = {.lex_state = 184, .external_lex_state = 21}, + [3022] = {.lex_state = 184, .external_lex_state = 21}, + [3023] = {.lex_state = 262, .external_lex_state = 18}, + [3024] = {.lex_state = 262, .external_lex_state = 18}, + [3025] = {.lex_state = 184, .external_lex_state = 21}, + [3026] = {.lex_state = 186, .external_lex_state = 5}, + [3027] = {.lex_state = 311}, + [3028] = {.lex_state = 242, .external_lex_state = 14}, + [3029] = {.lex_state = 242, .external_lex_state = 14}, + [3030] = {.lex_state = 242, .external_lex_state = 14}, + [3031] = {.lex_state = 262, .external_lex_state = 18}, + [3032] = {.lex_state = 262, .external_lex_state = 18}, + [3033] = {.lex_state = 242, .external_lex_state = 14}, + [3034] = {.lex_state = 311}, + [3035] = {.lex_state = 268, .external_lex_state = 14}, + [3036] = {.lex_state = 268, .external_lex_state = 14}, + [3037] = {.lex_state = 92, .external_lex_state = 29}, + [3038] = {.lex_state = 92, .external_lex_state = 29}, + [3039] = {.lex_state = 92, .external_lex_state = 18}, + [3040] = {.lex_state = 262, .external_lex_state = 18}, + [3041] = {.lex_state = 268, .external_lex_state = 14}, + [3042] = {.lex_state = 262, .external_lex_state = 18}, + [3043] = {.lex_state = 262, .external_lex_state = 18}, + [3044] = {.lex_state = 262, .external_lex_state = 18}, + [3045] = {.lex_state = 268, .external_lex_state = 14}, + [3046] = {.lex_state = 262, .external_lex_state = 18}, + [3047] = {.lex_state = 270, .external_lex_state = 10}, + [3048] = {.lex_state = 270, .external_lex_state = 10}, + [3049] = {.lex_state = 270, .external_lex_state = 10}, + [3050] = {.lex_state = 262, .external_lex_state = 18}, + [3051] = {.lex_state = 262, .external_lex_state = 18}, + [3052] = {.lex_state = 270, .external_lex_state = 10}, + [3053] = {.lex_state = 247, .external_lex_state = 10}, + [3054] = {.lex_state = 247, .external_lex_state = 10}, + [3055] = {.lex_state = 140, .external_lex_state = 26}, + [3056] = {.lex_state = 140, .external_lex_state = 26}, + [3057] = {.lex_state = 92, .external_lex_state = 29}, + [3058] = {.lex_state = 92, .external_lex_state = 29}, + [3059] = {.lex_state = 92, .external_lex_state = 18}, + [3060] = {.lex_state = 262, .external_lex_state = 18}, + [3061] = {.lex_state = 140, .external_lex_state = 26}, + [3062] = {.lex_state = 262, .external_lex_state = 18}, + [3063] = {.lex_state = 262, .external_lex_state = 18}, + [3064] = {.lex_state = 262, .external_lex_state = 18}, + [3065] = {.lex_state = 140, .external_lex_state = 26}, + [3066] = {.lex_state = 262, .external_lex_state = 18}, + [3067] = {.lex_state = 136, .external_lex_state = 12}, + [3068] = {.lex_state = 311}, + [3069] = {.lex_state = 311}, + [3070] = {.lex_state = 153}, + [3071] = {.lex_state = 136, .external_lex_state = 12}, + [3072] = {.lex_state = 136, .external_lex_state = 12}, + [3073] = {.lex_state = 328}, + [3074] = {.lex_state = 136, .external_lex_state = 12}, + [3075] = {.lex_state = 328}, + [3076] = {.lex_state = 108, .external_lex_state = 26}, + [3077] = {.lex_state = 108, .external_lex_state = 26}, + [3078] = {.lex_state = 108, .external_lex_state = 26}, + [3079] = {.lex_state = 262, .external_lex_state = 18}, + [3080] = {.lex_state = 262, .external_lex_state = 18}, + [3081] = {.lex_state = 108, .external_lex_state = 26}, + [3082] = {.lex_state = 108, .external_lex_state = 13}, + [3083] = {.lex_state = 108, .external_lex_state = 13}, + [3084] = {.lex_state = 108, .external_lex_state = 13}, + [3085] = {.lex_state = 262, .external_lex_state = 18}, + [3086] = {.lex_state = 262, .external_lex_state = 18}, + [3087] = {.lex_state = 108, .external_lex_state = 13}, + [3088] = {.lex_state = 112, .external_lex_state = 13}, + [3089] = {.lex_state = 112, .external_lex_state = 13}, + [3090] = {.lex_state = 285, .external_lex_state = 4}, + [3091] = {.lex_state = 285, .external_lex_state = 21}, + [3092] = {.lex_state = 285, .external_lex_state = 21}, + [3093] = {.lex_state = 285, .external_lex_state = 21}, + [3094] = {.lex_state = 215}, + [3095] = {.lex_state = 260, .external_lex_state = 18}, + [3096] = {.lex_state = 85}, + [3097] = {.lex_state = 223, .external_lex_state = 18}, + [3098] = {.lex_state = 223, .external_lex_state = 18}, + [3099] = {.lex_state = 285, .external_lex_state = 21}, + [3100] = {.lex_state = 262, .external_lex_state = 30}, + [3101] = {.lex_state = 262, .external_lex_state = 18}, + [3102] = {.lex_state = 285, .external_lex_state = 21}, + [3103] = {.lex_state = 262, .external_lex_state = 30}, + [3104] = {.lex_state = 262, .external_lex_state = 18}, + [3105] = {.lex_state = 285, .external_lex_state = 21}, + [3106] = {.lex_state = 285, .external_lex_state = 21}, + [3107] = {.lex_state = 273, .external_lex_state = 4}, + [3108] = {.lex_state = 239}, + [3109] = {.lex_state = 273, .external_lex_state = 21}, + [3110] = {.lex_state = 273, .external_lex_state = 21}, + [3111] = {.lex_state = 92, .external_lex_state = 29}, + [3112] = {.lex_state = 92, .external_lex_state = 29}, + [3113] = {.lex_state = 92, .external_lex_state = 18}, + [3114] = {.lex_state = 260, .external_lex_state = 18}, + [3115] = {.lex_state = 273, .external_lex_state = 21}, + [3116] = {.lex_state = 262, .external_lex_state = 30}, + [3117] = {.lex_state = 262, .external_lex_state = 18}, + [3118] = {.lex_state = 262, .external_lex_state = 30}, + [3119] = {.lex_state = 262, .external_lex_state = 18}, + [3120] = {.lex_state = 262, .external_lex_state = 18}, + [3121] = {.lex_state = 273, .external_lex_state = 21}, + [3122] = {.lex_state = 262, .external_lex_state = 18}, + [3123] = {.lex_state = 262, .external_lex_state = 18}, + [3124] = {.lex_state = 273, .external_lex_state = 6}, + [3125] = {.lex_state = 273, .external_lex_state = 6}, + [3126] = {.lex_state = 92, .external_lex_state = 29}, + [3127] = {.lex_state = 92, .external_lex_state = 29}, + [3128] = {.lex_state = 92, .external_lex_state = 18}, + [3129] = {.lex_state = 260, .external_lex_state = 18}, + [3130] = {.lex_state = 273, .external_lex_state = 6}, + [3131] = {.lex_state = 262, .external_lex_state = 30}, + [3132] = {.lex_state = 262, .external_lex_state = 18}, + [3133] = {.lex_state = 262, .external_lex_state = 30}, + [3134] = {.lex_state = 262, .external_lex_state = 18}, + [3135] = {.lex_state = 262, .external_lex_state = 18}, + [3136] = {.lex_state = 273, .external_lex_state = 6}, + [3137] = {.lex_state = 262, .external_lex_state = 18}, + [3138] = {.lex_state = 262, .external_lex_state = 18}, + [3139] = {.lex_state = 279, .external_lex_state = 6}, + [3140] = {.lex_state = 279, .external_lex_state = 6}, + [3141] = {.lex_state = 92, .external_lex_state = 29}, + [3142] = {.lex_state = 92, .external_lex_state = 29}, + [3143] = {.lex_state = 92, .external_lex_state = 18}, + [3144] = {.lex_state = 262, .external_lex_state = 18}, + [3145] = {.lex_state = 279, .external_lex_state = 6}, + [3146] = {.lex_state = 262, .external_lex_state = 18}, + [3147] = {.lex_state = 262, .external_lex_state = 18}, + [3148] = {.lex_state = 262, .external_lex_state = 18}, + [3149] = {.lex_state = 279, .external_lex_state = 6}, + [3150] = {.lex_state = 262, .external_lex_state = 18}, + [3151] = {.lex_state = 333, .external_lex_state = 6}, + [3152] = {.lex_state = 283, .external_lex_state = 6}, + [3153] = {.lex_state = 333, .external_lex_state = 6}, + [3154] = {.lex_state = 215}, + [3155] = {.lex_state = 260, .external_lex_state = 18}, + [3156] = {.lex_state = 85}, + [3157] = {.lex_state = 223, .external_lex_state = 18}, + [3158] = {.lex_state = 223, .external_lex_state = 18}, + [3159] = {.lex_state = 333, .external_lex_state = 6}, + [3160] = {.lex_state = 262, .external_lex_state = 30}, + [3161] = {.lex_state = 262, .external_lex_state = 18}, + [3162] = {.lex_state = 333, .external_lex_state = 6}, + [3163] = {.lex_state = 262, .external_lex_state = 30}, + [3164] = {.lex_state = 262, .external_lex_state = 18}, + [3165] = {.lex_state = 333, .external_lex_state = 6}, + [3166] = {.lex_state = 333, .external_lex_state = 6}, + [3167] = {.lex_state = 306, .external_lex_state = 4}, + [3168] = {.lex_state = 306, .external_lex_state = 21}, + [3169] = {.lex_state = 306, .external_lex_state = 21}, + [3170] = {.lex_state = 306, .external_lex_state = 21}, + [3171] = {.lex_state = 215}, + [3172] = {.lex_state = 260, .external_lex_state = 18}, + [3173] = {.lex_state = 85}, + [3174] = {.lex_state = 223, .external_lex_state = 18}, + [3175] = {.lex_state = 223, .external_lex_state = 18}, + [3176] = {.lex_state = 306, .external_lex_state = 21}, + [3177] = {.lex_state = 262, .external_lex_state = 30}, + [3178] = {.lex_state = 262, .external_lex_state = 18}, + [3179] = {.lex_state = 306, .external_lex_state = 21}, + [3180] = {.lex_state = 262, .external_lex_state = 30}, + [3181] = {.lex_state = 262, .external_lex_state = 18}, + [3182] = {.lex_state = 306, .external_lex_state = 21}, + [3183] = {.lex_state = 306, .external_lex_state = 21}, + [3184] = {.lex_state = 324, .external_lex_state = 4}, + [3185] = {.lex_state = 239}, + [3186] = {.lex_state = 102}, + [3187] = {.lex_state = 324, .external_lex_state = 21}, + [3188] = {.lex_state = 324, .external_lex_state = 21}, + [3189] = {.lex_state = 215}, + [3190] = {.lex_state = 115}, + [3191] = {.lex_state = 324, .external_lex_state = 21}, + [3192] = {.lex_state = 324, .external_lex_state = 21}, + [3193] = {.lex_state = 324, .external_lex_state = 21}, + [3194] = {.lex_state = 85}, + [3195] = {.lex_state = 221, .external_lex_state = 7}, + [3196] = {.lex_state = 223, .external_lex_state = 18}, + [3197] = {.lex_state = 223, .external_lex_state = 18}, + [3198] = {.lex_state = 85}, + [3199] = {.lex_state = 78}, + [3200] = {.lex_state = 85}, + [3201] = {.lex_state = 316, .external_lex_state = 4}, + [3202] = {.lex_state = 239}, + [3203] = {.lex_state = 316, .external_lex_state = 21}, + [3204] = {.lex_state = 316, .external_lex_state = 21}, + [3205] = {.lex_state = 316, .external_lex_state = 21}, + [3206] = {.lex_state = 316, .external_lex_state = 21}, + [3207] = {.lex_state = 316, .external_lex_state = 21}, + [3208] = {.lex_state = 215}, + [3209] = {.lex_state = 260, .external_lex_state = 18}, + [3210] = {.lex_state = 85}, + [3211] = {.lex_state = 223, .external_lex_state = 18}, + [3212] = {.lex_state = 223, .external_lex_state = 18}, + [3213] = {.lex_state = 316, .external_lex_state = 21}, + [3214] = {.lex_state = 262, .external_lex_state = 30}, + [3215] = {.lex_state = 262, .external_lex_state = 18}, + [3216] = {.lex_state = 316, .external_lex_state = 21}, + [3217] = {.lex_state = 262, .external_lex_state = 30}, + [3218] = {.lex_state = 262, .external_lex_state = 18}, + [3219] = {.lex_state = 316, .external_lex_state = 21}, + [3220] = {.lex_state = 316, .external_lex_state = 21}, + [3221] = {.lex_state = 316, .external_lex_state = 6}, + [3222] = {.lex_state = 316, .external_lex_state = 6}, + [3223] = {.lex_state = 316, .external_lex_state = 6}, + [3224] = {.lex_state = 215}, + [3225] = {.lex_state = 260, .external_lex_state = 18}, + [3226] = {.lex_state = 85}, + [3227] = {.lex_state = 223, .external_lex_state = 18}, + [3228] = {.lex_state = 223, .external_lex_state = 18}, + [3229] = {.lex_state = 316, .external_lex_state = 6}, + [3230] = {.lex_state = 262, .external_lex_state = 30}, + [3231] = {.lex_state = 262, .external_lex_state = 18}, + [3232] = {.lex_state = 316, .external_lex_state = 6}, + [3233] = {.lex_state = 262, .external_lex_state = 30}, + [3234] = {.lex_state = 262, .external_lex_state = 18}, + [3235] = {.lex_state = 316, .external_lex_state = 6}, + [3236] = {.lex_state = 316, .external_lex_state = 6}, + [3237] = {.lex_state = 318, .external_lex_state = 6}, + [3238] = {.lex_state = 318, .external_lex_state = 6}, + [3239] = {.lex_state = 92, .external_lex_state = 29}, + [3240] = {.lex_state = 92, .external_lex_state = 29}, + [3241] = {.lex_state = 92, .external_lex_state = 18}, + [3242] = {.lex_state = 260, .external_lex_state = 18}, + [3243] = {.lex_state = 318, .external_lex_state = 6}, + [3244] = {.lex_state = 262, .external_lex_state = 30}, + [3245] = {.lex_state = 262, .external_lex_state = 18}, + [3246] = {.lex_state = 262, .external_lex_state = 30}, + [3247] = {.lex_state = 262, .external_lex_state = 18}, + [3248] = {.lex_state = 262, .external_lex_state = 18}, + [3249] = {.lex_state = 318, .external_lex_state = 6}, + [3250] = {.lex_state = 262, .external_lex_state = 18}, + [3251] = {.lex_state = 262, .external_lex_state = 18}, + [3252] = {.lex_state = 322, .external_lex_state = 6}, + [3253] = {.lex_state = 322, .external_lex_state = 6}, + [3254] = {.lex_state = 322, .external_lex_state = 6}, + [3255] = {.lex_state = 287, .external_lex_state = 2}, + [3256] = {.lex_state = 289, .external_lex_state = 4}, + [3257] = {.lex_state = 239}, + [3258] = {.lex_state = 289, .external_lex_state = 21}, + [3259] = {.lex_state = 289, .external_lex_state = 21}, + [3260] = {.lex_state = 92, .external_lex_state = 29}, + [3261] = {.lex_state = 92, .external_lex_state = 29}, + [3262] = {.lex_state = 92, .external_lex_state = 18}, + [3263] = {.lex_state = 260, .external_lex_state = 18}, + [3264] = {.lex_state = 289, .external_lex_state = 21}, + [3265] = {.lex_state = 262, .external_lex_state = 30}, + [3266] = {.lex_state = 262, .external_lex_state = 18}, + [3267] = {.lex_state = 262, .external_lex_state = 30}, + [3268] = {.lex_state = 262, .external_lex_state = 18}, + [3269] = {.lex_state = 262, .external_lex_state = 18}, + [3270] = {.lex_state = 289, .external_lex_state = 21}, + [3271] = {.lex_state = 262, .external_lex_state = 18}, + [3272] = {.lex_state = 262, .external_lex_state = 18}, + [3273] = {.lex_state = 289, .external_lex_state = 6}, + [3274] = {.lex_state = 289, .external_lex_state = 6}, + [3275] = {.lex_state = 92, .external_lex_state = 29}, + [3276] = {.lex_state = 92, .external_lex_state = 29}, + [3277] = {.lex_state = 92, .external_lex_state = 18}, + [3278] = {.lex_state = 260, .external_lex_state = 18}, + [3279] = {.lex_state = 289, .external_lex_state = 6}, + [3280] = {.lex_state = 262, .external_lex_state = 30}, + [3281] = {.lex_state = 262, .external_lex_state = 18}, + [3282] = {.lex_state = 262, .external_lex_state = 30}, + [3283] = {.lex_state = 262, .external_lex_state = 18}, + [3284] = {.lex_state = 262, .external_lex_state = 18}, + [3285] = {.lex_state = 289, .external_lex_state = 6}, + [3286] = {.lex_state = 262, .external_lex_state = 18}, + [3287] = {.lex_state = 262, .external_lex_state = 18}, + [3288] = {.lex_state = 299, .external_lex_state = 6}, + [3289] = {.lex_state = 299, .external_lex_state = 6}, + [3290] = {.lex_state = 92, .external_lex_state = 29}, + [3291] = {.lex_state = 92, .external_lex_state = 29}, + [3292] = {.lex_state = 92, .external_lex_state = 18}, + [3293] = {.lex_state = 262, .external_lex_state = 18}, + [3294] = {.lex_state = 299, .external_lex_state = 6}, + [3295] = {.lex_state = 262, .external_lex_state = 18}, + [3296] = {.lex_state = 262, .external_lex_state = 18}, + [3297] = {.lex_state = 262, .external_lex_state = 18}, + [3298] = {.lex_state = 299, .external_lex_state = 6}, + [3299] = {.lex_state = 262, .external_lex_state = 18}, + [3300] = {.lex_state = 303, .external_lex_state = 6}, + [3301] = {.lex_state = 144, .external_lex_state = 8}, + [3302] = {.lex_state = 85}, + [3303] = {.lex_state = 335, .external_lex_state = 21}, + [3304] = {.lex_state = 115}, + [3305] = {.lex_state = 122}, + [3306] = {.lex_state = 335, .external_lex_state = 21}, + [3307] = {.lex_state = 122, .external_lex_state = 7}, + [3308] = {.lex_state = 78, .external_lex_state = 2}, + [3309] = {.lex_state = 78, .external_lex_state = 2}, + [3310] = {.lex_state = 78, .external_lex_state = 2}, + [3311] = {.lex_state = 85}, + [3312] = {.lex_state = 335, .external_lex_state = 4}, + [3313] = {.lex_state = 335, .external_lex_state = 6}, + [3314] = {.lex_state = 115}, + [3315] = {.lex_state = 122}, + [3316] = {.lex_state = 335, .external_lex_state = 6}, + [3317] = {.lex_state = 122, .external_lex_state = 7}, + [3318] = {.lex_state = 78, .external_lex_state = 2}, + [3319] = {.lex_state = 78, .external_lex_state = 2}, + [3320] = {.lex_state = 78, .external_lex_state = 2}, + [3321] = {.lex_state = 335, .external_lex_state = 5}, + [3322] = {.lex_state = 102}, + [3323] = {.lex_state = 341, .external_lex_state = 6}, + [3324] = {.lex_state = 341, .external_lex_state = 6}, + [3325] = {.lex_state = 215}, + [3326] = {.lex_state = 115}, + [3327] = {.lex_state = 341, .external_lex_state = 6}, + [3328] = {.lex_state = 341, .external_lex_state = 6}, + [3329] = {.lex_state = 341, .external_lex_state = 6}, + [3330] = {.lex_state = 85}, + [3331] = {.lex_state = 221, .external_lex_state = 7}, + [3332] = {.lex_state = 223, .external_lex_state = 18}, + [3333] = {.lex_state = 223, .external_lex_state = 18}, + [3334] = {.lex_state = 85}, + [3335] = {.lex_state = 78}, + [3336] = {.lex_state = 85}, + [3337] = {.lex_state = 308}, + [3338] = {.lex_state = 78}, + [3339] = {.lex_state = 331, .external_lex_state = 2}, + [3340] = {.lex_state = 78, .external_lex_state = 2}, + [3341] = {.lex_state = 78, .external_lex_state = 2}, + [3342] = {.lex_state = 102}, + [3343] = {.lex_state = 102}, + [3344] = {.lex_state = 347, .external_lex_state = 9}, + [3345] = {.lex_state = 328, .external_lex_state = 5}, + [3346] = {.lex_state = 235, .external_lex_state = 25}, + [3347] = {.lex_state = 341, .external_lex_state = 6}, + [3348] = {.lex_state = 341, .external_lex_state = 6}, + [3349] = {.lex_state = 341, .external_lex_state = 5}, + [3350] = {.lex_state = 328, .external_lex_state = 5}, + [3351] = {.lex_state = 345, .external_lex_state = 4}, + [3352] = {.lex_state = 341, .external_lex_state = 5}, + [3353] = {.lex_state = 328}, + [3354] = {.lex_state = 308}, + [3355] = {.lex_state = 328}, + [3356] = {.lex_state = 231, .external_lex_state = 2}, + [3357] = {.lex_state = 239}, + [3358] = {.lex_state = 231, .external_lex_state = 2}, + [3359] = {.lex_state = 239}, + [3360] = {.lex_state = 186, .external_lex_state = 5}, + [3361] = {.lex_state = 186, .external_lex_state = 5}, + [3362] = {.lex_state = 149, .external_lex_state = 14}, + [3363] = {.lex_state = 149, .external_lex_state = 14}, + [3364] = {.lex_state = 207, .external_lex_state = 27}, + [3365] = {.lex_state = 207, .external_lex_state = 27}, + [3366] = {.lex_state = 92, .external_lex_state = 29}, + [3367] = {.lex_state = 92, .external_lex_state = 29}, + [3368] = {.lex_state = 92, .external_lex_state = 18}, + [3369] = {.lex_state = 262, .external_lex_state = 18}, + [3370] = {.lex_state = 207, .external_lex_state = 27}, + [3371] = {.lex_state = 262, .external_lex_state = 18}, + [3372] = {.lex_state = 262, .external_lex_state = 18}, + [3373] = {.lex_state = 262, .external_lex_state = 18}, + [3374] = {.lex_state = 207, .external_lex_state = 27}, + [3375] = {.lex_state = 262, .external_lex_state = 18}, + [3376] = {.lex_state = 205, .external_lex_state = 16}, + [3377] = {.lex_state = 311}, + [3378] = {.lex_state = 311}, + [3379] = {.lex_state = 153}, + [3380] = {.lex_state = 205, .external_lex_state = 16}, + [3381] = {.lex_state = 205, .external_lex_state = 16}, + [3382] = {.lex_state = 328}, + [3383] = {.lex_state = 205, .external_lex_state = 16}, + [3384] = {.lex_state = 328}, + [3385] = {.lex_state = 199, .external_lex_state = 27}, + [3386] = {.lex_state = 199, .external_lex_state = 27}, + [3387] = {.lex_state = 199, .external_lex_state = 27}, + [3388] = {.lex_state = 262, .external_lex_state = 18}, + [3389] = {.lex_state = 262, .external_lex_state = 18}, + [3390] = {.lex_state = 199, .external_lex_state = 27}, + [3391] = {.lex_state = 199, .external_lex_state = 17}, + [3392] = {.lex_state = 199, .external_lex_state = 17}, + [3393] = {.lex_state = 199, .external_lex_state = 17}, + [3394] = {.lex_state = 262, .external_lex_state = 18}, + [3395] = {.lex_state = 262, .external_lex_state = 18}, + [3396] = {.lex_state = 199, .external_lex_state = 17}, + [3397] = {.lex_state = 201, .external_lex_state = 17}, + [3398] = {.lex_state = 201, .external_lex_state = 17}, + [3399] = {.lex_state = 209, .external_lex_state = 19}, + [3400] = {.lex_state = 209, .external_lex_state = 19}, + [3401] = {.lex_state = 178, .external_lex_state = 21}, + [3402] = {.lex_state = 178, .external_lex_state = 21}, + [3403] = {.lex_state = 178, .external_lex_state = 6}, + [3404] = {.lex_state = 178, .external_lex_state = 6}, + [3405] = {.lex_state = 102, .external_lex_state = 22}, + [3406] = {.lex_state = 102, .external_lex_state = 22}, + [3407] = {.lex_state = 115, .external_lex_state = 10}, + [3408] = {.lex_state = 115, .external_lex_state = 10}, + [3409] = {.lex_state = 92, .external_lex_state = 29}, + [3410] = {.lex_state = 92, .external_lex_state = 29}, + [3411] = {.lex_state = 92, .external_lex_state = 29}, + [3412] = {.lex_state = 92, .external_lex_state = 29}, + [3413] = {.lex_state = 92, .external_lex_state = 18}, + [3414] = {.lex_state = 262, .external_lex_state = 18}, + [3415] = {.lex_state = 92, .external_lex_state = 29}, + [3416] = {.lex_state = 262, .external_lex_state = 18}, + [3417] = {.lex_state = 262, .external_lex_state = 18}, + [3418] = {.lex_state = 262, .external_lex_state = 18}, + [3419] = {.lex_state = 92, .external_lex_state = 29}, + [3420] = {.lex_state = 262, .external_lex_state = 18}, + [3421] = {.lex_state = 262, .external_lex_state = 29}, + [3422] = {.lex_state = 262, .external_lex_state = 29}, + [3423] = {.lex_state = 262, .external_lex_state = 29}, + [3424] = {.lex_state = 262, .external_lex_state = 18}, + [3425] = {.lex_state = 262, .external_lex_state = 18}, + [3426] = {.lex_state = 262, .external_lex_state = 29}, + [3427] = {.lex_state = 96, .external_lex_state = 23}, + [3428] = {.lex_state = 96, .external_lex_state = 23}, + [3429] = {.lex_state = 96, .external_lex_state = 23}, + [3430] = {.lex_state = 262, .external_lex_state = 18}, + [3431] = {.lex_state = 262, .external_lex_state = 18}, + [3432] = {.lex_state = 96, .external_lex_state = 23}, + [3433] = {.lex_state = 239, .external_lex_state = 10}, + [3434] = {.lex_state = 239, .external_lex_state = 10}, + [3435] = {.lex_state = 239, .external_lex_state = 10}, + [3436] = {.lex_state = 262, .external_lex_state = 18}, + [3437] = {.lex_state = 262, .external_lex_state = 18}, + [3438] = {.lex_state = 239, .external_lex_state = 10}, + [3439] = {.lex_state = 184, .external_lex_state = 21}, + [3440] = {.lex_state = 184, .external_lex_state = 21}, + [3441] = {.lex_state = 186, .external_lex_state = 5}, + [3442] = {.lex_state = 242, .external_lex_state = 14}, + [3443] = {.lex_state = 242, .external_lex_state = 14}, + [3444] = {.lex_state = 311}, + [3445] = {.lex_state = 268, .external_lex_state = 14}, + [3446] = {.lex_state = 268, .external_lex_state = 14}, + [3447] = {.lex_state = 268, .external_lex_state = 14}, + [3448] = {.lex_state = 262, .external_lex_state = 18}, + [3449] = {.lex_state = 262, .external_lex_state = 18}, + [3450] = {.lex_state = 268, .external_lex_state = 14}, + [3451] = {.lex_state = 270, .external_lex_state = 10}, + [3452] = {.lex_state = 270, .external_lex_state = 10}, + [3453] = {.lex_state = 140, .external_lex_state = 26}, + [3454] = {.lex_state = 140, .external_lex_state = 26}, + [3455] = {.lex_state = 140, .external_lex_state = 26}, + [3456] = {.lex_state = 262, .external_lex_state = 18}, + [3457] = {.lex_state = 262, .external_lex_state = 18}, + [3458] = {.lex_state = 140, .external_lex_state = 26}, + [3459] = {.lex_state = 136, .external_lex_state = 12}, + [3460] = {.lex_state = 311}, + [3461] = {.lex_state = 311}, + [3462] = {.lex_state = 136, .external_lex_state = 12}, + [3463] = {.lex_state = 136, .external_lex_state = 12}, + [3464] = {.lex_state = 108, .external_lex_state = 26}, + [3465] = {.lex_state = 108, .external_lex_state = 26}, + [3466] = {.lex_state = 108, .external_lex_state = 13}, + [3467] = {.lex_state = 108, .external_lex_state = 13}, + [3468] = {.lex_state = 285, .external_lex_state = 21}, + [3469] = {.lex_state = 285, .external_lex_state = 21}, + [3470] = {.lex_state = 92, .external_lex_state = 29}, + [3471] = {.lex_state = 92, .external_lex_state = 29}, + [3472] = {.lex_state = 92, .external_lex_state = 18}, + [3473] = {.lex_state = 260, .external_lex_state = 18}, + [3474] = {.lex_state = 285, .external_lex_state = 21}, + [3475] = {.lex_state = 262, .external_lex_state = 30}, + [3476] = {.lex_state = 262, .external_lex_state = 18}, + [3477] = {.lex_state = 262, .external_lex_state = 30}, + [3478] = {.lex_state = 262, .external_lex_state = 18}, + [3479] = {.lex_state = 262, .external_lex_state = 18}, + [3480] = {.lex_state = 285, .external_lex_state = 21}, + [3481] = {.lex_state = 262, .external_lex_state = 18}, + [3482] = {.lex_state = 262, .external_lex_state = 18}, + [3483] = {.lex_state = 273, .external_lex_state = 4}, + [3484] = {.lex_state = 273, .external_lex_state = 21}, + [3485] = {.lex_state = 273, .external_lex_state = 21}, + [3486] = {.lex_state = 92, .external_lex_state = 29}, + [3487] = {.lex_state = 92, .external_lex_state = 29}, + [3488] = {.lex_state = 92, .external_lex_state = 18}, + [3489] = {.lex_state = 262, .external_lex_state = 18}, + [3490] = {.lex_state = 273, .external_lex_state = 21}, + [3491] = {.lex_state = 262, .external_lex_state = 18}, + [3492] = {.lex_state = 262, .external_lex_state = 18}, + [3493] = {.lex_state = 262, .external_lex_state = 18}, + [3494] = {.lex_state = 273, .external_lex_state = 21}, + [3495] = {.lex_state = 262, .external_lex_state = 18}, + [3496] = {.lex_state = 273, .external_lex_state = 6}, + [3497] = {.lex_state = 273, .external_lex_state = 6}, + [3498] = {.lex_state = 92, .external_lex_state = 29}, + [3499] = {.lex_state = 92, .external_lex_state = 29}, + [3500] = {.lex_state = 92, .external_lex_state = 18}, + [3501] = {.lex_state = 262, .external_lex_state = 18}, + [3502] = {.lex_state = 273, .external_lex_state = 6}, + [3503] = {.lex_state = 262, .external_lex_state = 18}, + [3504] = {.lex_state = 262, .external_lex_state = 18}, + [3505] = {.lex_state = 262, .external_lex_state = 18}, + [3506] = {.lex_state = 273, .external_lex_state = 6}, + [3507] = {.lex_state = 262, .external_lex_state = 18}, + [3508] = {.lex_state = 279, .external_lex_state = 6}, + [3509] = {.lex_state = 279, .external_lex_state = 6}, + [3510] = {.lex_state = 279, .external_lex_state = 6}, + [3511] = {.lex_state = 262, .external_lex_state = 18}, + [3512] = {.lex_state = 262, .external_lex_state = 18}, + [3513] = {.lex_state = 279, .external_lex_state = 6}, + [3514] = {.lex_state = 333, .external_lex_state = 6}, + [3515] = {.lex_state = 333, .external_lex_state = 6}, + [3516] = {.lex_state = 92, .external_lex_state = 29}, + [3517] = {.lex_state = 92, .external_lex_state = 29}, + [3518] = {.lex_state = 92, .external_lex_state = 18}, + [3519] = {.lex_state = 260, .external_lex_state = 18}, + [3520] = {.lex_state = 333, .external_lex_state = 6}, + [3521] = {.lex_state = 262, .external_lex_state = 30}, + [3522] = {.lex_state = 262, .external_lex_state = 18}, + [3523] = {.lex_state = 262, .external_lex_state = 30}, + [3524] = {.lex_state = 262, .external_lex_state = 18}, + [3525] = {.lex_state = 262, .external_lex_state = 18}, + [3526] = {.lex_state = 333, .external_lex_state = 6}, + [3527] = {.lex_state = 262, .external_lex_state = 18}, + [3528] = {.lex_state = 262, .external_lex_state = 18}, + [3529] = {.lex_state = 306, .external_lex_state = 21}, + [3530] = {.lex_state = 306, .external_lex_state = 21}, + [3531] = {.lex_state = 92, .external_lex_state = 29}, + [3532] = {.lex_state = 92, .external_lex_state = 29}, + [3533] = {.lex_state = 92, .external_lex_state = 18}, + [3534] = {.lex_state = 260, .external_lex_state = 18}, + [3535] = {.lex_state = 306, .external_lex_state = 21}, + [3536] = {.lex_state = 262, .external_lex_state = 30}, + [3537] = {.lex_state = 262, .external_lex_state = 18}, + [3538] = {.lex_state = 262, .external_lex_state = 30}, + [3539] = {.lex_state = 262, .external_lex_state = 18}, + [3540] = {.lex_state = 262, .external_lex_state = 18}, + [3541] = {.lex_state = 306, .external_lex_state = 21}, + [3542] = {.lex_state = 262, .external_lex_state = 18}, + [3543] = {.lex_state = 262, .external_lex_state = 18}, + [3544] = {.lex_state = 324, .external_lex_state = 4}, + [3545] = {.lex_state = 324, .external_lex_state = 21}, + [3546] = {.lex_state = 324, .external_lex_state = 21}, + [3547] = {.lex_state = 324, .external_lex_state = 21}, + [3548] = {.lex_state = 215}, + [3549] = {.lex_state = 260, .external_lex_state = 18}, + [3550] = {.lex_state = 85}, + [3551] = {.lex_state = 223, .external_lex_state = 18}, + [3552] = {.lex_state = 223, .external_lex_state = 18}, + [3553] = {.lex_state = 324, .external_lex_state = 21}, + [3554] = {.lex_state = 262, .external_lex_state = 30}, + [3555] = {.lex_state = 262, .external_lex_state = 18}, + [3556] = {.lex_state = 324, .external_lex_state = 21}, + [3557] = {.lex_state = 262, .external_lex_state = 30}, + [3558] = {.lex_state = 262, .external_lex_state = 18}, + [3559] = {.lex_state = 324, .external_lex_state = 21}, + [3560] = {.lex_state = 324, .external_lex_state = 21}, + [3561] = {.lex_state = 316, .external_lex_state = 4}, + [3562] = {.lex_state = 239}, + [3563] = {.lex_state = 316, .external_lex_state = 21}, + [3564] = {.lex_state = 316, .external_lex_state = 21}, + [3565] = {.lex_state = 92, .external_lex_state = 29}, + [3566] = {.lex_state = 92, .external_lex_state = 29}, + [3567] = {.lex_state = 92, .external_lex_state = 18}, + [3568] = {.lex_state = 260, .external_lex_state = 18}, + [3569] = {.lex_state = 316, .external_lex_state = 21}, + [3570] = {.lex_state = 262, .external_lex_state = 30}, + [3571] = {.lex_state = 262, .external_lex_state = 18}, + [3572] = {.lex_state = 262, .external_lex_state = 30}, + [3573] = {.lex_state = 262, .external_lex_state = 18}, + [3574] = {.lex_state = 262, .external_lex_state = 18}, + [3575] = {.lex_state = 316, .external_lex_state = 21}, + [3576] = {.lex_state = 262, .external_lex_state = 18}, + [3577] = {.lex_state = 262, .external_lex_state = 18}, + [3578] = {.lex_state = 316, .external_lex_state = 6}, + [3579] = {.lex_state = 316, .external_lex_state = 6}, + [3580] = {.lex_state = 92, .external_lex_state = 29}, + [3581] = {.lex_state = 92, .external_lex_state = 29}, + [3582] = {.lex_state = 92, .external_lex_state = 18}, + [3583] = {.lex_state = 260, .external_lex_state = 18}, + [3584] = {.lex_state = 316, .external_lex_state = 6}, + [3585] = {.lex_state = 262, .external_lex_state = 30}, + [3586] = {.lex_state = 262, .external_lex_state = 18}, + [3587] = {.lex_state = 262, .external_lex_state = 30}, + [3588] = {.lex_state = 262, .external_lex_state = 18}, + [3589] = {.lex_state = 262, .external_lex_state = 18}, + [3590] = {.lex_state = 316, .external_lex_state = 6}, + [3591] = {.lex_state = 262, .external_lex_state = 18}, + [3592] = {.lex_state = 262, .external_lex_state = 18}, + [3593] = {.lex_state = 318, .external_lex_state = 6}, + [3594] = {.lex_state = 318, .external_lex_state = 6}, + [3595] = {.lex_state = 92, .external_lex_state = 29}, + [3596] = {.lex_state = 92, .external_lex_state = 29}, + [3597] = {.lex_state = 92, .external_lex_state = 18}, + [3598] = {.lex_state = 262, .external_lex_state = 18}, + [3599] = {.lex_state = 318, .external_lex_state = 6}, + [3600] = {.lex_state = 262, .external_lex_state = 18}, + [3601] = {.lex_state = 262, .external_lex_state = 18}, + [3602] = {.lex_state = 262, .external_lex_state = 18}, + [3603] = {.lex_state = 318, .external_lex_state = 6}, + [3604] = {.lex_state = 262, .external_lex_state = 18}, + [3605] = {.lex_state = 322, .external_lex_state = 6}, + [3606] = {.lex_state = 289, .external_lex_state = 4}, + [3607] = {.lex_state = 289, .external_lex_state = 21}, + [3608] = {.lex_state = 289, .external_lex_state = 21}, + [3609] = {.lex_state = 92, .external_lex_state = 29}, + [3610] = {.lex_state = 92, .external_lex_state = 29}, + [3611] = {.lex_state = 92, .external_lex_state = 18}, + [3612] = {.lex_state = 262, .external_lex_state = 18}, + [3613] = {.lex_state = 289, .external_lex_state = 21}, + [3614] = {.lex_state = 262, .external_lex_state = 18}, + [3615] = {.lex_state = 262, .external_lex_state = 18}, + [3616] = {.lex_state = 262, .external_lex_state = 18}, + [3617] = {.lex_state = 289, .external_lex_state = 21}, + [3618] = {.lex_state = 262, .external_lex_state = 18}, + [3619] = {.lex_state = 289, .external_lex_state = 6}, + [3620] = {.lex_state = 289, .external_lex_state = 6}, + [3621] = {.lex_state = 92, .external_lex_state = 29}, + [3622] = {.lex_state = 92, .external_lex_state = 29}, + [3623] = {.lex_state = 92, .external_lex_state = 18}, + [3624] = {.lex_state = 262, .external_lex_state = 18}, + [3625] = {.lex_state = 289, .external_lex_state = 6}, + [3626] = {.lex_state = 262, .external_lex_state = 18}, + [3627] = {.lex_state = 262, .external_lex_state = 18}, + [3628] = {.lex_state = 262, .external_lex_state = 18}, + [3629] = {.lex_state = 289, .external_lex_state = 6}, + [3630] = {.lex_state = 262, .external_lex_state = 18}, + [3631] = {.lex_state = 299, .external_lex_state = 6}, + [3632] = {.lex_state = 299, .external_lex_state = 6}, + [3633] = {.lex_state = 299, .external_lex_state = 6}, + [3634] = {.lex_state = 262, .external_lex_state = 18}, + [3635] = {.lex_state = 262, .external_lex_state = 18}, + [3636] = {.lex_state = 299, .external_lex_state = 6}, + [3637] = {.lex_state = 345, .external_lex_state = 4}, + [3638] = {.lex_state = 239}, + [3639] = {.lex_state = 345, .external_lex_state = 21}, + [3640] = {.lex_state = 115}, + [3641] = {.lex_state = 122}, + [3642] = {.lex_state = 345, .external_lex_state = 21}, + [3643] = {.lex_state = 122, .external_lex_state = 7}, + [3644] = {.lex_state = 78, .external_lex_state = 2}, + [3645] = {.lex_state = 78, .external_lex_state = 2}, + [3646] = {.lex_state = 78, .external_lex_state = 2}, + [3647] = {.lex_state = 144, .external_lex_state = 8}, + [3648] = {.lex_state = 102}, + [3649] = {.lex_state = 335, .external_lex_state = 21}, + [3650] = {.lex_state = 335, .external_lex_state = 21}, + [3651] = {.lex_state = 215}, + [3652] = {.lex_state = 115}, + [3653] = {.lex_state = 335, .external_lex_state = 21}, + [3654] = {.lex_state = 335, .external_lex_state = 21}, + [3655] = {.lex_state = 335, .external_lex_state = 21}, + [3656] = {.lex_state = 85}, + [3657] = {.lex_state = 221, .external_lex_state = 7}, + [3658] = {.lex_state = 223, .external_lex_state = 18}, + [3659] = {.lex_state = 223, .external_lex_state = 18}, + [3660] = {.lex_state = 85}, + [3661] = {.lex_state = 78}, + [3662] = {.lex_state = 85}, + [3663] = {.lex_state = 335, .external_lex_state = 4}, + [3664] = {.lex_state = 102}, + [3665] = {.lex_state = 335, .external_lex_state = 6}, + [3666] = {.lex_state = 335, .external_lex_state = 6}, + [3667] = {.lex_state = 215}, + [3668] = {.lex_state = 115}, + [3669] = {.lex_state = 335, .external_lex_state = 6}, + [3670] = {.lex_state = 335, .external_lex_state = 6}, + [3671] = {.lex_state = 335, .external_lex_state = 6}, + [3672] = {.lex_state = 85}, + [3673] = {.lex_state = 221, .external_lex_state = 7}, + [3674] = {.lex_state = 223, .external_lex_state = 18}, + [3675] = {.lex_state = 223, .external_lex_state = 18}, + [3676] = {.lex_state = 85}, + [3677] = {.lex_state = 78}, + [3678] = {.lex_state = 85}, + [3679] = {.lex_state = 335, .external_lex_state = 5}, + [3680] = {.lex_state = 341, .external_lex_state = 6}, + [3681] = {.lex_state = 341, .external_lex_state = 6}, + [3682] = {.lex_state = 341, .external_lex_state = 6}, + [3683] = {.lex_state = 215}, + [3684] = {.lex_state = 260, .external_lex_state = 18}, + [3685] = {.lex_state = 85}, + [3686] = {.lex_state = 223, .external_lex_state = 18}, + [3687] = {.lex_state = 223, .external_lex_state = 18}, + [3688] = {.lex_state = 341, .external_lex_state = 6}, + [3689] = {.lex_state = 262, .external_lex_state = 30}, + [3690] = {.lex_state = 262, .external_lex_state = 18}, + [3691] = {.lex_state = 341, .external_lex_state = 6}, + [3692] = {.lex_state = 262, .external_lex_state = 30}, + [3693] = {.lex_state = 262, .external_lex_state = 18}, + [3694] = {.lex_state = 341, .external_lex_state = 6}, + [3695] = {.lex_state = 341, .external_lex_state = 6}, + [3696] = {.lex_state = 102}, + [3697] = {.lex_state = 328, .external_lex_state = 5}, + [3698] = {.lex_state = 345, .external_lex_state = 4}, + [3699] = {.lex_state = 328, .external_lex_state = 5}, + [3700] = {.lex_state = 345, .external_lex_state = 4}, + [3701] = {.lex_state = 328, .external_lex_state = 6}, + [3702] = {.lex_state = 328, .external_lex_state = 6}, + [3703] = {.lex_state = 328, .external_lex_state = 6}, + [3704] = {.lex_state = 328, .external_lex_state = 6}, + [3705] = {.lex_state = 331, .external_lex_state = 2}, + [3706] = {.lex_state = 328, .external_lex_state = 5}, + [3707] = {.lex_state = 341, .external_lex_state = 5}, + [3708] = {.lex_state = 341, .external_lex_state = 6}, + [3709] = {.lex_state = 341, .external_lex_state = 6}, + [3710] = {.lex_state = 341, .external_lex_state = 5}, + [3711] = {.lex_state = 331, .external_lex_state = 2}, + [3712] = {.lex_state = 347, .external_lex_state = 9}, + [3713] = {.lex_state = 341, .external_lex_state = 5}, + [3714] = {.lex_state = 308}, + [3715] = {.lex_state = 308}, + [3716] = {.lex_state = 102}, + [3717] = {.lex_state = 85}, + [3718] = {.lex_state = 136, .external_lex_state = 5}, + [3719] = {.lex_state = 140, .external_lex_state = 4}, + [3720] = {.lex_state = 78, .external_lex_state = 2}, + [3721] = {.lex_state = 231, .external_lex_state = 2}, + [3722] = {.lex_state = 102}, + [3723] = {.lex_state = 85}, + [3724] = {.lex_state = 231, .external_lex_state = 2}, + [3725] = {.lex_state = 207, .external_lex_state = 27}, + [3726] = {.lex_state = 207, .external_lex_state = 27}, + [3727] = {.lex_state = 207, .external_lex_state = 27}, + [3728] = {.lex_state = 262, .external_lex_state = 18}, + [3729] = {.lex_state = 262, .external_lex_state = 18}, + [3730] = {.lex_state = 207, .external_lex_state = 27}, + [3731] = {.lex_state = 205, .external_lex_state = 16}, + [3732] = {.lex_state = 311}, + [3733] = {.lex_state = 311}, + [3734] = {.lex_state = 205, .external_lex_state = 16}, + [3735] = {.lex_state = 205, .external_lex_state = 16}, + [3736] = {.lex_state = 199, .external_lex_state = 27}, + [3737] = {.lex_state = 199, .external_lex_state = 27}, + [3738] = {.lex_state = 199, .external_lex_state = 17}, + [3739] = {.lex_state = 199, .external_lex_state = 17}, + [3740] = {.lex_state = 92, .external_lex_state = 29}, + [3741] = {.lex_state = 92, .external_lex_state = 29}, + [3742] = {.lex_state = 92, .external_lex_state = 29}, + [3743] = {.lex_state = 262, .external_lex_state = 18}, + [3744] = {.lex_state = 262, .external_lex_state = 18}, + [3745] = {.lex_state = 92, .external_lex_state = 29}, + [3746] = {.lex_state = 262, .external_lex_state = 29}, + [3747] = {.lex_state = 262, .external_lex_state = 29}, + [3748] = {.lex_state = 96, .external_lex_state = 23}, + [3749] = {.lex_state = 96, .external_lex_state = 23}, + [3750] = {.lex_state = 239, .external_lex_state = 10}, + [3751] = {.lex_state = 239, .external_lex_state = 10}, + [3752] = {.lex_state = 186, .external_lex_state = 5}, + [3753] = {.lex_state = 268, .external_lex_state = 14}, + [3754] = {.lex_state = 268, .external_lex_state = 14}, + [3755] = {.lex_state = 140, .external_lex_state = 26}, + [3756] = {.lex_state = 140, .external_lex_state = 26}, + [3757] = {.lex_state = 136, .external_lex_state = 12}, + [3758] = {.lex_state = 311}, + [3759] = {.lex_state = 285, .external_lex_state = 21}, + [3760] = {.lex_state = 285, .external_lex_state = 21}, + [3761] = {.lex_state = 92, .external_lex_state = 29}, + [3762] = {.lex_state = 92, .external_lex_state = 29}, + [3763] = {.lex_state = 92, .external_lex_state = 18}, + [3764] = {.lex_state = 262, .external_lex_state = 18}, + [3765] = {.lex_state = 285, .external_lex_state = 21}, + [3766] = {.lex_state = 262, .external_lex_state = 18}, + [3767] = {.lex_state = 262, .external_lex_state = 18}, + [3768] = {.lex_state = 262, .external_lex_state = 18}, + [3769] = {.lex_state = 285, .external_lex_state = 21}, + [3770] = {.lex_state = 262, .external_lex_state = 18}, + [3771] = {.lex_state = 273, .external_lex_state = 21}, + [3772] = {.lex_state = 273, .external_lex_state = 21}, + [3773] = {.lex_state = 273, .external_lex_state = 21}, + [3774] = {.lex_state = 262, .external_lex_state = 18}, + [3775] = {.lex_state = 262, .external_lex_state = 18}, + [3776] = {.lex_state = 273, .external_lex_state = 21}, + [3777] = {.lex_state = 273, .external_lex_state = 6}, + [3778] = {.lex_state = 273, .external_lex_state = 6}, + [3779] = {.lex_state = 273, .external_lex_state = 6}, + [3780] = {.lex_state = 262, .external_lex_state = 18}, + [3781] = {.lex_state = 262, .external_lex_state = 18}, + [3782] = {.lex_state = 273, .external_lex_state = 6}, + [3783] = {.lex_state = 279, .external_lex_state = 6}, + [3784] = {.lex_state = 279, .external_lex_state = 6}, + [3785] = {.lex_state = 333, .external_lex_state = 6}, + [3786] = {.lex_state = 333, .external_lex_state = 6}, + [3787] = {.lex_state = 92, .external_lex_state = 29}, + [3788] = {.lex_state = 92, .external_lex_state = 29}, + [3789] = {.lex_state = 92, .external_lex_state = 18}, + [3790] = {.lex_state = 262, .external_lex_state = 18}, + [3791] = {.lex_state = 333, .external_lex_state = 6}, + [3792] = {.lex_state = 262, .external_lex_state = 18}, + [3793] = {.lex_state = 262, .external_lex_state = 18}, + [3794] = {.lex_state = 262, .external_lex_state = 18}, + [3795] = {.lex_state = 333, .external_lex_state = 6}, + [3796] = {.lex_state = 262, .external_lex_state = 18}, + [3797] = {.lex_state = 306, .external_lex_state = 21}, + [3798] = {.lex_state = 306, .external_lex_state = 21}, + [3799] = {.lex_state = 92, .external_lex_state = 29}, + [3800] = {.lex_state = 92, .external_lex_state = 29}, + [3801] = {.lex_state = 92, .external_lex_state = 18}, + [3802] = {.lex_state = 262, .external_lex_state = 18}, + [3803] = {.lex_state = 306, .external_lex_state = 21}, + [3804] = {.lex_state = 262, .external_lex_state = 18}, + [3805] = {.lex_state = 262, .external_lex_state = 18}, + [3806] = {.lex_state = 262, .external_lex_state = 18}, + [3807] = {.lex_state = 306, .external_lex_state = 21}, + [3808] = {.lex_state = 262, .external_lex_state = 18}, + [3809] = {.lex_state = 324, .external_lex_state = 21}, + [3810] = {.lex_state = 324, .external_lex_state = 21}, + [3811] = {.lex_state = 92, .external_lex_state = 29}, + [3812] = {.lex_state = 92, .external_lex_state = 29}, + [3813] = {.lex_state = 92, .external_lex_state = 18}, + [3814] = {.lex_state = 260, .external_lex_state = 18}, + [3815] = {.lex_state = 324, .external_lex_state = 21}, + [3816] = {.lex_state = 262, .external_lex_state = 30}, + [3817] = {.lex_state = 262, .external_lex_state = 18}, + [3818] = {.lex_state = 262, .external_lex_state = 30}, + [3819] = {.lex_state = 262, .external_lex_state = 18}, + [3820] = {.lex_state = 262, .external_lex_state = 18}, + [3821] = {.lex_state = 324, .external_lex_state = 21}, + [3822] = {.lex_state = 262, .external_lex_state = 18}, + [3823] = {.lex_state = 262, .external_lex_state = 18}, + [3824] = {.lex_state = 316, .external_lex_state = 4}, + [3825] = {.lex_state = 316, .external_lex_state = 21}, + [3826] = {.lex_state = 316, .external_lex_state = 21}, + [3827] = {.lex_state = 92, .external_lex_state = 29}, + [3828] = {.lex_state = 92, .external_lex_state = 29}, + [3829] = {.lex_state = 92, .external_lex_state = 18}, + [3830] = {.lex_state = 262, .external_lex_state = 18}, + [3831] = {.lex_state = 316, .external_lex_state = 21}, + [3832] = {.lex_state = 262, .external_lex_state = 18}, + [3833] = {.lex_state = 262, .external_lex_state = 18}, + [3834] = {.lex_state = 262, .external_lex_state = 18}, + [3835] = {.lex_state = 316, .external_lex_state = 21}, + [3836] = {.lex_state = 262, .external_lex_state = 18}, + [3837] = {.lex_state = 316, .external_lex_state = 6}, + [3838] = {.lex_state = 316, .external_lex_state = 6}, + [3839] = {.lex_state = 92, .external_lex_state = 29}, + [3840] = {.lex_state = 92, .external_lex_state = 29}, + [3841] = {.lex_state = 92, .external_lex_state = 18}, + [3842] = {.lex_state = 262, .external_lex_state = 18}, + [3843] = {.lex_state = 316, .external_lex_state = 6}, + [3844] = {.lex_state = 262, .external_lex_state = 18}, + [3845] = {.lex_state = 262, .external_lex_state = 18}, + [3846] = {.lex_state = 262, .external_lex_state = 18}, + [3847] = {.lex_state = 316, .external_lex_state = 6}, + [3848] = {.lex_state = 262, .external_lex_state = 18}, + [3849] = {.lex_state = 318, .external_lex_state = 6}, + [3850] = {.lex_state = 318, .external_lex_state = 6}, + [3851] = {.lex_state = 318, .external_lex_state = 6}, + [3852] = {.lex_state = 262, .external_lex_state = 18}, + [3853] = {.lex_state = 262, .external_lex_state = 18}, + [3854] = {.lex_state = 318, .external_lex_state = 6}, + [3855] = {.lex_state = 289, .external_lex_state = 21}, + [3856] = {.lex_state = 289, .external_lex_state = 21}, + [3857] = {.lex_state = 289, .external_lex_state = 21}, + [3858] = {.lex_state = 262, .external_lex_state = 18}, + [3859] = {.lex_state = 262, .external_lex_state = 18}, + [3860] = {.lex_state = 289, .external_lex_state = 21}, + [3861] = {.lex_state = 289, .external_lex_state = 6}, + [3862] = {.lex_state = 289, .external_lex_state = 6}, + [3863] = {.lex_state = 289, .external_lex_state = 6}, + [3864] = {.lex_state = 262, .external_lex_state = 18}, + [3865] = {.lex_state = 262, .external_lex_state = 18}, + [3866] = {.lex_state = 289, .external_lex_state = 6}, + [3867] = {.lex_state = 299, .external_lex_state = 6}, + [3868] = {.lex_state = 299, .external_lex_state = 6}, + [3869] = {.lex_state = 345, .external_lex_state = 4}, + [3870] = {.lex_state = 239}, + [3871] = {.lex_state = 102}, + [3872] = {.lex_state = 345, .external_lex_state = 21}, + [3873] = {.lex_state = 345, .external_lex_state = 21}, + [3874] = {.lex_state = 215}, + [3875] = {.lex_state = 115}, + [3876] = {.lex_state = 345, .external_lex_state = 21}, + [3877] = {.lex_state = 345, .external_lex_state = 21}, + [3878] = {.lex_state = 345, .external_lex_state = 21}, + [3879] = {.lex_state = 85}, + [3880] = {.lex_state = 221, .external_lex_state = 7}, + [3881] = {.lex_state = 223, .external_lex_state = 18}, + [3882] = {.lex_state = 223, .external_lex_state = 18}, + [3883] = {.lex_state = 85}, + [3884] = {.lex_state = 78}, + [3885] = {.lex_state = 85}, + [3886] = {.lex_state = 335, .external_lex_state = 4}, + [3887] = {.lex_state = 239}, + [3888] = {.lex_state = 335, .external_lex_state = 21}, + [3889] = {.lex_state = 335, .external_lex_state = 21}, + [3890] = {.lex_state = 335, .external_lex_state = 21}, + [3891] = {.lex_state = 335, .external_lex_state = 21}, + [3892] = {.lex_state = 335, .external_lex_state = 21}, + [3893] = {.lex_state = 215}, + [3894] = {.lex_state = 260, .external_lex_state = 18}, + [3895] = {.lex_state = 85}, + [3896] = {.lex_state = 223, .external_lex_state = 18}, + [3897] = {.lex_state = 223, .external_lex_state = 18}, + [3898] = {.lex_state = 335, .external_lex_state = 21}, + [3899] = {.lex_state = 262, .external_lex_state = 30}, + [3900] = {.lex_state = 262, .external_lex_state = 18}, + [3901] = {.lex_state = 335, .external_lex_state = 21}, + [3902] = {.lex_state = 262, .external_lex_state = 30}, + [3903] = {.lex_state = 262, .external_lex_state = 18}, + [3904] = {.lex_state = 335, .external_lex_state = 21}, + [3905] = {.lex_state = 335, .external_lex_state = 21}, + [3906] = {.lex_state = 335, .external_lex_state = 6}, + [3907] = {.lex_state = 335, .external_lex_state = 6}, + [3908] = {.lex_state = 335, .external_lex_state = 6}, + [3909] = {.lex_state = 215}, + [3910] = {.lex_state = 260, .external_lex_state = 18}, + [3911] = {.lex_state = 85}, + [3912] = {.lex_state = 223, .external_lex_state = 18}, + [3913] = {.lex_state = 223, .external_lex_state = 18}, + [3914] = {.lex_state = 335, .external_lex_state = 6}, + [3915] = {.lex_state = 262, .external_lex_state = 30}, + [3916] = {.lex_state = 262, .external_lex_state = 18}, + [3917] = {.lex_state = 335, .external_lex_state = 6}, + [3918] = {.lex_state = 262, .external_lex_state = 30}, + [3919] = {.lex_state = 262, .external_lex_state = 18}, + [3920] = {.lex_state = 335, .external_lex_state = 6}, + [3921] = {.lex_state = 335, .external_lex_state = 6}, + [3922] = {.lex_state = 341, .external_lex_state = 6}, + [3923] = {.lex_state = 341, .external_lex_state = 6}, + [3924] = {.lex_state = 92, .external_lex_state = 29}, + [3925] = {.lex_state = 92, .external_lex_state = 29}, + [3926] = {.lex_state = 92, .external_lex_state = 18}, + [3927] = {.lex_state = 260, .external_lex_state = 18}, + [3928] = {.lex_state = 341, .external_lex_state = 6}, + [3929] = {.lex_state = 262, .external_lex_state = 30}, + [3930] = {.lex_state = 262, .external_lex_state = 18}, + [3931] = {.lex_state = 262, .external_lex_state = 30}, + [3932] = {.lex_state = 262, .external_lex_state = 18}, + [3933] = {.lex_state = 262, .external_lex_state = 18}, + [3934] = {.lex_state = 341, .external_lex_state = 6}, + [3935] = {.lex_state = 262, .external_lex_state = 18}, + [3936] = {.lex_state = 262, .external_lex_state = 18}, + [3937] = {.lex_state = 328, .external_lex_state = 6}, + [3938] = {.lex_state = 328, .external_lex_state = 6}, + [3939] = {.lex_state = 328, .external_lex_state = 6}, + [3940] = {.lex_state = 331, .external_lex_state = 2}, + [3941] = {.lex_state = 102}, + [3942] = {.lex_state = 146, .external_lex_state = 9}, + [3943] = {.lex_state = 136, .external_lex_state = 5}, + [3944] = {.lex_state = 140, .external_lex_state = 4}, + [3945] = {.lex_state = 85}, + [3946] = {.lex_state = 102}, + [3947] = {.lex_state = 85}, + [3948] = {.lex_state = 207, .external_lex_state = 27}, + [3949] = {.lex_state = 207, .external_lex_state = 27}, + [3950] = {.lex_state = 205, .external_lex_state = 16}, + [3951] = {.lex_state = 311}, + [3952] = {.lex_state = 92, .external_lex_state = 29}, + [3953] = {.lex_state = 92, .external_lex_state = 29}, + [3954] = {.lex_state = 136, .external_lex_state = 12}, + [3955] = {.lex_state = 285, .external_lex_state = 21}, + [3956] = {.lex_state = 285, .external_lex_state = 21}, + [3957] = {.lex_state = 285, .external_lex_state = 21}, + [3958] = {.lex_state = 262, .external_lex_state = 18}, + [3959] = {.lex_state = 262, .external_lex_state = 18}, + [3960] = {.lex_state = 285, .external_lex_state = 21}, + [3961] = {.lex_state = 273, .external_lex_state = 21}, + [3962] = {.lex_state = 273, .external_lex_state = 21}, + [3963] = {.lex_state = 273, .external_lex_state = 6}, + [3964] = {.lex_state = 273, .external_lex_state = 6}, + [3965] = {.lex_state = 333, .external_lex_state = 6}, + [3966] = {.lex_state = 333, .external_lex_state = 6}, + [3967] = {.lex_state = 333, .external_lex_state = 6}, + [3968] = {.lex_state = 262, .external_lex_state = 18}, + [3969] = {.lex_state = 262, .external_lex_state = 18}, + [3970] = {.lex_state = 333, .external_lex_state = 6}, + [3971] = {.lex_state = 306, .external_lex_state = 21}, + [3972] = {.lex_state = 306, .external_lex_state = 21}, + [3973] = {.lex_state = 306, .external_lex_state = 21}, + [3974] = {.lex_state = 262, .external_lex_state = 18}, + [3975] = {.lex_state = 262, .external_lex_state = 18}, + [3976] = {.lex_state = 306, .external_lex_state = 21}, + [3977] = {.lex_state = 324, .external_lex_state = 21}, + [3978] = {.lex_state = 324, .external_lex_state = 21}, + [3979] = {.lex_state = 92, .external_lex_state = 29}, + [3980] = {.lex_state = 92, .external_lex_state = 29}, + [3981] = {.lex_state = 92, .external_lex_state = 18}, + [3982] = {.lex_state = 262, .external_lex_state = 18}, + [3983] = {.lex_state = 324, .external_lex_state = 21}, + [3984] = {.lex_state = 262, .external_lex_state = 18}, + [3985] = {.lex_state = 262, .external_lex_state = 18}, + [3986] = {.lex_state = 262, .external_lex_state = 18}, + [3987] = {.lex_state = 324, .external_lex_state = 21}, + [3988] = {.lex_state = 262, .external_lex_state = 18}, + [3989] = {.lex_state = 316, .external_lex_state = 21}, + [3990] = {.lex_state = 316, .external_lex_state = 21}, + [3991] = {.lex_state = 316, .external_lex_state = 21}, + [3992] = {.lex_state = 262, .external_lex_state = 18}, + [3993] = {.lex_state = 262, .external_lex_state = 18}, + [3994] = {.lex_state = 316, .external_lex_state = 21}, + [3995] = {.lex_state = 316, .external_lex_state = 6}, + [3996] = {.lex_state = 316, .external_lex_state = 6}, + [3997] = {.lex_state = 316, .external_lex_state = 6}, + [3998] = {.lex_state = 262, .external_lex_state = 18}, + [3999] = {.lex_state = 262, .external_lex_state = 18}, + [4000] = {.lex_state = 316, .external_lex_state = 6}, + [4001] = {.lex_state = 318, .external_lex_state = 6}, + [4002] = {.lex_state = 318, .external_lex_state = 6}, + [4003] = {.lex_state = 289, .external_lex_state = 21}, + [4004] = {.lex_state = 289, .external_lex_state = 21}, + [4005] = {.lex_state = 289, .external_lex_state = 6}, + [4006] = {.lex_state = 289, .external_lex_state = 6}, + [4007] = {.lex_state = 345, .external_lex_state = 4}, + [4008] = {.lex_state = 345, .external_lex_state = 21}, + [4009] = {.lex_state = 345, .external_lex_state = 21}, + [4010] = {.lex_state = 345, .external_lex_state = 21}, + [4011] = {.lex_state = 215}, + [4012] = {.lex_state = 260, .external_lex_state = 18}, + [4013] = {.lex_state = 85}, + [4014] = {.lex_state = 223, .external_lex_state = 18}, + [4015] = {.lex_state = 223, .external_lex_state = 18}, + [4016] = {.lex_state = 345, .external_lex_state = 21}, + [4017] = {.lex_state = 262, .external_lex_state = 30}, + [4018] = {.lex_state = 262, .external_lex_state = 18}, + [4019] = {.lex_state = 345, .external_lex_state = 21}, + [4020] = {.lex_state = 262, .external_lex_state = 30}, + [4021] = {.lex_state = 262, .external_lex_state = 18}, + [4022] = {.lex_state = 345, .external_lex_state = 21}, + [4023] = {.lex_state = 345, .external_lex_state = 21}, + [4024] = {.lex_state = 335, .external_lex_state = 4}, + [4025] = {.lex_state = 239}, + [4026] = {.lex_state = 335, .external_lex_state = 21}, + [4027] = {.lex_state = 335, .external_lex_state = 21}, + [4028] = {.lex_state = 92, .external_lex_state = 29}, + [4029] = {.lex_state = 92, .external_lex_state = 29}, + [4030] = {.lex_state = 92, .external_lex_state = 18}, + [4031] = {.lex_state = 260, .external_lex_state = 18}, + [4032] = {.lex_state = 335, .external_lex_state = 21}, + [4033] = {.lex_state = 262, .external_lex_state = 30}, + [4034] = {.lex_state = 262, .external_lex_state = 18}, + [4035] = {.lex_state = 262, .external_lex_state = 30}, + [4036] = {.lex_state = 262, .external_lex_state = 18}, + [4037] = {.lex_state = 262, .external_lex_state = 18}, + [4038] = {.lex_state = 335, .external_lex_state = 21}, + [4039] = {.lex_state = 262, .external_lex_state = 18}, + [4040] = {.lex_state = 262, .external_lex_state = 18}, + [4041] = {.lex_state = 335, .external_lex_state = 6}, + [4042] = {.lex_state = 335, .external_lex_state = 6}, + [4043] = {.lex_state = 92, .external_lex_state = 29}, + [4044] = {.lex_state = 92, .external_lex_state = 29}, + [4045] = {.lex_state = 92, .external_lex_state = 18}, + [4046] = {.lex_state = 260, .external_lex_state = 18}, + [4047] = {.lex_state = 335, .external_lex_state = 6}, + [4048] = {.lex_state = 262, .external_lex_state = 30}, + [4049] = {.lex_state = 262, .external_lex_state = 18}, + [4050] = {.lex_state = 262, .external_lex_state = 30}, + [4051] = {.lex_state = 262, .external_lex_state = 18}, + [4052] = {.lex_state = 262, .external_lex_state = 18}, + [4053] = {.lex_state = 335, .external_lex_state = 6}, + [4054] = {.lex_state = 262, .external_lex_state = 18}, + [4055] = {.lex_state = 262, .external_lex_state = 18}, + [4056] = {.lex_state = 341, .external_lex_state = 6}, + [4057] = {.lex_state = 341, .external_lex_state = 6}, + [4058] = {.lex_state = 92, .external_lex_state = 29}, + [4059] = {.lex_state = 92, .external_lex_state = 29}, + [4060] = {.lex_state = 92, .external_lex_state = 18}, + [4061] = {.lex_state = 262, .external_lex_state = 18}, + [4062] = {.lex_state = 341, .external_lex_state = 6}, + [4063] = {.lex_state = 262, .external_lex_state = 18}, + [4064] = {.lex_state = 262, .external_lex_state = 18}, + [4065] = {.lex_state = 262, .external_lex_state = 18}, + [4066] = {.lex_state = 341, .external_lex_state = 6}, + [4067] = {.lex_state = 262, .external_lex_state = 18}, + [4068] = {.lex_state = 328, .external_lex_state = 6}, + [4069] = {.lex_state = 146, .external_lex_state = 9}, + [4070] = {.lex_state = 102}, + [4071] = {.lex_state = 102}, + [4072] = {.lex_state = 205, .external_lex_state = 16}, + [4073] = {.lex_state = 285, .external_lex_state = 21}, + [4074] = {.lex_state = 285, .external_lex_state = 21}, + [4075] = {.lex_state = 333, .external_lex_state = 6}, + [4076] = {.lex_state = 333, .external_lex_state = 6}, + [4077] = {.lex_state = 306, .external_lex_state = 21}, + [4078] = {.lex_state = 306, .external_lex_state = 21}, + [4079] = {.lex_state = 324, .external_lex_state = 21}, + [4080] = {.lex_state = 324, .external_lex_state = 21}, + [4081] = {.lex_state = 324, .external_lex_state = 21}, + [4082] = {.lex_state = 262, .external_lex_state = 18}, + [4083] = {.lex_state = 262, .external_lex_state = 18}, + [4084] = {.lex_state = 324, .external_lex_state = 21}, + [4085] = {.lex_state = 316, .external_lex_state = 21}, + [4086] = {.lex_state = 316, .external_lex_state = 21}, + [4087] = {.lex_state = 316, .external_lex_state = 6}, + [4088] = {.lex_state = 316, .external_lex_state = 6}, + [4089] = {.lex_state = 345, .external_lex_state = 21}, + [4090] = {.lex_state = 345, .external_lex_state = 21}, + [4091] = {.lex_state = 92, .external_lex_state = 29}, + [4092] = {.lex_state = 92, .external_lex_state = 29}, + [4093] = {.lex_state = 92, .external_lex_state = 18}, + [4094] = {.lex_state = 260, .external_lex_state = 18}, + [4095] = {.lex_state = 345, .external_lex_state = 21}, + [4096] = {.lex_state = 262, .external_lex_state = 30}, + [4097] = {.lex_state = 262, .external_lex_state = 18}, + [4098] = {.lex_state = 262, .external_lex_state = 30}, + [4099] = {.lex_state = 262, .external_lex_state = 18}, + [4100] = {.lex_state = 262, .external_lex_state = 18}, + [4101] = {.lex_state = 345, .external_lex_state = 21}, + [4102] = {.lex_state = 262, .external_lex_state = 18}, + [4103] = {.lex_state = 262, .external_lex_state = 18}, + [4104] = {.lex_state = 335, .external_lex_state = 4}, + [4105] = {.lex_state = 335, .external_lex_state = 21}, + [4106] = {.lex_state = 335, .external_lex_state = 21}, + [4107] = {.lex_state = 92, .external_lex_state = 29}, + [4108] = {.lex_state = 92, .external_lex_state = 29}, + [4109] = {.lex_state = 92, .external_lex_state = 18}, + [4110] = {.lex_state = 262, .external_lex_state = 18}, + [4111] = {.lex_state = 335, .external_lex_state = 21}, + [4112] = {.lex_state = 262, .external_lex_state = 18}, + [4113] = {.lex_state = 262, .external_lex_state = 18}, + [4114] = {.lex_state = 262, .external_lex_state = 18}, + [4115] = {.lex_state = 335, .external_lex_state = 21}, + [4116] = {.lex_state = 262, .external_lex_state = 18}, + [4117] = {.lex_state = 335, .external_lex_state = 6}, + [4118] = {.lex_state = 335, .external_lex_state = 6}, + [4119] = {.lex_state = 92, .external_lex_state = 29}, + [4120] = {.lex_state = 92, .external_lex_state = 29}, + [4121] = {.lex_state = 92, .external_lex_state = 18}, + [4122] = {.lex_state = 262, .external_lex_state = 18}, + [4123] = {.lex_state = 335, .external_lex_state = 6}, + [4124] = {.lex_state = 262, .external_lex_state = 18}, + [4125] = {.lex_state = 262, .external_lex_state = 18}, + [4126] = {.lex_state = 262, .external_lex_state = 18}, + [4127] = {.lex_state = 335, .external_lex_state = 6}, + [4128] = {.lex_state = 262, .external_lex_state = 18}, + [4129] = {.lex_state = 341, .external_lex_state = 6}, + [4130] = {.lex_state = 341, .external_lex_state = 6}, + [4131] = {.lex_state = 341, .external_lex_state = 6}, + [4132] = {.lex_state = 262, .external_lex_state = 18}, + [4133] = {.lex_state = 262, .external_lex_state = 18}, + [4134] = {.lex_state = 341, .external_lex_state = 6}, + [4135] = {.lex_state = 324, .external_lex_state = 21}, + [4136] = {.lex_state = 324, .external_lex_state = 21}, + [4137] = {.lex_state = 345, .external_lex_state = 21}, + [4138] = {.lex_state = 345, .external_lex_state = 21}, + [4139] = {.lex_state = 92, .external_lex_state = 29}, + [4140] = {.lex_state = 92, .external_lex_state = 29}, + [4141] = {.lex_state = 92, .external_lex_state = 18}, + [4142] = {.lex_state = 262, .external_lex_state = 18}, + [4143] = {.lex_state = 345, .external_lex_state = 21}, + [4144] = {.lex_state = 262, .external_lex_state = 18}, + [4145] = {.lex_state = 262, .external_lex_state = 18}, + [4146] = {.lex_state = 262, .external_lex_state = 18}, + [4147] = {.lex_state = 345, .external_lex_state = 21}, + [4148] = {.lex_state = 262, .external_lex_state = 18}, + [4149] = {.lex_state = 335, .external_lex_state = 21}, + [4150] = {.lex_state = 335, .external_lex_state = 21}, + [4151] = {.lex_state = 335, .external_lex_state = 21}, + [4152] = {.lex_state = 262, .external_lex_state = 18}, + [4153] = {.lex_state = 262, .external_lex_state = 18}, + [4154] = {.lex_state = 335, .external_lex_state = 21}, + [4155] = {.lex_state = 335, .external_lex_state = 6}, + [4156] = {.lex_state = 335, .external_lex_state = 6}, + [4157] = {.lex_state = 335, .external_lex_state = 6}, + [4158] = {.lex_state = 262, .external_lex_state = 18}, + [4159] = {.lex_state = 262, .external_lex_state = 18}, + [4160] = {.lex_state = 335, .external_lex_state = 6}, + [4161] = {.lex_state = 341, .external_lex_state = 6}, + [4162] = {.lex_state = 341, .external_lex_state = 6}, + [4163] = {.lex_state = 345, .external_lex_state = 21}, + [4164] = {.lex_state = 345, .external_lex_state = 21}, + [4165] = {.lex_state = 345, .external_lex_state = 21}, + [4166] = {.lex_state = 262, .external_lex_state = 18}, + [4167] = {.lex_state = 262, .external_lex_state = 18}, + [4168] = {.lex_state = 345, .external_lex_state = 21}, + [4169] = {.lex_state = 335, .external_lex_state = 21}, + [4170] = {.lex_state = 335, .external_lex_state = 21}, + [4171] = {.lex_state = 335, .external_lex_state = 6}, + [4172] = {.lex_state = 335, .external_lex_state = 6}, + [4173] = {.lex_state = 345, .external_lex_state = 21}, + [4174] = {.lex_state = 345, .external_lex_state = 21}, }; enum { @@ -7967,7 +11133,7 @@ static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LF] = anon_sym_LF, }; -static bool ts_external_scanner_states[22][EXTERNAL_TOKEN_COUNT] = { +static bool ts_external_scanner_states[31][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_heredoc_start] = true, [ts_external_token__simple_heredoc_body] = true, @@ -8025,17 +11191,57 @@ static bool ts_external_scanner_states[22][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__concat] = true, }, [11] = { - [ts_external_token__concat] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_LF] = true, }, [12] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_LF] = true, + }, + [13] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_LF] = true, + }, + [14] = { + [ts_external_token__concat] = true, + [ts_external_token_LF] = true, + }, + [15] = { + [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_RBRACE] = true, + [ts_external_token_LF] = true, + }, + [16] = { + [ts_external_token__simple_heredoc_body] = true, + [ts_external_token__heredoc_body_beginning] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token_RBRACE] = true, + [ts_external_token_LF] = true, + }, + [17] = { + [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_RBRACE] = true, + [ts_external_token_LF] = true, + }, + [18] = { + [ts_external_token_RBRACE] = true, + }, + [19] = { [ts_external_token__concat] = true, [ts_external_token_RBRACK] = true, }, - [13] = { + [20] = { [ts_external_token_RBRACK] = true, }, - [14] = { + [21] = { [ts_external_token__simple_heredoc_body] = true, [ts_external_token__heredoc_body_beginning] = true, [ts_external_token_file_descriptor] = true, @@ -8043,29 +11249,45 @@ static bool ts_external_scanner_states[22][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_variable_name] = true, [ts_external_token_LF] = true, }, - [15] = { + [22] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, }, - [16] = { - [ts_external_token_RBRACE] = true, - }, - [17] = { + [23] = { [ts_external_token__heredoc_body_middle] = true, [ts_external_token__heredoc_body_end] = true, }, - [18] = { + [24] = { [ts_external_token_heredoc_start] = true, }, - [19] = { + [25] = { [ts_external_token_regex] = true, }, - [20] = { + [26] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_LF] = true, + }, + [27] = { + [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_RBRACE] = true, + [ts_external_token_LF] = true, + }, + [28] = { + [ts_external_token_RBRACE] = true, + [ts_external_token_LF] = true, + }, + [29] = { [ts_external_token__concat] = true, [ts_external_token_RBRACE] = true, }, - [21] = { + [30] = { [ts_external_token_regex] = true, [ts_external_token_RBRACE] = true, }, @@ -8089,8 +11311,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_LPAREN] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_while] = ACTIONS(1), - [anon_sym_do] = ACTIONS(3), - [anon_sym_done] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), [anon_sym_if] = ACTIONS(1), [anon_sym_then] = ACTIONS(1), [anon_sym_fi] = ACTIONS(1), @@ -8168,36 +11389,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1] = { [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__statements] = STATE(28), + [sym_redirected_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_c_style_for_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_compound_statement] = STATE(29), + [sym_subshell] = STATE(29), + [sym_pipeline] = STATE(29), + [sym_list] = STATE(29), + [sym_negated_command] = STATE(29), + [sym_test_command] = STATE(29), + [sym_declaration_command] = STATE(29), + [sym_unset_command] = STATE(29), + [sym_command] = STATE(29), + [sym_command_name] = STATE(30), + [sym_variable_assignment] = STATE(31), + [sym_subscript] = STATE(32), + [sym_file_redirect] = STATE(35), + [sym_concatenation] = STATE(33), [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), + [aux_sym__statements_repeat1] = STATE(34), + [aux_sym_command_repeat1] = STATE(35), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [ts_builtin_sym_end] = ACTIONS(9), @@ -8260,18 +11481,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(71), }, [5] = { - [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), + [sym__expression] = STATE(51), + [sym_binary_expression] = STATE(51), + [sym_unary_expression] = STATE(51), + [sym_postfix_expression] = STATE(51), + [sym_parenthesized_expression] = STATE(51), + [sym_concatenation] = STATE(51), + [sym_string] = STATE(46), + [sym_simple_expansion] = STATE(46), + [sym_string_expansion] = STATE(46), + [sym_expansion] = STATE(46), + [sym_command_substitution] = STATE(46), + [sym_process_substitution] = STATE(46), [anon_sym_LPAREN] = ACTIONS(73), [anon_sym_BANG] = ACTIONS(75), [sym__special_characters] = ACTIONS(77), @@ -8288,55 +11509,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(95), }, [6] = { - [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__terminated_statement] = STATE(75), + [sym_redirected_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_c_style_for_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_function_definition] = STATE(76), + [sym_compound_statement] = STATE(76), + [sym_subshell] = STATE(76), + [sym_pipeline] = STATE(76), + [sym_list] = STATE(76), + [sym_negated_command] = STATE(76), + [sym_test_command] = STATE(76), + [sym_declaration_command] = STATE(76), + [sym_unset_command] = STATE(76), + [sym_command] = STATE(76), + [sym_command_name] = STATE(77), + [sym_variable_assignment] = STATE(78), + [sym_subscript] = STATE(79), + [sym_file_redirect] = STATE(81), + [sym_concatenation] = STATE(80), + [sym_string] = STATE(69), + [sym_simple_expansion] = STATE(69), + [sym_string_expansion] = STATE(69), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_process_substitution] = STATE(69), + [aux_sym_command_repeat1] = STATE(81), [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_for] = ACTIONS(99), + [anon_sym_LPAREN_LPAREN] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_case] = ACTIONS(107), + [anon_sym_function] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(119), + [anon_sym_declare] = ACTIONS(121), + [anon_sym_typeset] = ACTIONS(121), + [anon_sym_export] = ACTIONS(121), + [anon_sym_readonly] = ACTIONS(121), + [anon_sym_local] = ACTIONS(121), + [anon_sym_unset] = ACTIONS(123), + [anon_sym_unsetenv] = ACTIONS(123), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -8344,214 +11565,144 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(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(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), - }, - [8] = { - [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(57), - [sym_word] = ACTIONS(127), - }, - [10] = { - [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(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__special_characters] = ACTIONS(125), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(131), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), [sym_comment] = ACTIONS(57), [sym_word] = ACTIONS(141), }, - [11] = { - [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), + [7] = { + [sym__terminated_statement] = STATE(82), + [sym_redirected_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_c_style_for_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_function_definition] = STATE(76), + [sym_compound_statement] = STATE(76), + [sym_subshell] = STATE(76), + [sym_pipeline] = STATE(76), + [sym_list] = STATE(76), + [sym_negated_command] = STATE(76), + [sym_test_command] = STATE(76), + [sym_declaration_command] = STATE(76), + [sym_unset_command] = STATE(76), + [sym_command] = STATE(76), + [sym_command_name] = STATE(77), + [sym_variable_assignment] = STATE(78), + [sym_subscript] = STATE(79), + [sym_file_redirect] = STATE(81), + [sym_concatenation] = STATE(80), + [sym_string] = STATE(69), + [sym_simple_expansion] = STATE(69), + [sym_string_expansion] = STATE(69), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_process_substitution] = STATE(69), + [aux_sym_command_repeat1] = STATE(81), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [anon_sym_LPAREN_LPAREN] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_case] = ACTIONS(107), + [anon_sym_function] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(119), + [anon_sym_declare] = ACTIONS(121), + [anon_sym_typeset] = ACTIONS(121), + [anon_sym_export] = ACTIONS(121), + [anon_sym_readonly] = ACTIONS(121), + [anon_sym_local] = ACTIONS(121), + [anon_sym_unset] = ACTIONS(123), + [anon_sym_unsetenv] = ACTIONS(123), + [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(125), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(131), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), + }, + [8] = { + [sym_concatenation] = STATE(91), + [sym_string] = STATE(86), + [sym_simple_expansion] = STATE(86), + [sym_string_expansion] = STATE(86), + [sym_expansion] = STATE(86), + [sym_command_substitution] = STATE(86), + [sym_process_substitution] = STATE(86), + [sym__special_characters] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR] = ACTIONS(147), + [sym_raw_string] = ACTIONS(149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(151), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(155), + [anon_sym_LT_LPAREN] = ACTIONS(157), + [anon_sym_GT_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(149), + }, + [9] = { + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(159), + }, + [10] = { + [sym__statements] = STATE(100), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), [anon_sym_for] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_while] = ACTIONS(15), @@ -8560,17 +11711,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(163), [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_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -8578,36 +11728,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(39), [anon_sym_LT_AMP] = ACTIONS(39), [anon_sym_GT_AMP] = ACTIONS(39), - [sym__special_characters] = ACTIONS(105), + [sym__special_characters] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(107), + [sym_raw_string] = ACTIONS(171), [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), + [sym_word] = ACTIONS(173), + }, + [11] = { + [sym__statements] = STATE(131), + [sym_redirected_statement] = STATE(132), + [sym_for_statement] = STATE(132), + [sym_c_style_for_statement] = STATE(132), + [sym_while_statement] = STATE(132), + [sym_if_statement] = STATE(132), + [sym_case_statement] = STATE(132), + [sym_function_definition] = STATE(132), + [sym_compound_statement] = STATE(132), + [sym_subshell] = STATE(132), + [sym_pipeline] = STATE(132), + [sym_list] = STATE(132), + [sym_negated_command] = STATE(132), + [sym_test_command] = STATE(132), + [sym_declaration_command] = STATE(132), + [sym_unset_command] = STATE(132), + [sym_command] = STATE(132), + [sym_command_name] = STATE(133), + [sym_variable_assignment] = STATE(134), + [sym_subscript] = STATE(135), + [sym_file_redirect] = STATE(138), + [sym_concatenation] = STATE(136), + [sym_string] = STATE(125), + [sym_simple_expansion] = STATE(125), + [sym_string_expansion] = STATE(125), + [sym_expansion] = STATE(125), + [sym_command_substitution] = STATE(125), + [sym_process_substitution] = STATE(125), + [aux_sym__statements_repeat1] = STATE(137), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(175), + [anon_sym_for] = ACTIONS(177), + [anon_sym_LPAREN_LPAREN] = ACTIONS(179), + [anon_sym_while] = ACTIONS(181), + [anon_sym_if] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_function] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(191), + [anon_sym_RBRACE] = ACTIONS(193), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(199), + [anon_sym_declare] = ACTIONS(201), + [anon_sym_typeset] = ACTIONS(201), + [anon_sym_export] = ACTIONS(201), + [anon_sym_readonly] = ACTIONS(201), + [anon_sym_local] = ACTIONS(201), + [anon_sym_unset] = ACTIONS(203), + [anon_sym_unsetenv] = ACTIONS(203), + [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(205), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(209), + [sym_raw_string] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(221), }, [12] = { - [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_subshell] = STATE(140), + [sym_test_command] = STATE(140), + [sym_command] = STATE(140), + [sym_command_name] = STATE(30), + [sym_variable_assignment] = STATE(35), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(35), + [sym_concatenation] = STATE(33), [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), + [aux_sym_command_repeat1] = STATE(35), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(145), + [sym_variable_name] = ACTIONS(223), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_LBRACK] = ACTIONS(29), @@ -8632,326 +11853,326 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(47), }, [13] = { - [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__expression] = STATE(152), + [sym_binary_expression] = STATE(152), + [sym_unary_expression] = STATE(152), + [sym_postfix_expression] = STATE(152), + [sym_parenthesized_expression] = STATE(152), + [sym_concatenation] = STATE(152), + [sym_string] = STATE(147), + [sym_simple_expansion] = STATE(147), + [sym_string_expansion] = STATE(147), + [sym_expansion] = STATE(147), + [sym_command_substitution] = STATE(147), + [sym_process_substitution] = STATE(147), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_BANG] = ACTIONS(227), + [sym__special_characters] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [sym_raw_string] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_LT_LPAREN] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(243), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(167), - [sym_test_operator] = ACTIONS(169), + [sym_word] = ACTIONS(245), + [sym_test_operator] = ACTIONS(247), }, [14] = { - [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), + [sym__expression] = STATE(156), + [sym_binary_expression] = STATE(156), + [sym_unary_expression] = STATE(156), + [sym_postfix_expression] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_concatenation] = STATE(156), + [sym_string] = STATE(155), + [sym_simple_expansion] = STATE(155), + [sym_string_expansion] = STATE(155), + [sym_expansion] = STATE(155), + [sym_command_substitution] = STATE(155), + [sym_process_substitution] = STATE(155), [anon_sym_LPAREN] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(171), - [sym__special_characters] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(249), + [sym__special_characters] = ACTIONS(251), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_DOLLAR] = ACTIONS(81), - [sym_raw_string] = ACTIONS(175), + [sym_raw_string] = ACTIONS(253), [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), + [sym_word] = ACTIONS(255), + [sym_test_operator] = ACTIONS(257), }, [15] = { - [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_variable_assignment] = STATE(167), + [sym_subscript] = STATE(166), + [sym_concatenation] = STATE(167), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_declaration_command_repeat1] = STATE(167), + [sym__simple_heredoc_body] = ACTIONS(259), + [sym__heredoc_body_beginning] = ACTIONS(259), + [sym_file_descriptor] = ACTIONS(259), + [sym_variable_name] = ACTIONS(261), + [ts_builtin_sym_end] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(263), + [anon_sym_PIPE] = ACTIONS(263), + [anon_sym_SEMI_SEMI] = ACTIONS(259), + [anon_sym_PIPE_AMP] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(259), + [anon_sym_PIPE_PIPE] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(263), + [anon_sym_GT] = ACTIONS(263), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_AMP_GT] = ACTIONS(263), + [anon_sym_AMP_GT_GT] = ACTIONS(259), + [anon_sym_LT_AMP] = ACTIONS(259), + [anon_sym_GT_AMP] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(263), + [anon_sym_LT_LT_DASH] = ACTIONS(259), + [anon_sym_LT_LT_LT] = ACTIONS(259), + [sym__special_characters] = ACTIONS(265), + [anon_sym_DQUOTE] = ACTIONS(267), + [anon_sym_DOLLAR] = ACTIONS(269), + [sym_raw_string] = ACTIONS(271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(273), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(277), + [anon_sym_LT_LPAREN] = ACTIONS(279), + [anon_sym_GT_LPAREN] = ACTIONS(279), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(281), + [sym_word] = ACTIONS(283), + [anon_sym_LF] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(263), }, [16] = { - [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_concatenation] = STATE(176), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_unset_command_repeat1] = STATE(176), + [sym__simple_heredoc_body] = ACTIONS(285), + [sym__heredoc_body_beginning] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(285), + [ts_builtin_sym_end] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(287), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(287), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [sym__special_characters] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(299), + [anon_sym_BQUOTE] = ACTIONS(301), + [anon_sym_LT_LPAREN] = ACTIONS(303), + [anon_sym_GT_LPAREN] = ACTIONS(303), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(305), + [sym_word] = ACTIONS(307), + [anon_sym_LF] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(287), }, [17] = { - [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_concatenation] = STATE(185), + [sym_string] = STATE(180), + [sym_simple_expansion] = STATE(180), + [sym_string_expansion] = STATE(180), + [sym_expansion] = STATE(180), + [sym_command_substitution] = STATE(180), + [sym_process_substitution] = STATE(180), + [sym__special_characters] = ACTIONS(309), + [anon_sym_DQUOTE] = ACTIONS(311), + [anon_sym_DOLLAR] = ACTIONS(313), + [sym_raw_string] = ACTIONS(315), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(317), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(319), + [anon_sym_BQUOTE] = ACTIONS(321), + [anon_sym_LT_LPAREN] = ACTIONS(323), + [anon_sym_GT_LPAREN] = ACTIONS(323), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(237), + [sym_word] = ACTIONS(315), }, [18] = { - [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), + [aux_sym_concatenation_repeat1] = STATE(187), + [sym__simple_heredoc_body] = ACTIONS(325), + [sym__heredoc_body_beginning] = ACTIONS(325), + [sym_file_descriptor] = ACTIONS(325), + [sym__concat] = ACTIONS(327), + [ts_builtin_sym_end] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(325), + [anon_sym_PIPE_AMP] = ACTIONS(325), + [anon_sym_AMP_AMP] = ACTIONS(325), + [anon_sym_PIPE_PIPE] = ACTIONS(325), + [anon_sym_EQ_TILDE] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(329), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_LT_LT_DASH] = ACTIONS(325), + [anon_sym_LT_LT_LT] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(329), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(251), - [anon_sym_LF] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(251), + [sym_word] = ACTIONS(329), + [anon_sym_LF] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(329), }, [19] = { - [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), + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(194), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(333), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), }, [20] = { - [sym_string] = STATE(149), - [anon_sym_DASH] = ACTIONS(267), + [sym_string] = STATE(196), + [anon_sym_DASH] = ACTIONS(345), [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), + [anon_sym_DOLLAR] = ACTIONS(345), + [sym_raw_string] = ACTIONS(347), + [anon_sym_POUND] = ACTIONS(345), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_0] = ACTIONS(349), + [anon_sym__] = ACTIONS(349), }, [21] = { - [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), + [aux_sym_concatenation_repeat1] = STATE(187), + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [sym__concat] = ACTIONS(327), + [ts_builtin_sym_end] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(277), - [anon_sym_LF] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), }, [22] = { - [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), + [sym_subscript] = STATE(201), + [sym_variable_name] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DOLLAR] = ACTIONS(361), + [anon_sym_POUND] = ACTIONS(359), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_AT] = ACTIONS(365), + [anon_sym_QMARK] = ACTIONS(365), + [anon_sym_0] = ACTIONS(363), + [anon_sym__] = ACTIONS(363), }, [23] = { - [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__statements] = STATE(202), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(129), + [sym_variable_name] = ACTIONS(161), [anon_sym_for] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_while] = ACTIONS(15), @@ -8960,16 +12181,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(163), [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_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -8977,51 +12198,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(39), [anon_sym_LT_AMP] = ACTIONS(39), [anon_sym_GT_AMP] = ACTIONS(39), - [sym__special_characters] = ACTIONS(137), + [sym__special_characters] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(139), + [sym_raw_string] = ACTIONS(171), [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), + [sym_word] = ACTIONS(173), }, [24] = { - [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__statements] = STATE(210), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(97), + [sym_variable_name] = ACTIONS(367), [anon_sym_for] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_while] = ACTIONS(15), @@ -9030,16 +12251,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(289), + [anon_sym_BANG] = ACTIONS(369), [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_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -9047,51 +12268,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(39), [anon_sym_LT_AMP] = ACTIONS(39), [anon_sym_GT_AMP] = ACTIONS(39), - [sym__special_characters] = ACTIONS(105), + [sym__special_characters] = ACTIONS(375), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(107), + [sym_raw_string] = ACTIONS(377), [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), + [sym_word] = ACTIONS(379), }, [25] = { - [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__statements] = STATE(217), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(129), + [sym_variable_name] = ACTIONS(161), [anon_sym_for] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_while] = ACTIONS(15), @@ -9100,16 +12321,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(163), [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_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -9117,252 +12338,255 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(39), [anon_sym_LT_AMP] = ACTIONS(39), [anon_sym_GT_AMP] = ACTIONS(39), - [sym__special_characters] = ACTIONS(137), + [sym__special_characters] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(139), + [sym_raw_string] = ACTIONS(171), [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), + [sym_word] = ACTIONS(173), }, [26] = { - [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), + [aux_sym_concatenation_repeat1] = STATE(187), + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [sym__concat] = ACTIONS(327), + [ts_builtin_sym_end] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(277), - [anon_sym_LF] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), }, [27] = { - [ts_builtin_sym_end] = ACTIONS(297), + [ts_builtin_sym_end] = ACTIONS(383), [sym_comment] = ACTIONS(57), }, [28] = { - [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), + [ts_builtin_sym_end] = ACTIONS(385), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(307), }, [29] = { - [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(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), + [sym_file_redirect] = STATE(229), + [sym_heredoc_redirect] = STATE(229), + [sym_heredoc_body] = STATE(228), + [sym_herestring_redirect] = STATE(229), + [aux_sym_redirected_statement_repeat1] = STATE(229), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(391), + [ts_builtin_sym_end] = ACTIONS(393), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_SEMI_SEMI] = ACTIONS(399), + [anon_sym_PIPE_AMP] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(405), + [anon_sym_AMP_GT_GT] = ACTIONS(407), + [anon_sym_LT_AMP] = ACTIONS(407), + [anon_sym_GT_AMP] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(395), + }, + [30] = { + [sym_concatenation] = STATE(233), + [sym_string] = STATE(232), + [sym_simple_expansion] = STATE(232), + [sym_string_expansion] = STATE(232), + [sym_expansion] = STATE(232), + [sym_command_substitution] = STATE(232), + [sym_process_substitution] = STATE(232), + [aux_sym_command_repeat2] = STATE(233), + [sym__simple_heredoc_body] = ACTIONS(415), + [sym__heredoc_body_beginning] = ACTIONS(415), + [sym_file_descriptor] = ACTIONS(415), + [ts_builtin_sym_end] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(415), + [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(415), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(415), + [anon_sym_LT_AMP] = ACTIONS(415), + [anon_sym_GT_AMP] = ACTIONS(415), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(415), + [anon_sym_LT_LT_LT] = ACTIONS(415), + [sym__special_characters] = ACTIONS(421), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(335), + [sym_raw_string] = ACTIONS(423), [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] = { - [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), + [sym_word] = ACTIONS(425), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), }, [31] = { + [sym_file_redirect] = STATE(229), + [sym_heredoc_redirect] = STATE(229), + [sym_heredoc_body] = STATE(228), + [sym_herestring_redirect] = STATE(229), + [aux_sym_redirected_statement_repeat1] = STATE(229), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [ts_builtin_sym_end] = ACTIONS(393), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_SEMI_SEMI] = ACTIONS(399), + [anon_sym_PIPE_AMP] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(395), + }, + [32] = { [anon_sym_EQ] = ACTIONS(67), [anon_sym_PLUS_EQ] = ACTIONS(67), [sym_comment] = ACTIONS(57), }, - [32] = { - [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__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [ts_builtin_sym_end] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_RPAREN] = ACTIONS(353), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), + }, + [34] = { + [sym_redirected_statement] = STATE(234), + [sym_for_statement] = STATE(234), + [sym_c_style_for_statement] = STATE(234), + [sym_while_statement] = STATE(234), + [sym_if_statement] = STATE(234), + [sym_case_statement] = STATE(234), + [sym_function_definition] = STATE(234), + [sym_compound_statement] = STATE(234), + [sym_subshell] = STATE(234), + [sym_pipeline] = STATE(234), + [sym_list] = STATE(234), + [sym_negated_command] = STATE(234), + [sym_test_command] = STATE(234), + [sym_declaration_command] = STATE(234), + [sym_unset_command] = STATE(234), + [sym_command] = STATE(234), + [sym_command_name] = STATE(30), + [sym_variable_assignment] = STATE(235), + [sym_subscript] = STATE(32), + [sym_file_redirect] = STATE(35), + [sym_concatenation] = STATE(33), [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), + [aux_sym__statements_repeat1] = STATE(236), + [aux_sym_command_repeat1] = STATE(35), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), @@ -9402,21 +12626,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(57), [sym_word] = ACTIONS(59), }, - [34] = { - [sym_command_name] = STATE(188), - [sym_variable_assignment] = STATE(189), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(189), - [sym_concatenation] = STATE(32), + [35] = { + [sym_command_name] = STATE(237), + [sym_variable_assignment] = STATE(238), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(238), + [sym_concatenation] = STATE(33), [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), + [aux_sym_command_repeat1] = STATE(238), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(145), + [sym_variable_name] = ACTIONS(223), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -9424,7 +12648,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(39), [anon_sym_LT_AMP] = ACTIONS(39), [anon_sym_GT_AMP] = ACTIONS(39), - [sym__special_characters] = ACTIONS(343), + [sym__special_characters] = ACTIONS(431), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), [sym_raw_string] = ACTIONS(47), @@ -9436,150 +12660,150 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(57), [sym_word] = ACTIONS(47), }, - [35] = { - [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(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_concatenation] = STATE(241), + [sym_string] = STATE(240), + [sym_simple_expansion] = STATE(240), + [sym_string_expansion] = STATE(240), + [sym_expansion] = STATE(240), + [sym_command_substitution] = STATE(240), + [sym_process_substitution] = STATE(240), + [sym__special_characters] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(311), + [anon_sym_DOLLAR] = ACTIONS(313), + [sym_raw_string] = ACTIONS(435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(317), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(319), + [anon_sym_BQUOTE] = ACTIONS(321), + [anon_sym_LT_LPAREN] = ACTIONS(323), + [anon_sym_GT_LPAREN] = ACTIONS(323), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(351), + [sym_word] = ACTIONS(435), }, [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_concatenation] = STATE(244), + [sym_string] = STATE(243), + [sym_simple_expansion] = STATE(243), + [sym_string_expansion] = STATE(243), + [sym_expansion] = STATE(243), + [sym_command_substitution] = STATE(243), + [sym_process_substitution] = STATE(243), + [sym__special_characters] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_LT_LPAREN] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(243), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(363), + [sym_word] = ACTIONS(439), }, [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_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(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_concatenation] = STATE(245), + [sym_string] = STATE(250), + [sym_array] = STATE(245), + [sym_simple_expansion] = STATE(250), + [sym_string_expansion] = STATE(250), + [sym_expansion] = STATE(250), + [sym_command_substitution] = STATE(250), + [sym_process_substitution] = STATE(250), + [sym__empty_value] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(443), + [sym__special_characters] = ACTIONS(445), + [anon_sym_DQUOTE] = ACTIONS(447), + [anon_sym_DOLLAR] = ACTIONS(449), + [sym_raw_string] = ACTIONS(451), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(455), + [anon_sym_BQUOTE] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(459), + [anon_sym_GT_LPAREN] = ACTIONS(459), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(397), - [sym_test_operator] = ACTIONS(399), - [anon_sym_LF] = ACTIONS(375), - [anon_sym_AMP] = ACTIONS(375), + [sym_word] = ACTIONS(451), }, [39] = { - [anon_sym_in] = ACTIONS(401), - [anon_sym_SEMI] = ACTIONS(403), - [anon_sym_SEMI_SEMI] = ACTIONS(405), + [sym__expression] = STATE(266), + [sym_binary_expression] = STATE(266), + [sym_unary_expression] = STATE(266), + [sym_postfix_expression] = STATE(266), + [sym_parenthesized_expression] = STATE(266), + [sym_concatenation] = STATE(266), + [sym_string] = STATE(261), + [sym_simple_expansion] = STATE(261), + [sym_string_expansion] = STATE(261), + [sym_expansion] = STATE(261), + [sym_command_substitution] = STATE(261), + [sym_process_substitution] = STATE(261), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_SEMI_SEMI] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(467), + [sym__special_characters] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(473), + [sym_raw_string] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_LT_LPAREN] = ACTIONS(483), + [anon_sym_GT_LPAREN] = ACTIONS(483), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(405), + [sym_word] = ACTIONS(485), + [sym_test_operator] = ACTIONS(487), + [anon_sym_LF] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), }, [40] = { - [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), + [anon_sym_in] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_SEMI_SEMI] = ACTIONS(493), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(427), - [sym_test_operator] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(493), }, [41] = { - [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), + [sym__expression] = STATE(279), + [sym_binary_expression] = STATE(279), + [sym_unary_expression] = STATE(279), + [sym_postfix_expression] = STATE(279), + [sym_parenthesized_expression] = STATE(279), + [sym_concatenation] = STATE(279), + [sym_string] = STATE(274), + [sym_simple_expansion] = STATE(274), + [sym_string_expansion] = STATE(274), + [sym_expansion] = STATE(274), + [sym_command_substitution] = STATE(274), + [sym_process_substitution] = STATE(274), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(497), + [sym__special_characters] = ACTIONS(499), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), + }, + [42] = { + [sym__expression] = STATE(280), + [sym_binary_expression] = STATE(280), + [sym_unary_expression] = STATE(280), + [sym_postfix_expression] = STATE(280), + [sym_parenthesized_expression] = STATE(280), + [sym_concatenation] = STATE(280), + [sym_string] = STATE(46), + [sym_simple_expansion] = STATE(46), + [sym_string_expansion] = STATE(46), + [sym_expansion] = STATE(46), + [sym_command_substitution] = STATE(46), + [sym_process_substitution] = STATE(46), [anon_sym_LPAREN] = ACTIONS(73), [anon_sym_BANG] = ACTIONS(75), [sym__special_characters] = ACTIONS(77), @@ -9595,198 +12819,128 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(93), [sym_test_operator] = ACTIONS(95), }, - [42] = { - [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_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), + [aux_sym_concatenation_repeat1] = STATE(282), + [sym__concat] = ACTIONS(519), + [anon_sym_RPAREN_RPAREN] = ACTIONS(521), + [anon_sym_AMP_AMP] = ACTIONS(521), + [anon_sym_PIPE_PIPE] = ACTIONS(521), + [anon_sym_EQ_TILDE] = ACTIONS(521), + [anon_sym_EQ_EQ] = ACTIONS(521), + [anon_sym_EQ] = ACTIONS(523), + [anon_sym_PLUS_EQ] = ACTIONS(521), + [anon_sym_LT] = ACTIONS(523), + [anon_sym_GT] = ACTIONS(523), + [anon_sym_BANG_EQ] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DASH] = ACTIONS(523), + [anon_sym_DASH_EQ] = ACTIONS(521), + [anon_sym_LT_EQ] = ACTIONS(521), + [anon_sym_GT_EQ] = ACTIONS(521), + [anon_sym_PLUS_PLUS] = ACTIONS(521), + [anon_sym_DASH_DASH] = ACTIONS(521), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(521), }, [44] = { - [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), + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(285), + [anon_sym_DQUOTE] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(527), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), }, [45] = { - [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), + [sym_string] = STATE(287), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(529), + [sym_raw_string] = ACTIONS(531), + [anon_sym_POUND] = ACTIONS(529), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(533), + [anon_sym_STAR] = ACTIONS(535), + [anon_sym_AT] = ACTIONS(535), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_0] = ACTIONS(533), + [anon_sym__] = ACTIONS(533), }, [46] = { - [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), + [aux_sym_concatenation_repeat1] = STATE(282), + [sym__concat] = ACTIONS(519), + [anon_sym_RPAREN_RPAREN] = ACTIONS(537), + [anon_sym_AMP_AMP] = ACTIONS(537), + [anon_sym_PIPE_PIPE] = ACTIONS(537), + [anon_sym_EQ_TILDE] = ACTIONS(537), + [anon_sym_EQ_EQ] = ACTIONS(537), + [anon_sym_EQ] = ACTIONS(539), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_LT] = ACTIONS(539), + [anon_sym_GT] = ACTIONS(539), + [anon_sym_BANG_EQ] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(539), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_EQ] = ACTIONS(537), + [anon_sym_GT_EQ] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(537), }, [47] = { - [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(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), + [sym_subscript] = STATE(292), + [sym_variable_name] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(545), + [anon_sym_POUND] = ACTIONS(543), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(547), + [anon_sym_STAR] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(549), + [anon_sym_0] = ACTIONS(547), + [anon_sym__] = ACTIONS(547), }, [48] = { - [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__statements] = STATE(293), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(97), + [sym_variable_name] = ACTIONS(161), [anon_sym_for] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_while] = ACTIONS(15), @@ -9795,16 +12949,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(289), + [anon_sym_BANG] = ACTIONS(163), [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_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -9812,51 +12966,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(39), [anon_sym_LT_AMP] = ACTIONS(39), [anon_sym_GT_AMP] = ACTIONS(39), - [sym__special_characters] = ACTIONS(105), + [sym__special_characters] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(107), + [sym_raw_string] = ACTIONS(171), [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), + [sym_word] = ACTIONS(173), }, [49] = { - [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__statements] = STATE(294), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(129), + [sym_variable_name] = ACTIONS(367), [anon_sym_for] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_while] = ACTIONS(15), @@ -9865,16 +13019,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(369), [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_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -9882,2783 +13036,1882 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(39), [anon_sym_LT_AMP] = ACTIONS(39), [anon_sym_GT_AMP] = ACTIONS(39), - [sym__special_characters] = ACTIONS(137), + [sym__special_characters] = ACTIONS(375), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(139), + [sym_raw_string] = ACTIONS(377), [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), + [sym_word] = ACTIONS(379), }, [50] = { - [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__statements] = STATE(295), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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_test_operator] = ACTIONS(465), + [sym_word] = ACTIONS(173), }, [51] = { - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_EQ] = ACTIONS(473), - [anon_sym_PLUS_EQ] = ACTIONS(473), + [anon_sym_RPAREN_RPAREN] = ACTIONS(551), + [anon_sym_AMP_AMP] = ACTIONS(553), + [anon_sym_PIPE_PIPE] = ACTIONS(553), + [anon_sym_EQ_TILDE] = ACTIONS(555), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_PLUS_EQ] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_DASH_EQ] = ACTIONS(553), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(553), }, [52] = { - [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(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), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_PLUS_EQ] = ACTIONS(561), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(107), }, [53] = { - [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), + [anon_sym_LPAREN_LPAREN] = ACTIONS(563), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(565), }, [54] = { - [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] = { - [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] = { - [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] = { - [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_do_group] = STATE(268), - [anon_sym_do] = ACTIONS(493), - [sym_comment] = ACTIONS(57), - }, - [59] = { - [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] = { - [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] = { - [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] = { - [anon_sym_EQ] = ACTIONS(473), - [anon_sym_PLUS_EQ] = ACTIONS(473), - [sym_comment] = ACTIONS(57), - }, - [63] = { - [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] = { - [anon_sym_then] = ACTIONS(523), - [sym_comment] = ACTIONS(57), - }, - [65] = { - [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), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(531), - }, - [66] = { - [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_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] = { - [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] = { - [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__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__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] = { - [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] = { - [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_compound_statement] = STATE(309), - [anon_sym_LPAREN] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(25), - [sym_comment] = ACTIONS(57), - }, - [75] = { - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [sym_comment] = ACTIONS(57), - }, - [76] = { - [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(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(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(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] = { - [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_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] = { - [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] = { - [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] = { - [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_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_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_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] = { - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [sym_comment] = ACTIONS(57), - }, - [86] = { - [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_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(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] = { - [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] = { - [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] = { - [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] = { - [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] = { - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_PLUS_EQ] = ACTIONS(623), - [sym_comment] = ACTIONS(57), - }, - [93] = { - [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(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(623), - [anon_sym_PLUS_EQ] = ACTIONS(623), - [sym_comment] = ACTIONS(57), - }, - [95] = { - [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), - [sym_negated_command] = STATE(355), - [sym_test_command] = STATE(355), - [sym_declaration_command] = STATE(355), - [sym_unset_command] = STATE(355), - [sym_command] = STATE(355), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(356), - [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(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), - }, - [103] = { - [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__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] = { - [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__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), + [sym__expression] = STATE(303), + [sym_binary_expression] = STATE(303), + [sym_unary_expression] = STATE(303), + [sym_postfix_expression] = STATE(303), + [sym_parenthesized_expression] = STATE(303), + [sym_concatenation] = STATE(303), + [sym_string] = STATE(46), + [sym_simple_expansion] = STATE(46), + [sym_string_expansion] = STATE(46), + [sym_expansion] = STATE(46), + [sym_command_substitution] = STATE(46), + [sym_process_substitution] = STATE(46), [anon_sym_LPAREN] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(171), - [sym__special_characters] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(75), + [sym__special_characters] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_DOLLAR] = ACTIONS(81), - [sym_raw_string] = ACTIONS(175), + [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(177), - [sym_test_operator] = ACTIONS(179), + [sym_word] = ACTIONS(93), + [sym_test_operator] = ACTIONS(95), }, - [107] = { - [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), + [55] = { + [sym__terminated_statement] = STATE(304), + [sym_redirected_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_c_style_for_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_function_definition] = STATE(76), + [sym_compound_statement] = STATE(76), + [sym_subshell] = STATE(76), + [sym_pipeline] = STATE(76), + [sym_list] = STATE(76), + [sym_negated_command] = STATE(76), + [sym_test_command] = STATE(76), + [sym_declaration_command] = STATE(76), + [sym_unset_command] = STATE(76), + [sym_command] = STATE(76), + [sym_command_name] = STATE(77), + [sym_variable_assignment] = STATE(78), + [sym_subscript] = STATE(79), + [sym_file_redirect] = STATE(81), + [sym_concatenation] = STATE(80), + [sym_string] = STATE(69), + [sym_simple_expansion] = STATE(69), + [sym_string_expansion] = STATE(69), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_process_substitution] = STATE(69), + [aux_sym_command_repeat1] = STATE(81), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [anon_sym_LPAREN_LPAREN] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_case] = ACTIONS(107), + [anon_sym_function] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(119), + [anon_sym_declare] = ACTIONS(121), + [anon_sym_typeset] = ACTIONS(121), + [anon_sym_export] = ACTIONS(121), + [anon_sym_readonly] = ACTIONS(121), + [anon_sym_local] = ACTIONS(121), + [anon_sym_unset] = ACTIONS(123), + [anon_sym_unsetenv] = ACTIONS(123), + [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(125), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(131), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(433), + [sym_word] = ACTIONS(141), }, - [108] = { - [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), + [56] = { + [sym__terminated_statement] = STATE(305), + [sym_redirected_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_c_style_for_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_function_definition] = STATE(76), + [sym_compound_statement] = STATE(76), + [sym_subshell] = STATE(76), + [sym_pipeline] = STATE(76), + [sym_list] = STATE(76), + [sym_negated_command] = STATE(76), + [sym_test_command] = STATE(76), + [sym_declaration_command] = STATE(76), + [sym_unset_command] = STATE(76), + [sym_command] = STATE(76), + [sym_command_name] = STATE(77), + [sym_variable_assignment] = STATE(78), + [sym_subscript] = STATE(79), + [sym_file_redirect] = STATE(81), + [sym_concatenation] = STATE(80), + [sym_string] = STATE(69), + [sym_simple_expansion] = STATE(69), + [sym_string_expansion] = STATE(69), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_process_substitution] = STATE(69), + [aux_sym_command_repeat1] = STATE(81), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [anon_sym_LPAREN_LPAREN] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_case] = ACTIONS(107), + [anon_sym_function] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(119), + [anon_sym_declare] = ACTIONS(121), + [anon_sym_typeset] = ACTIONS(121), + [anon_sym_export] = ACTIONS(121), + [anon_sym_readonly] = ACTIONS(121), + [anon_sym_local] = ACTIONS(121), + [anon_sym_unset] = ACTIONS(123), + [anon_sym_unsetenv] = ACTIONS(123), + [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(125), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(131), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(449), + [sym_word] = ACTIONS(141), }, - [109] = { - [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), + [57] = { + [sym_concatenation] = STATE(308), + [sym_string] = STATE(307), + [sym_simple_expansion] = STATE(307), + [sym_string_expansion] = STATE(307), + [sym_expansion] = STATE(307), + [sym_command_substitution] = STATE(307), + [sym_process_substitution] = STATE(307), + [sym__special_characters] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR] = ACTIONS(147), + [sym_raw_string] = ACTIONS(569), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(151), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(155), + [anon_sym_LT_LPAREN] = ACTIONS(157), + [anon_sym_GT_LPAREN] = ACTIONS(157), [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(661), + [sym_word] = ACTIONS(569), }, - [110] = { - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_PLUS_EQ] = ACTIONS(667), + [58] = { + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(571), + }, + [59] = { + [sym__statements] = STATE(310), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [60] = { + [sym__statements] = STATE(312), + [sym_redirected_statement] = STATE(132), + [sym_for_statement] = STATE(132), + [sym_c_style_for_statement] = STATE(132), + [sym_while_statement] = STATE(132), + [sym_if_statement] = STATE(132), + [sym_case_statement] = STATE(132), + [sym_function_definition] = STATE(132), + [sym_compound_statement] = STATE(132), + [sym_subshell] = STATE(132), + [sym_pipeline] = STATE(132), + [sym_list] = STATE(132), + [sym_negated_command] = STATE(132), + [sym_test_command] = STATE(132), + [sym_declaration_command] = STATE(132), + [sym_unset_command] = STATE(132), + [sym_command] = STATE(132), + [sym_command_name] = STATE(133), + [sym_variable_assignment] = STATE(134), + [sym_subscript] = STATE(135), + [sym_file_redirect] = STATE(138), + [sym_concatenation] = STATE(136), + [sym_string] = STATE(125), + [sym_simple_expansion] = STATE(125), + [sym_string_expansion] = STATE(125), + [sym_expansion] = STATE(125), + [sym_command_substitution] = STATE(125), + [sym_process_substitution] = STATE(125), + [aux_sym__statements_repeat1] = STATE(137), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(175), + [anon_sym_for] = ACTIONS(177), + [anon_sym_LPAREN_LPAREN] = ACTIONS(179), + [anon_sym_while] = ACTIONS(181), + [anon_sym_if] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_function] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(191), + [anon_sym_RBRACE] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(199), + [anon_sym_declare] = ACTIONS(201), + [anon_sym_typeset] = ACTIONS(201), + [anon_sym_export] = ACTIONS(201), + [anon_sym_readonly] = ACTIONS(201), + [anon_sym_local] = ACTIONS(201), + [anon_sym_unset] = ACTIONS(203), + [anon_sym_unsetenv] = ACTIONS(203), + [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(205), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(209), + [sym_raw_string] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(221), + }, + [61] = { + [sym_subshell] = STATE(313), + [sym_test_command] = STATE(313), + [sym_command] = STATE(313), + [sym_command_name] = STATE(77), + [sym_variable_assignment] = STATE(81), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(81), + [sym_concatenation] = STATE(80), + [sym_string] = STATE(69), + [sym_simple_expansion] = STATE(69), + [sym_string_expansion] = STATE(69), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_process_substitution] = STATE(69), + [aux_sym_command_repeat1] = STATE(81), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(223), + [anon_sym_LPAREN_LPAREN] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(119), + [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(125), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(131), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(131), + }, + [62] = { + [sym__expression] = STATE(314), + [sym_binary_expression] = STATE(314), + [sym_unary_expression] = STATE(314), + [sym_postfix_expression] = STATE(314), + [sym_parenthesized_expression] = STATE(314), + [sym_concatenation] = STATE(314), + [sym_string] = STATE(147), + [sym_simple_expansion] = STATE(147), + [sym_string_expansion] = STATE(147), + [sym_expansion] = STATE(147), + [sym_command_substitution] = STATE(147), + [sym_process_substitution] = STATE(147), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_BANG] = ACTIONS(227), + [sym__special_characters] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [sym_raw_string] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_LT_LPAREN] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(245), + [sym_test_operator] = ACTIONS(247), + }, + [63] = { + [sym__expression] = STATE(315), + [sym_binary_expression] = STATE(315), + [sym_unary_expression] = STATE(315), + [sym_postfix_expression] = STATE(315), + [sym_parenthesized_expression] = STATE(315), + [sym_concatenation] = STATE(315), + [sym_string] = STATE(155), + [sym_simple_expansion] = STATE(155), + [sym_string_expansion] = STATE(155), + [sym_expansion] = STATE(155), + [sym_command_substitution] = STATE(155), + [sym_process_substitution] = STATE(155), + [anon_sym_LPAREN] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(249), + [sym__special_characters] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [sym_raw_string] = ACTIONS(253), + [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(255), + [sym_test_operator] = ACTIONS(257), + }, + [64] = { + [sym_variable_assignment] = STATE(326), + [sym_subscript] = STATE(325), + [sym_concatenation] = STATE(326), + [sym_string] = STATE(320), + [sym_simple_expansion] = STATE(320), + [sym_string_expansion] = STATE(320), + [sym_expansion] = STATE(320), + [sym_command_substitution] = STATE(320), + [sym_process_substitution] = STATE(320), + [aux_sym_declaration_command_repeat1] = STATE(326), + [sym_file_descriptor] = ACTIONS(259), + [sym_variable_name] = ACTIONS(575), + [anon_sym_SEMI] = ACTIONS(263), + [anon_sym_PIPE] = ACTIONS(263), + [anon_sym_SEMI_SEMI] = ACTIONS(259), + [anon_sym_PIPE_AMP] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(259), + [anon_sym_PIPE_PIPE] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(263), + [anon_sym_GT] = ACTIONS(263), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_AMP_GT] = ACTIONS(263), + [anon_sym_AMP_GT_GT] = ACTIONS(259), + [anon_sym_LT_AMP] = ACTIONS(259), + [anon_sym_GT_AMP] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(263), + [anon_sym_LT_LT_DASH] = ACTIONS(259), + [anon_sym_LT_LT_LT] = ACTIONS(259), + [sym__special_characters] = ACTIONS(577), + [anon_sym_DQUOTE] = ACTIONS(579), + [anon_sym_DOLLAR] = ACTIONS(581), + [sym_raw_string] = ACTIONS(583), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(587), + [anon_sym_BQUOTE] = ACTIONS(589), + [anon_sym_LT_LPAREN] = ACTIONS(591), + [anon_sym_GT_LPAREN] = ACTIONS(591), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(593), + [sym_word] = ACTIONS(595), + [anon_sym_LF] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(263), + }, + [65] = { + [sym_concatenation] = STATE(335), + [sym_string] = STATE(330), + [sym_simple_expansion] = STATE(330), + [sym_string_expansion] = STATE(330), + [sym_expansion] = STATE(330), + [sym_command_substitution] = STATE(330), + [sym_process_substitution] = STATE(330), + [aux_sym_unset_command_repeat1] = STATE(335), + [sym_file_descriptor] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(287), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(287), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [sym__special_characters] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(601), + [sym_raw_string] = ACTIONS(603), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(605), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(607), + [anon_sym_BQUOTE] = ACTIONS(609), + [anon_sym_LT_LPAREN] = ACTIONS(611), + [anon_sym_GT_LPAREN] = ACTIONS(611), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(613), + [sym_word] = ACTIONS(615), + [anon_sym_LF] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(287), + }, + [66] = { + [aux_sym_concatenation_repeat1] = STATE(337), + [sym_file_descriptor] = ACTIONS(325), + [sym__concat] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(325), + [anon_sym_PIPE_AMP] = ACTIONS(325), + [anon_sym_AMP_AMP] = ACTIONS(325), + [anon_sym_PIPE_PIPE] = ACTIONS(325), + [anon_sym_EQ_TILDE] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(329), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_LT_LT_DASH] = ACTIONS(325), + [anon_sym_LT_LT_LT] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(329), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(329), + [anon_sym_LF] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(329), + }, + [67] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(340), + [anon_sym_DQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [68] = { + [sym_string] = STATE(342), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(623), + [sym_raw_string] = ACTIONS(625), + [anon_sym_POUND] = ACTIONS(623), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(629), + [anon_sym_AT] = ACTIONS(629), + [anon_sym_QMARK] = ACTIONS(629), + [anon_sym_0] = ACTIONS(627), + [anon_sym__] = ACTIONS(627), + }, + [69] = { + [aux_sym_concatenation_repeat1] = STATE(337), + [sym_file_descriptor] = ACTIONS(353), + [sym__concat] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), + }, + [70] = { + [sym_subscript] = STATE(347), + [sym_variable_name] = ACTIONS(631), + [anon_sym_BANG] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_DOLLAR] = ACTIONS(635), + [anon_sym_POUND] = ACTIONS(633), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(639), + [anon_sym_QMARK] = ACTIONS(639), + [anon_sym_0] = ACTIONS(637), + [anon_sym__] = ACTIONS(637), + }, + [71] = { + [sym__statements] = STATE(348), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [72] = { + [sym__statements] = STATE(349), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [73] = { + [sym__statements] = STATE(350), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [74] = { + [aux_sym_concatenation_repeat1] = STATE(337), + [sym_file_descriptor] = ACTIONS(353), + [sym__concat] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_LPAREN] = ACTIONS(641), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), + }, + [75] = { + [sym_do_group] = STATE(353), + [anon_sym_do] = ACTIONS(643), [sym_comment] = ACTIONS(57), }, - [111] = { - [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), + [76] = { + [sym_file_redirect] = STATE(361), + [sym_heredoc_redirect] = STATE(361), + [sym_herestring_redirect] = STATE(361), + [aux_sym_redirected_statement_repeat1] = STATE(361), + [sym_file_descriptor] = ACTIONS(645), + [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(649), + [anon_sym_SEMI_SEMI] = ACTIONS(651), + [anon_sym_PIPE_AMP] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_AMP_GT] = ACTIONS(657), + [anon_sym_AMP_GT_GT] = ACTIONS(659), + [anon_sym_LT_AMP] = ACTIONS(659), + [anon_sym_GT_AMP] = ACTIONS(659), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), + [anon_sym_LT_LT_LT] = ACTIONS(665), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(651), + [anon_sym_AMP] = ACTIONS(647), + }, + [77] = { + [sym_concatenation] = STATE(365), + [sym_string] = STATE(364), + [sym_simple_expansion] = STATE(364), + [sym_string_expansion] = STATE(364), + [sym_expansion] = STATE(364), + [sym_command_substitution] = STATE(364), + [sym_process_substitution] = STATE(364), + [aux_sym_command_repeat2] = STATE(365), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(415), + [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(667), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(415), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(415), + [anon_sym_LT_AMP] = ACTIONS(415), + [anon_sym_GT_AMP] = ACTIONS(415), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(415), + [anon_sym_LT_LT_LT] = ACTIONS(415), [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), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), [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), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), }, - [112] = { - [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), + [78] = { + [sym_file_redirect] = STATE(361), + [sym_heredoc_redirect] = STATE(361), + [sym_herestring_redirect] = STATE(361), + [aux_sym_redirected_statement_repeat1] = STATE(361), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(649), + [anon_sym_SEMI_SEMI] = ACTIONS(651), + [anon_sym_PIPE_AMP] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), + [anon_sym_LT_LT_LT] = ACTIONS(665), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(651), + [anon_sym_AMP] = ACTIONS(647), }, - [113] = { - [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), + [79] = { + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_PLUS_EQ] = ACTIONS(561), + [sym_comment] = ACTIONS(57), }, - [114] = { - [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), + [80] = { + [sym_file_descriptor] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), + }, + [81] = { + [sym_command_name] = STATE(366), + [sym_variable_assignment] = STATE(238), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(238), + [sym_concatenation] = STATE(80), + [sym_string] = STATE(69), + [sym_simple_expansion] = STATE(69), + [sym_string_expansion] = STATE(69), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_process_substitution] = STATE(69), + [aux_sym_command_repeat1] = STATE(238), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(223), + [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(675), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(131), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(131), + }, + [82] = { + [anon_sym_then] = ACTIONS(677), + [sym_comment] = ACTIONS(57), + }, + [83] = { + [aux_sym_concatenation_repeat1] = STATE(371), + [sym__concat] = ACTIONS(679), + [anon_sym_in] = ACTIONS(681), + [anon_sym_SEMI] = ACTIONS(683), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(685), + [anon_sym_AMP] = ACTIONS(685), + }, + [84] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(374), [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), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), }, - [115] = { - [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), + [85] = { + [sym_string] = STATE(376), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR] = ACTIONS(691), + [sym_raw_string] = ACTIONS(693), + [anon_sym_POUND] = ACTIONS(691), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(695), + [anon_sym__] = ACTIONS(695), }, - [116] = { - [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), + [86] = { + [aux_sym_concatenation_repeat1] = STATE(371), + [sym__concat] = ACTIONS(679), + [anon_sym_in] = ACTIONS(699), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_SEMI_SEMI] = ACTIONS(703), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(141), - }, - [117] = { - [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__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] = { - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_PLUS_EQ] = ACTIONS(667), - [sym_comment] = ACTIONS(57), - }, - [120] = { - [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_LF] = ACTIONS(703), [anon_sym_AMP] = ACTIONS(703), }, - [121] = { - [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), + [87] = { + [sym_subscript] = STATE(383), + [sym_variable_name] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DOLLAR] = ACTIONS(709), + [anon_sym_POUND] = ACTIONS(707), + [sym_comment] = ACTIONS(343), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), - [sym_word] = ACTIONS(711), - [anon_sym_LF] = ACTIONS(707), - [anon_sym_AMP] = 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), }, - [122] = { - [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_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] = { - [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), + [88] = { + [sym__statements] = STATE(384), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(727), + [sym_word] = ACTIONS(173), + }, + [89] = { + [sym__statements] = STATE(385), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [90] = { + [sym__statements] = STATE(386), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [91] = { + [anon_sym_in] = ACTIONS(699), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_SEMI_SEMI] = ACTIONS(703), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + }, + [92] = { + [sym_compound_statement] = STATE(388), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), + }, + [93] = { + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(717), + [anon_sym_PLUS_EQ] = ACTIONS(717), + [sym_comment] = ACTIONS(57), + }, + [94] = { + [sym_subshell] = STATE(140), + [sym_test_command] = STATE(140), + [sym_command] = STATE(140), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(106), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(223), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(171), + }, + [95] = { + [sym_variable_assignment] = STATE(394), + [sym_subscript] = STATE(393), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(392), + [sym_simple_expansion] = STATE(392), + [sym_string_expansion] = STATE(392), + [sym_expansion] = STATE(392), + [sym_command_substitution] = STATE(392), + [sym_process_substitution] = STATE(392), + [aux_sym_declaration_command_repeat1] = STATE(394), + [sym__simple_heredoc_body] = ACTIONS(259), + [sym__heredoc_body_beginning] = ACTIONS(259), + [sym_file_descriptor] = ACTIONS(259), + [sym_variable_name] = ACTIONS(719), + [anon_sym_SEMI] = ACTIONS(263), + [anon_sym_PIPE] = ACTIONS(263), + [anon_sym_RPAREN] = ACTIONS(259), + [anon_sym_SEMI_SEMI] = ACTIONS(259), + [anon_sym_PIPE_AMP] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(259), + [anon_sym_PIPE_PIPE] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(263), + [anon_sym_GT] = ACTIONS(263), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_AMP_GT] = ACTIONS(263), + [anon_sym_AMP_GT_GT] = ACTIONS(259), + [anon_sym_LT_AMP] = ACTIONS(259), + [anon_sym_GT_AMP] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(263), + [anon_sym_LT_LT_DASH] = ACTIONS(259), + [anon_sym_LT_LT_LT] = ACTIONS(259), + [sym__special_characters] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(267), + [anon_sym_DOLLAR] = ACTIONS(269), + [sym_raw_string] = ACTIONS(723), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(273), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(277), + [anon_sym_LT_LPAREN] = ACTIONS(279), + [anon_sym_GT_LPAREN] = ACTIONS(279), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(725), [sym_word] = ACTIONS(727), - [anon_sym_LF] = ACTIONS(725), - [anon_sym_AMP] = ACTIONS(727), + [anon_sym_LF] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(263), }, - [125] = { - [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] = { - [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), + [96] = { + [sym_concatenation] = STATE(397), + [sym_string] = STATE(396), + [sym_simple_expansion] = STATE(396), + [sym_string_expansion] = STATE(396), + [sym_expansion] = STATE(396), + [sym_command_substitution] = STATE(396), + [sym_process_substitution] = STATE(396), + [aux_sym_unset_command_repeat1] = STATE(397), + [sym__simple_heredoc_body] = ACTIONS(285), + [sym__heredoc_body_beginning] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_RPAREN] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(287), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(287), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [sym__special_characters] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(299), + [anon_sym_BQUOTE] = ACTIONS(301), + [anon_sym_LT_LPAREN] = ACTIONS(303), + [anon_sym_GT_LPAREN] = ACTIONS(303), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(141), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), + [sym_word] = ACTIONS(735), + [anon_sym_LF] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(287), }, - [127] = { - [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), + [97] = { + [aux_sym_concatenation_repeat1] = STATE(398), + [sym__simple_heredoc_body] = ACTIONS(325), + [sym__heredoc_body_beginning] = ACTIONS(325), + [sym_file_descriptor] = ACTIONS(325), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_RPAREN] = ACTIONS(325), + [anon_sym_SEMI_SEMI] = ACTIONS(325), + [anon_sym_PIPE_AMP] = ACTIONS(325), + [anon_sym_AMP_AMP] = ACTIONS(325), + [anon_sym_PIPE_PIPE] = ACTIONS(325), + [anon_sym_EQ_TILDE] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(329), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_LT_LT_DASH] = ACTIONS(325), + [anon_sym_LT_LT_LT] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(329), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(109), + [sym_word] = ACTIONS(329), + [anon_sym_LF] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(329), }, - [128] = { - [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), + [98] = { + [aux_sym_concatenation_repeat1] = STATE(398), + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_RPAREN] = ACTIONS(353), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(141), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), }, - [129] = { - [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), + [99] = { + [aux_sym_concatenation_repeat1] = STATE(398), + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_RPAREN] = ACTIONS(353), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), + }, + [100] = { + [anon_sym_RPAREN] = ACTIONS(737), + [sym_comment] = ACTIONS(57), + }, + [101] = { + [sym_file_redirect] = STATE(405), + [sym_heredoc_redirect] = STATE(405), + [sym_heredoc_body] = STATE(228), + [sym_herestring_redirect] = STATE(405), + [aux_sym_redirected_statement_repeat1] = STATE(405), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), [sym_file_descriptor] = ACTIONS(739), - [ts_builtin_sym_end] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(395), [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), + [anon_sym_RPAREN] = ACTIONS(393), + [anon_sym_SEMI_SEMI] = ACTIONS(399), + [anon_sym_PIPE_AMP] = ACTIONS(743), + [anon_sym_AMP_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(745), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_GT] = ACTIONS(749), + [anon_sym_AMP_GT] = ACTIONS(747), + [anon_sym_AMP_GT_GT] = ACTIONS(749), + [anon_sym_LT_AMP] = ACTIONS(749), + [anon_sym_GT_AMP] = ACTIONS(749), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(751), [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), + [anon_sym_LF] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(395), }, - [130] = { - [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_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_string] = STATE(422), - [anon_sym_DASH] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_DOLLAR] = ACTIONS(755), + [102] = { + [sym_concatenation] = STATE(409), + [sym_string] = STATE(408), + [sym_simple_expansion] = STATE(408), + [sym_string_expansion] = STATE(408), + [sym_expansion] = STATE(408), + [sym_command_substitution] = STATE(408), + [sym_process_substitution] = STATE(408), + [aux_sym_command_repeat2] = STATE(409), + [sym__simple_heredoc_body] = ACTIONS(415), + [sym__heredoc_body_beginning] = ACTIONS(415), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_RPAREN] = ACTIONS(415), + [anon_sym_SEMI_SEMI] = ACTIONS(415), + [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(415), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(415), + [anon_sym_LT_AMP] = ACTIONS(415), + [anon_sym_GT_AMP] = ACTIONS(415), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(415), + [anon_sym_LT_LT_LT] = ACTIONS(415), + [sym__special_characters] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), [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] = { - [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), + [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(763), + [sym_word] = ACTIONS(759), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), }, - [134] = { - [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), + [103] = { + [sym_file_redirect] = STATE(405), + [sym_heredoc_redirect] = STATE(405), + [sym_heredoc_body] = STATE(228), + [sym_herestring_redirect] = STATE(405), + [aux_sym_redirected_statement_repeat1] = STATE(405), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(393), + [anon_sym_SEMI_SEMI] = ACTIONS(399), + [anon_sym_PIPE_AMP] = ACTIONS(743), + [anon_sym_AMP_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(745), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(751), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(395), }, - [135] = { - [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), + [104] = { + [anon_sym_EQ] = ACTIONS(717), + [anon_sym_PLUS_EQ] = ACTIONS(717), + [sym_comment] = ACTIONS(57), + }, + [105] = { + [sym_redirected_statement] = STATE(410), + [sym_for_statement] = STATE(410), + [sym_c_style_for_statement] = STATE(410), + [sym_while_statement] = STATE(410), + [sym_if_statement] = STATE(410), + [sym_case_statement] = STATE(410), + [sym_function_definition] = STATE(410), + [sym_compound_statement] = STATE(410), + [sym_subshell] = STATE(410), + [sym_pipeline] = STATE(410), + [sym_list] = STATE(410), + [sym_negated_command] = STATE(410), + [sym_test_command] = STATE(410), + [sym_declaration_command] = STATE(410), + [sym_unset_command] = STATE(410), + [sym_command] = STATE(410), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(411), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(236), + [aux_sym_command_repeat1] = STATE(106), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(129), + [sym_variable_name] = ACTIONS(161), [anon_sym_for] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_while] = ACTIONS(15), @@ -12667,16 +14920,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(163), [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_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -12684,69 +14937,141 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(39), [anon_sym_LT_AMP] = ACTIONS(39), [anon_sym_GT_AMP] = ACTIONS(39), - [sym__special_characters] = ACTIONS(137), + [sym__special_characters] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(139), + [sym_raw_string] = ACTIONS(171), [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), + [sym_word] = ACTIONS(173), }, - [136] = { - [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), + [106] = { + [sym_command_name] = STATE(412), + [sym_variable_assignment] = STATE(238), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(238), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym_command_repeat1] = STATE(238), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(223), + [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(761), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(171), + }, + [107] = { + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_PLUS_EQ] = ACTIONS(763), + [sym_comment] = ACTIONS(57), + }, + [108] = { + [anon_sym_LPAREN_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(767), + }, + [109] = { + [sym__expression] = STATE(416), + [sym_binary_expression] = STATE(416), + [sym_unary_expression] = STATE(416), + [sym_postfix_expression] = STATE(416), + [sym_parenthesized_expression] = STATE(416), + [sym_concatenation] = STATE(416), + [sym_string] = STATE(46), + [sym_simple_expansion] = STATE(46), + [sym_string_expansion] = STATE(46), + [sym_expansion] = STATE(46), + [sym_command_substitution] = STATE(46), + [sym_process_substitution] = STATE(46), + [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), + }, + [110] = { + [sym__terminated_statement] = STATE(417), + [sym_redirected_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_c_style_for_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_function_definition] = STATE(76), + [sym_compound_statement] = STATE(76), + [sym_subshell] = STATE(76), + [sym_pipeline] = STATE(76), + [sym_list] = STATE(76), + [sym_negated_command] = STATE(76), + [sym_test_command] = STATE(76), + [sym_declaration_command] = STATE(76), + [sym_unset_command] = STATE(76), + [sym_command] = STATE(76), + [sym_command_name] = STATE(77), + [sym_variable_assignment] = STATE(78), + [sym_subscript] = STATE(79), + [sym_file_redirect] = STATE(81), + [sym_concatenation] = STATE(80), + [sym_string] = STATE(69), + [sym_simple_expansion] = STATE(69), + [sym_string_expansion] = STATE(69), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_process_substitution] = STATE(69), + [aux_sym_command_repeat1] = STATE(81), [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_for] = ACTIONS(99), + [anon_sym_LPAREN_LPAREN] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_case] = ACTIONS(107), + [anon_sym_function] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(119), + [anon_sym_declare] = ACTIONS(121), + [anon_sym_typeset] = ACTIONS(121), + [anon_sym_export] = ACTIONS(121), + [anon_sym_readonly] = ACTIONS(121), + [anon_sym_local] = ACTIONS(121), + [anon_sym_unset] = ACTIONS(123), + [anon_sym_unsetenv] = ACTIONS(123), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -12754,1012 +15079,626 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__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__special_characters] = ACTIONS(125), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(131), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), [sym_comment] = ACTIONS(57), [sym_word] = ACTIONS(141), }, - [138] = { - [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), + [111] = { + [sym__terminated_statement] = STATE(418), + [sym_redirected_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_c_style_for_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_function_definition] = STATE(76), + [sym_compound_statement] = STATE(76), + [sym_subshell] = STATE(76), + [sym_pipeline] = STATE(76), + [sym_list] = STATE(76), + [sym_negated_command] = STATE(76), + [sym_test_command] = STATE(76), + [sym_declaration_command] = STATE(76), + [sym_unset_command] = STATE(76), + [sym_command] = STATE(76), + [sym_command_name] = STATE(77), + [sym_variable_assignment] = STATE(78), + [sym_subscript] = STATE(79), + [sym_file_redirect] = STATE(81), + [sym_concatenation] = STATE(80), + [sym_string] = STATE(69), + [sym_simple_expansion] = STATE(69), + [sym_string_expansion] = STATE(69), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_process_substitution] = STATE(69), + [aux_sym_command_repeat1] = STATE(81), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [anon_sym_LPAREN_LPAREN] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_case] = ACTIONS(107), + [anon_sym_function] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(119), + [anon_sym_declare] = ACTIONS(121), + [anon_sym_typeset] = ACTIONS(121), + [anon_sym_export] = ACTIONS(121), + [anon_sym_readonly] = ACTIONS(121), + [anon_sym_local] = ACTIONS(121), + [anon_sym_unset] = ACTIONS(123), + [anon_sym_unsetenv] = ACTIONS(123), + [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(125), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(131), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(763), + [sym_word] = ACTIONS(141), }, - [139] = { - [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), + [112] = { + [sym_concatenation] = STATE(421), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [sym__special_characters] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR] = ACTIONS(147), + [sym_raw_string] = ACTIONS(771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(151), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(155), + [anon_sym_LT_LPAREN] = ACTIONS(157), + [anon_sym_GT_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(771), + }, + [113] = { + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(773), + }, + [114] = { + [sym__statements] = STATE(423), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(777), + [sym_raw_string] = ACTIONS(171), [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), + [sym_word] = ACTIONS(173), }, - [140] = { - [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), + [115] = { + [sym__statements] = STATE(425), + [sym_redirected_statement] = STATE(132), + [sym_for_statement] = STATE(132), + [sym_c_style_for_statement] = STATE(132), + [sym_while_statement] = STATE(132), + [sym_if_statement] = STATE(132), + [sym_case_statement] = STATE(132), + [sym_function_definition] = STATE(132), + [sym_compound_statement] = STATE(132), + [sym_subshell] = STATE(132), + [sym_pipeline] = STATE(132), + [sym_list] = STATE(132), + [sym_negated_command] = STATE(132), + [sym_test_command] = STATE(132), + [sym_declaration_command] = STATE(132), + [sym_unset_command] = STATE(132), + [sym_command] = STATE(132), + [sym_command_name] = STATE(133), + [sym_variable_assignment] = STATE(134), + [sym_subscript] = STATE(135), + [sym_file_redirect] = STATE(138), + [sym_concatenation] = STATE(136), + [sym_string] = STATE(125), + [sym_simple_expansion] = STATE(125), + [sym_string_expansion] = STATE(125), + [sym_expansion] = STATE(125), + [sym_command_substitution] = STATE(125), + [sym_process_substitution] = STATE(125), + [aux_sym__statements_repeat1] = STATE(137), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(175), + [anon_sym_for] = ACTIONS(177), + [anon_sym_LPAREN_LPAREN] = ACTIONS(179), + [anon_sym_while] = ACTIONS(181), + [anon_sym_if] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_function] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(191), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(199), + [anon_sym_declare] = ACTIONS(201), + [anon_sym_typeset] = ACTIONS(201), + [anon_sym_export] = ACTIONS(201), + [anon_sym_readonly] = ACTIONS(201), + [anon_sym_local] = ACTIONS(201), + [anon_sym_unset] = ACTIONS(203), + [anon_sym_unsetenv] = ACTIONS(203), + [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(205), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(209), + [sym_raw_string] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(781), - [anon_sym_LF] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), + [sym_word] = ACTIONS(221), }, - [141] = { - [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), + [116] = { + [sym__simple_heredoc_body] = ACTIONS(777), + [sym__heredoc_body_beginning] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(777), + [ts_builtin_sym_end] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(779), + [anon_sym_done] = ACTIONS(777), + [anon_sym_fi] = ACTIONS(777), + [anon_sym_elif] = ACTIONS(777), + [anon_sym_else] = ACTIONS(777), + [anon_sym_esac] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(777), + [anon_sym_SEMI_SEMI] = ACTIONS(777), + [anon_sym_PIPE_AMP] = ACTIONS(777), + [anon_sym_AMP_AMP] = ACTIONS(777), + [anon_sym_PIPE_PIPE] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(779), + [anon_sym_GT] = ACTIONS(779), + [anon_sym_GT_GT] = ACTIONS(777), + [anon_sym_AMP_GT] = ACTIONS(779), + [anon_sym_AMP_GT_GT] = ACTIONS(777), + [anon_sym_LT_AMP] = ACTIONS(777), + [anon_sym_GT_AMP] = ACTIONS(777), + [anon_sym_LT_LT] = ACTIONS(779), + [anon_sym_LT_LT_DASH] = ACTIONS(777), + [anon_sym_LT_LT_LT] = ACTIONS(777), + [anon_sym_BQUOTE] = ACTIONS(777), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(777), + [anon_sym_AMP] = ACTIONS(779), + }, + [117] = { + [sym_subshell] = STATE(426), + [sym_test_command] = STATE(426), + [sym_command] = STATE(426), + [sym_command_name] = STATE(133), + [sym_variable_assignment] = STATE(138), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(138), + [sym_concatenation] = STATE(136), + [sym_string] = STATE(125), + [sym_simple_expansion] = STATE(125), + [sym_string_expansion] = STATE(125), + [sym_expansion] = STATE(125), + [sym_command_substitution] = STATE(125), + [sym_process_substitution] = STATE(125), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(223), + [anon_sym_LPAREN_LPAREN] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(199), + [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(205), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(209), + [sym_raw_string] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(211), + }, + [118] = { + [sym__expression] = STATE(427), + [sym_binary_expression] = STATE(427), + [sym_unary_expression] = STATE(427), + [sym_postfix_expression] = STATE(427), + [sym_parenthesized_expression] = STATE(427), + [sym_concatenation] = STATE(427), + [sym_string] = STATE(147), + [sym_simple_expansion] = STATE(147), + [sym_string_expansion] = STATE(147), + [sym_expansion] = STATE(147), + [sym_command_substitution] = STATE(147), + [sym_process_substitution] = STATE(147), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_BANG] = ACTIONS(227), + [sym__special_characters] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [sym_raw_string] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_LT_LPAREN] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(245), + [sym_test_operator] = ACTIONS(247), + }, + [119] = { + [sym__expression] = STATE(428), + [sym_binary_expression] = STATE(428), + [sym_unary_expression] = STATE(428), + [sym_postfix_expression] = STATE(428), + [sym_parenthesized_expression] = STATE(428), + [sym_concatenation] = STATE(428), + [sym_string] = STATE(155), + [sym_simple_expansion] = STATE(155), + [sym_string_expansion] = STATE(155), + [sym_expansion] = STATE(155), + [sym_command_substitution] = STATE(155), + [sym_process_substitution] = STATE(155), + [anon_sym_LPAREN] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(249), + [sym__special_characters] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [sym_raw_string] = ACTIONS(253), + [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(255), + [sym_test_operator] = ACTIONS(257), + }, + [120] = { + [sym_variable_assignment] = STATE(439), + [sym_subscript] = STATE(438), + [sym_concatenation] = STATE(439), + [sym_string] = STATE(433), + [sym_simple_expansion] = STATE(433), + [sym_string_expansion] = STATE(433), + [sym_expansion] = STATE(433), + [sym_command_substitution] = STATE(433), + [sym_process_substitution] = STATE(433), + [aux_sym_declaration_command_repeat1] = STATE(439), + [sym__simple_heredoc_body] = ACTIONS(259), + [sym__heredoc_body_beginning] = ACTIONS(259), + [sym_file_descriptor] = ACTIONS(259), + [sym_variable_name] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(263), + [anon_sym_PIPE] = ACTIONS(263), + [anon_sym_SEMI_SEMI] = ACTIONS(259), + [anon_sym_RBRACE] = ACTIONS(259), + [anon_sym_PIPE_AMP] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(259), + [anon_sym_PIPE_PIPE] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(263), + [anon_sym_GT] = ACTIONS(263), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_AMP_GT] = ACTIONS(263), + [anon_sym_AMP_GT_GT] = ACTIONS(259), + [anon_sym_LT_AMP] = ACTIONS(259), + [anon_sym_GT_AMP] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(263), + [anon_sym_LT_LT_DASH] = ACTIONS(259), + [anon_sym_LT_LT_LT] = ACTIONS(259), [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), + [anon_sym_DQUOTE] = ACTIONS(785), + [anon_sym_DOLLAR] = ACTIONS(787), + [sym_raw_string] = ACTIONS(789), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(791), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(793), + [anon_sym_BQUOTE] = ACTIONS(795), + [anon_sym_LT_LPAREN] = ACTIONS(797), + [anon_sym_GT_LPAREN] = ACTIONS(797), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(785), - [anon_sym_LF] = ACTIONS(783), - [anon_sym_AMP] = ACTIONS(785), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(799), + [sym_word] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(263), }, - [142] = { - [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__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_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] = { - [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__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] = { - [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__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), + [121] = { + [sym_concatenation] = STATE(448), + [sym_string] = STATE(443), + [sym_simple_expansion] = STATE(443), + [sym_string_expansion] = STATE(443), + [sym_expansion] = STATE(443), + [sym_command_substitution] = STATE(443), + [sym_process_substitution] = STATE(443), + [aux_sym_unset_command_repeat1] = STATE(448), + [sym__simple_heredoc_body] = ACTIONS(285), + [sym__heredoc_body_beginning] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_RBRACE] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(287), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(287), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [sym__special_characters] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(805), + [anon_sym_DOLLAR] = ACTIONS(807), + [sym_raw_string] = ACTIONS(809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(815), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(819), + [sym_word] = ACTIONS(821), + [anon_sym_LF] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(287), }, - [149] = { - [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__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] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(831), - [sym_comment] = ACTIONS(57), - }, - [152] = { - [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_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(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_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_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] = { - [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__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_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_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] = { - [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_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), + [122] = { + [aux_sym_concatenation_repeat1] = STATE(450), + [sym__simple_heredoc_body] = ACTIONS(325), + [sym__heredoc_body_beginning] = ACTIONS(325), + [sym_file_descriptor] = ACTIONS(325), + [sym__concat] = ACTIONS(823), [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_SEMI_SEMI] = ACTIONS(325), + [anon_sym_RBRACE] = ACTIONS(325), + [anon_sym_PIPE_AMP] = ACTIONS(325), + [anon_sym_AMP_AMP] = ACTIONS(325), + [anon_sym_PIPE_PIPE] = ACTIONS(325), + [anon_sym_EQ_TILDE] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), [anon_sym_LT] = ACTIONS(329), [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), [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_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), [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), + [anon_sym_LT_LT_DASH] = ACTIONS(325), + [anon_sym_LT_LT_LT] = ACTIONS(325), + [sym__special_characters] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(329), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(519), - [anon_sym_LF] = ACTIONS(327), + [sym_word] = ACTIONS(329), + [anon_sym_LF] = ACTIONS(325), [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), + [123] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(453), + [anon_sym_DQUOTE] = ACTIONS(825), + [anon_sym_DOLLAR] = ACTIONS(827), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), [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), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), }, - [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), + [124] = { + [sym_string] = STATE(455), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(829), + [sym_raw_string] = ACTIONS(831), + [anon_sym_POUND] = ACTIONS(829), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(833), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_AT] = ACTIONS(835), + [anon_sym_QMARK] = ACTIONS(835), + [anon_sym_0] = ACTIONS(833), + [anon_sym__] = ACTIONS(833), + }, + [125] = { + [aux_sym_concatenation_repeat1] = STATE(450), + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [sym__concat] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), + }, + [126] = { + [sym_subscript] = STATE(460), + [sym_variable_name] = ACTIONS(837), + [anon_sym_BANG] = ACTIONS(839), + [anon_sym_DASH] = ACTIONS(841), + [anon_sym_DOLLAR] = ACTIONS(841), + [anon_sym_POUND] = ACTIONS(839), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(843), + [anon_sym_STAR] = ACTIONS(845), + [anon_sym_AT] = ACTIONS(845), + [anon_sym_QMARK] = ACTIONS(845), + [anon_sym_0] = ACTIONS(843), + [anon_sym__] = ACTIONS(843), + }, + [127] = { + [sym__statements] = STATE(461), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(97), + [sym_variable_name] = ACTIONS(161), [anon_sym_for] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_while] = ACTIONS(15), @@ -13768,16 +15707,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(289), + [anon_sym_BANG] = ACTIONS(163), [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_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -13785,156 +15724,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(39), [anon_sym_LT_AMP] = ACTIONS(39), [anon_sym_GT_AMP] = ACTIONS(39), - [sym__special_characters] = ACTIONS(105), + [sym__special_characters] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(107), + [sym_raw_string] = ACTIONS(171), [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), + [sym_word] = ACTIONS(173), }, - [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), + [128] = { + [sym__statements] = STATE(462), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), [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(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(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), - }, - [167] = { - [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__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), + [sym_variable_name] = ACTIONS(367), [anon_sym_for] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_while] = ACTIONS(15), @@ -13943,16 +15777,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(369), [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_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -13960,292 +15794,987 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(39), [anon_sym_LT_AMP] = ACTIONS(39), [anon_sym_GT_AMP] = ACTIONS(39), - [sym__special_characters] = ACTIONS(137), + [sym__special_characters] = ACTIONS(375), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(139), + [sym_raw_string] = ACTIONS(377), [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), + [sym_word] = ACTIONS(379), }, - [169] = { - [anon_sym_RPAREN] = ACTIONS(909), + [129] = { + [sym__statements] = STATE(463), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [130] = { + [aux_sym_concatenation_repeat1] = STATE(450), + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [sym__concat] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_RBRACE] = ACTIONS(353), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), + }, + [131] = { + [anon_sym_RBRACE] = ACTIONS(849), [sym_comment] = ACTIONS(57), }, - [170] = { - [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), + [132] = { + [sym_file_redirect] = STATE(476), + [sym_heredoc_redirect] = STATE(476), + [sym_heredoc_body] = STATE(475), + [sym_herestring_redirect] = STATE(476), + [aux_sym_redirected_statement_repeat1] = STATE(476), + [sym__simple_heredoc_body] = ACTIONS(851), + [sym__heredoc_body_beginning] = ACTIONS(853), + [sym_file_descriptor] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_SEMI_SEMI] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_PIPE_AMP] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(867), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_GT_GT] = ACTIONS(869), + [anon_sym_AMP_GT] = ACTIONS(867), + [anon_sym_AMP_GT_GT] = ACTIONS(869), + [anon_sym_LT_AMP] = ACTIONS(869), + [anon_sym_GT_AMP] = ACTIONS(869), + [anon_sym_LT_LT] = ACTIONS(871), + [anon_sym_LT_LT_DASH] = ACTIONS(873), + [anon_sym_LT_LT_LT] = ACTIONS(875), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_LF] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(857), }, - [171] = { - [sym_simple_expansion] = STATE(505), - [sym_expansion] = STATE(505), - [sym_command_substitution] = STATE(505), - [aux_sym_heredoc_body_repeat1] = STATE(505), - [sym__heredoc_body_middle] = ACTIONS(915), - [sym__heredoc_body_end] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(921), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(923), - [anon_sym_BQUOTE] = ACTIONS(925), + [133] = { + [sym_concatenation] = STATE(480), + [sym_string] = STATE(479), + [sym_simple_expansion] = STATE(479), + [sym_string_expansion] = STATE(479), + [sym_expansion] = STATE(479), + [sym_command_substitution] = STATE(479), + [sym_process_substitution] = STATE(479), + [aux_sym_command_repeat2] = STATE(480), + [sym__simple_heredoc_body] = ACTIONS(415), + [sym__heredoc_body_beginning] = ACTIONS(415), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(415), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(415), + [anon_sym_LT_AMP] = ACTIONS(415), + [anon_sym_GT_AMP] = ACTIONS(415), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(415), + [anon_sym_LT_LT_LT] = ACTIONS(415), + [sym__special_characters] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(209), + [sym_raw_string] = ACTIONS(881), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(883), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), + }, + [134] = { + [sym_file_redirect] = STATE(476), + [sym_heredoc_redirect] = STATE(476), + [sym_heredoc_body] = STATE(475), + [sym_herestring_redirect] = STATE(476), + [aux_sym_redirected_statement_repeat1] = STATE(476), + [sym__simple_heredoc_body] = ACTIONS(851), + [sym__heredoc_body_beginning] = ACTIONS(853), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_SEMI_SEMI] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_PIPE_AMP] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(871), + [anon_sym_LT_LT_DASH] = ACTIONS(873), + [anon_sym_LT_LT_LT] = ACTIONS(875), + [sym__special_characters] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(857), + }, + [135] = { + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_PLUS_EQ] = ACTIONS(763), [sym_comment] = ACTIONS(57), }, - [172] = { - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AMP_GT] = ACTIONS(927), - [anon_sym_AMP_GT_GT] = ACTIONS(929), - [anon_sym_LT_AMP] = ACTIONS(929), - [anon_sym_GT_AMP] = ACTIONS(929), + [136] = { + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(353), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), + }, + [137] = { + [sym_redirected_statement] = STATE(481), + [sym_for_statement] = STATE(481), + [sym_c_style_for_statement] = STATE(481), + [sym_while_statement] = STATE(481), + [sym_if_statement] = STATE(481), + [sym_case_statement] = STATE(481), + [sym_function_definition] = STATE(481), + [sym_compound_statement] = STATE(481), + [sym_subshell] = STATE(481), + [sym_pipeline] = STATE(481), + [sym_list] = STATE(481), + [sym_negated_command] = STATE(481), + [sym_test_command] = STATE(481), + [sym_declaration_command] = STATE(481), + [sym_unset_command] = STATE(481), + [sym_command] = STATE(481), + [sym_command_name] = STATE(133), + [sym_variable_assignment] = STATE(482), + [sym_subscript] = STATE(135), + [sym_file_redirect] = STATE(138), + [sym_concatenation] = STATE(136), + [sym_string] = STATE(125), + [sym_simple_expansion] = STATE(125), + [sym_string_expansion] = STATE(125), + [sym_expansion] = STATE(125), + [sym_command_substitution] = STATE(125), + [sym_process_substitution] = STATE(125), + [aux_sym__statements_repeat1] = STATE(236), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(175), + [anon_sym_for] = ACTIONS(177), + [anon_sym_LPAREN_LPAREN] = ACTIONS(179), + [anon_sym_while] = ACTIONS(181), + [anon_sym_if] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_function] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(199), + [anon_sym_declare] = ACTIONS(201), + [anon_sym_typeset] = ACTIONS(201), + [anon_sym_export] = ACTIONS(201), + [anon_sym_readonly] = ACTIONS(201), + [anon_sym_local] = ACTIONS(201), + [anon_sym_unset] = ACTIONS(203), + [anon_sym_unsetenv] = ACTIONS(203), + [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(205), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(209), + [sym_raw_string] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(221), + }, + [138] = { + [sym_command_name] = STATE(483), + [sym_variable_assignment] = STATE(238), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(238), + [sym_concatenation] = STATE(136), + [sym_string] = STATE(125), + [sym_simple_expansion] = STATE(125), + [sym_string_expansion] = STATE(125), + [sym_expansion] = STATE(125), + [sym_command_substitution] = STATE(125), + [sym_process_substitution] = STATE(125), + [aux_sym_command_repeat1] = STATE(238), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(223), + [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(885), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(209), + [sym_raw_string] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(211), + }, + [139] = { + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(887), + [anon_sym_PLUS_EQ] = ACTIONS(887), [sym_comment] = ACTIONS(57), }, - [173] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), + [140] = { + [sym__simple_heredoc_body] = ACTIONS(889), + [sym__heredoc_body_beginning] = ACTIONS(889), + [sym_file_descriptor] = ACTIONS(889), + [ts_builtin_sym_end] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_done] = ACTIONS(889), + [anon_sym_fi] = ACTIONS(889), + [anon_sym_elif] = ACTIONS(889), + [anon_sym_else] = ACTIONS(889), + [anon_sym_esac] = ACTIONS(889), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(889), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(889), + [anon_sym_PIPE_PIPE] = ACTIONS(889), + [anon_sym_LT] = ACTIONS(891), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_GT_GT] = ACTIONS(889), + [anon_sym_AMP_GT] = ACTIONS(891), + [anon_sym_AMP_GT_GT] = ACTIONS(889), + [anon_sym_LT_AMP] = ACTIONS(889), + [anon_sym_GT_AMP] = ACTIONS(889), + [anon_sym_LT_LT] = ACTIONS(891), + [anon_sym_LT_LT_DASH] = ACTIONS(889), + [anon_sym_LT_LT_LT] = ACTIONS(889), + [anon_sym_BQUOTE] = ACTIONS(889), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + }, + [141] = { + [anon_sym_EQ] = ACTIONS(887), + [anon_sym_PLUS_EQ] = ACTIONS(887), + [sym_comment] = ACTIONS(57), + }, + [142] = { + [sym__expression] = STATE(485), + [sym_binary_expression] = STATE(485), + [sym_unary_expression] = STATE(485), + [sym_postfix_expression] = STATE(485), + [sym_parenthesized_expression] = STATE(485), + [sym_concatenation] = STATE(485), + [sym_string] = STATE(274), + [sym_simple_expansion] = STATE(274), + [sym_string_expansion] = STATE(274), + [sym_expansion] = STATE(274), + [sym_command_substitution] = STATE(274), + [sym_process_substitution] = STATE(274), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(497), + [sym__special_characters] = ACTIONS(499), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), + }, + [143] = { + [sym__expression] = STATE(486), + [sym_binary_expression] = STATE(486), + [sym_unary_expression] = STATE(486), + [sym_postfix_expression] = STATE(486), + [sym_parenthesized_expression] = STATE(486), + [sym_concatenation] = STATE(486), + [sym_string] = STATE(147), + [sym_simple_expansion] = STATE(147), + [sym_string_expansion] = STATE(147), + [sym_expansion] = STATE(147), + [sym_command_substitution] = STATE(147), + [sym_process_substitution] = STATE(147), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_BANG] = ACTIONS(227), + [sym__special_characters] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [sym_raw_string] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_LT_LPAREN] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(245), + [sym_test_operator] = ACTIONS(247), + }, + [144] = { + [aux_sym_concatenation_repeat1] = STATE(488), + [sym__concat] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(521), + [anon_sym_PIPE_PIPE] = ACTIONS(521), + [anon_sym_RBRACK] = ACTIONS(521), + [anon_sym_EQ_TILDE] = ACTIONS(521), + [anon_sym_EQ_EQ] = ACTIONS(521), + [anon_sym_EQ] = ACTIONS(523), + [anon_sym_PLUS_EQ] = ACTIONS(521), + [anon_sym_LT] = ACTIONS(523), + [anon_sym_GT] = ACTIONS(523), + [anon_sym_BANG_EQ] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DASH] = ACTIONS(523), + [anon_sym_DASH_EQ] = ACTIONS(521), + [anon_sym_LT_EQ] = ACTIONS(521), + [anon_sym_GT_EQ] = ACTIONS(521), + [anon_sym_PLUS_PLUS] = ACTIONS(521), + [anon_sym_DASH_DASH] = ACTIONS(521), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(521), + }, + [145] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(491), + [anon_sym_DQUOTE] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(897), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [146] = { + [sym_string] = STATE(493), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(899), + [sym_raw_string] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(899), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_AT] = ACTIONS(905), + [anon_sym_QMARK] = ACTIONS(905), + [anon_sym_0] = ACTIONS(903), + [anon_sym__] = ACTIONS(903), + }, + [147] = { + [aux_sym_concatenation_repeat1] = STATE(488), + [sym__concat] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(537), + [anon_sym_PIPE_PIPE] = ACTIONS(537), + [anon_sym_RBRACK] = ACTIONS(537), + [anon_sym_EQ_TILDE] = ACTIONS(537), + [anon_sym_EQ_EQ] = ACTIONS(537), + [anon_sym_EQ] = ACTIONS(539), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_LT] = ACTIONS(539), + [anon_sym_GT] = ACTIONS(539), + [anon_sym_BANG_EQ] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(539), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_EQ] = ACTIONS(537), + [anon_sym_GT_EQ] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(537), + }, + [148] = { + [sym_subscript] = STATE(498), + [sym_variable_name] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(909), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_AT] = ACTIONS(915), + [anon_sym_QMARK] = ACTIONS(915), + [anon_sym_0] = ACTIONS(913), + [anon_sym__] = ACTIONS(913), + }, + [149] = { + [sym__statements] = STATE(499), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [150] = { + [sym__statements] = STATE(500), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [151] = { + [sym__statements] = STATE(501), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [152] = { + [anon_sym_AMP_AMP] = ACTIONS(917), + [anon_sym_PIPE_PIPE] = ACTIONS(917), + [anon_sym_RBRACK] = ACTIONS(551), + [anon_sym_EQ_TILDE] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(921), + [anon_sym_GT] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(917), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(923), + [anon_sym_DASH_DASH] = ACTIONS(923), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(917), + }, + [153] = { + [sym__expression] = STATE(505), + [sym_binary_expression] = STATE(505), + [sym_unary_expression] = STATE(505), + [sym_postfix_expression] = STATE(505), + [sym_parenthesized_expression] = STATE(505), + [sym_concatenation] = STATE(505), + [sym_string] = STATE(155), + [sym_simple_expansion] = STATE(155), + [sym_string_expansion] = STATE(155), + [sym_expansion] = STATE(155), + [sym_command_substitution] = STATE(155), + [sym_process_substitution] = STATE(155), + [anon_sym_LPAREN] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(249), + [sym__special_characters] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [sym_raw_string] = ACTIONS(253), + [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(255), + [sym_test_operator] = ACTIONS(257), + }, + [154] = { + [aux_sym_concatenation_repeat1] = STATE(506), + [sym__concat] = ACTIONS(519), + [anon_sym_AMP_AMP] = ACTIONS(521), + [anon_sym_PIPE_PIPE] = ACTIONS(521), + [anon_sym_RBRACK_RBRACK] = ACTIONS(521), + [anon_sym_EQ_TILDE] = ACTIONS(521), + [anon_sym_EQ_EQ] = ACTIONS(521), + [anon_sym_EQ] = ACTIONS(523), + [anon_sym_PLUS_EQ] = ACTIONS(521), + [anon_sym_LT] = ACTIONS(523), + [anon_sym_GT] = ACTIONS(523), + [anon_sym_BANG_EQ] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DASH] = ACTIONS(523), + [anon_sym_DASH_EQ] = ACTIONS(521), + [anon_sym_LT_EQ] = ACTIONS(521), + [anon_sym_GT_EQ] = ACTIONS(521), + [anon_sym_PLUS_PLUS] = ACTIONS(521), + [anon_sym_DASH_DASH] = ACTIONS(521), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(521), + }, + [155] = { + [aux_sym_concatenation_repeat1] = STATE(506), + [sym__concat] = ACTIONS(519), + [anon_sym_AMP_AMP] = ACTIONS(537), + [anon_sym_PIPE_PIPE] = ACTIONS(537), + [anon_sym_RBRACK_RBRACK] = ACTIONS(537), + [anon_sym_EQ_TILDE] = ACTIONS(537), + [anon_sym_EQ_EQ] = ACTIONS(537), + [anon_sym_EQ] = ACTIONS(539), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_LT] = ACTIONS(539), + [anon_sym_GT] = ACTIONS(539), + [anon_sym_BANG_EQ] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(539), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_EQ] = ACTIONS(537), + [anon_sym_GT_EQ] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(537), + }, + [156] = { + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_RBRACK_RBRACK] = ACTIONS(551), + [anon_sym_EQ_TILDE] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_DASH_EQ] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(925), + }, + [157] = { + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [sym_comment] = ACTIONS(57), + }, + [158] = { + [aux_sym_concatenation_repeat1] = STATE(511), + [sym__simple_heredoc_body] = ACTIONS(933), + [sym__heredoc_body_beginning] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [sym_variable_name] = ACTIONS(933), [ts_builtin_sym_end] = ACTIONS(933), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(937), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(937), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(937), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [sym__special_characters] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(937), + [sym_raw_string] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(937), + [sym_word] = ACTIONS(937), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(937), }, - [174] = { - [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(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), + [159] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(514), + [anon_sym_DQUOTE] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), }, - [175] = { - [sym_redirected_statement] = STATE(509), - [sym_for_statement] = STATE(509), - [sym_c_style_for_statement] = STATE(509), - [sym_while_statement] = STATE(509), - [sym_if_statement] = STATE(509), - [sym_case_statement] = STATE(509), - [sym_function_definition] = STATE(509), - [sym_compound_statement] = STATE(509), - [sym_subshell] = STATE(509), - [sym_pipeline] = STATE(509), - [sym_list] = STATE(509), - [sym_negated_command] = STATE(509), - [sym_test_command] = STATE(509), - [sym_declaration_command] = STATE(509), - [sym_unset_command] = STATE(509), - [sym_command] = STATE(509), - [sym_command_name] = STATE(29), - [sym_variable_assignment] = STATE(510), - [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), - }, - [176] = { - [sym_concatenation] = STATE(513), - [sym_string] = STATE(512), - [sym_simple_expansion] = STATE(512), - [sym_string_expansion] = STATE(512), - [sym_expansion] = STATE(512), - [sym_command_substitution] = STATE(512), - [sym_process_substitution] = STATE(512), - [sym__special_characters] = ACTIONS(937), - [anon_sym_DQUOTE] = ACTIONS(43), - [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(939), - [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(939), - }, - [177] = { - [sym_heredoc_start] = ACTIONS(941), - [sym_comment] = ACTIONS(57), - }, - [178] = { - [sym_concatenation] = STATE(517), + [160] = { [sym_string] = STATE(516), - [sym_simple_expansion] = STATE(516), - [sym_string_expansion] = STATE(516), - [sym_expansion] = STATE(516), - [sym_command_substitution] = STATE(516), - [sym_process_substitution] = STATE(516), - [sym__special_characters] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(43), - [anon_sym_DOLLAR] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(267), + [anon_sym_DOLLAR] = ACTIONS(943), [sym_raw_string] = ACTIONS(945), - [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(945), + [anon_sym_POUND] = ACTIONS(943), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(947), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_AT] = ACTIONS(949), + [anon_sym_QMARK] = ACTIONS(949), + [anon_sym_0] = ACTIONS(947), + [anon_sym__] = ACTIONS(947), }, - [179] = { - [ts_builtin_sym_end] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_SEMI_SEMI] = ACTIONS(949), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(949), - [anon_sym_AMP] = ACTIONS(949), - }, - [180] = { - [sym_file_redirect] = STATE(519), - [sym_heredoc_redirect] = STATE(519), - [sym_herestring_redirect] = STATE(519), - [aux_sym_redirected_statement_repeat1] = STATE(519), + [161] = { + [aux_sym_concatenation_repeat1] = STATE(511), [sym__simple_heredoc_body] = ACTIONS(951), [sym__heredoc_body_beginning] = ACTIONS(951), - [sym_file_descriptor] = ACTIONS(303), + [sym_file_descriptor] = ACTIONS(951), + [sym__concat] = ACTIONS(935), + [sym_variable_name] = ACTIONS(951), [ts_builtin_sym_end] = ACTIONS(951), [anon_sym_SEMI] = ACTIONS(953), [anon_sym_PIPE] = ACTIONS(953), @@ -14253,86 +16782,276 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(951), [anon_sym_AMP_AMP] = ACTIONS(951), [anon_sym_PIPE_PIPE] = ACTIONS(951), - [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), + [anon_sym_LT] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(953), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_AMP_GT] = ACTIONS(953), + [anon_sym_AMP_GT_GT] = ACTIONS(951), + [anon_sym_LT_AMP] = ACTIONS(951), + [anon_sym_GT_AMP] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(953), + [anon_sym_LT_LT_DASH] = ACTIONS(951), + [anon_sym_LT_LT_LT] = ACTIONS(951), + [sym__special_characters] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(953), + [sym_raw_string] = ACTIONS(951), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(951), + [anon_sym_BQUOTE] = ACTIONS(951), + [anon_sym_LT_LPAREN] = ACTIONS(951), + [anon_sym_GT_LPAREN] = ACTIONS(951), [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(953), + [sym_word] = ACTIONS(953), [anon_sym_LF] = ACTIONS(951), [anon_sym_AMP] = ACTIONS(953), }, - [181] = { - [sym_concatenation] = STATE(520), - [sym_string] = STATE(522), - [sym_simple_expansion] = STATE(522), - [sym_string_expansion] = STATE(522), - [sym_expansion] = STATE(522), - [sym_command_substitution] = STATE(522), - [sym_process_substitution] = STATE(522), - [sym_regex] = ACTIONS(955), - [sym__special_characters] = ACTIONS(957), + [162] = { + [sym_subscript] = STATE(521), + [sym_variable_name] = ACTIONS(955), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_POUND] = ACTIONS(957), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AT] = ACTIONS(963), + [anon_sym_QMARK] = ACTIONS(963), + [anon_sym_0] = ACTIONS(961), + [anon_sym__] = ACTIONS(961), + }, + [163] = { + [sym__statements] = STATE(522), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(959), + [sym_raw_string] = ACTIONS(171), [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(959), + [sym_word] = ACTIONS(173), }, - [182] = { - [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), + [164] = { + [sym__statements] = STATE(523), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(963), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), + [sym_word] = ACTIONS(379), }, - [183] = { - [aux_sym_concatenation_repeat1] = STATE(140), + [165] = { + [sym__statements] = STATE(524), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [166] = { + [anon_sym_EQ] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [sym_comment] = ACTIONS(57), + }, + [167] = { + [sym_variable_assignment] = STATE(525), + [sym_subscript] = STATE(166), + [sym_concatenation] = STATE(525), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_declaration_command_repeat1] = STATE(525), [sym__simple_heredoc_body] = ACTIONS(965), [sym__heredoc_body_beginning] = ACTIONS(965), [sym_file_descriptor] = ACTIONS(965), - [sym__concat] = ACTIONS(249), + [sym_variable_name] = ACTIONS(261), [ts_builtin_sym_end] = ACTIONS(965), [anon_sym_SEMI] = ACTIONS(967), [anon_sym_PIPE] = ACTIONS(967), @@ -14340,8 +17059,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(965), [anon_sym_AMP_AMP] = ACTIONS(965), [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_EQ_TILDE] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(967), [anon_sym_LT] = ACTIONS(967), [anon_sym_GT] = ACTIONS(967), [anon_sym_GT_GT] = ACTIONS(965), @@ -14352,369 +17069,1089 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(967), [anon_sym_LT_LT_DASH] = ACTIONS(965), [anon_sym_LT_LT_LT] = ACTIONS(965), - [sym__special_characters] = ACTIONS(965), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_DOLLAR] = ACTIONS(967), - [sym_raw_string] = ACTIONS(965), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(965), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(965), - [anon_sym_BQUOTE] = ACTIONS(965), - [anon_sym_LT_LPAREN] = ACTIONS(965), - [anon_sym_GT_LPAREN] = ACTIONS(965), + [sym__special_characters] = ACTIONS(265), + [anon_sym_DQUOTE] = ACTIONS(267), + [anon_sym_DOLLAR] = ACTIONS(269), + [sym_raw_string] = ACTIONS(271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(273), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(277), + [anon_sym_LT_LPAREN] = ACTIONS(279), + [anon_sym_GT_LPAREN] = ACTIONS(279), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(967), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(969), + [sym_word] = ACTIONS(283), [anon_sym_LF] = ACTIONS(965), [anon_sym_AMP] = ACTIONS(967), }, - [184] = { - [sym_concatenation] = STATE(523), - [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(523), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__heredoc_body_beginning] = ACTIONS(969), - [sym_file_descriptor] = ACTIONS(969), - [ts_builtin_sym_end] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(969), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_EQ_TILDE] = ACTIONS(331), - [anon_sym_EQ_EQ] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_AMP_GT_GT] = ACTIONS(969), - [anon_sym_LT_AMP] = ACTIONS(969), - [anon_sym_GT_AMP] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(969), - [anon_sym_LT_LT_LT] = ACTIONS(969), - [sym__special_characters] = ACTIONS(333), + [168] = { + [aux_sym_concatenation_repeat1] = STATE(527), + [sym__simple_heredoc_body] = ACTIONS(971), + [sym__heredoc_body_beginning] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [ts_builtin_sym_end] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [sym__special_characters] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(975), + [sym_word] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(975), + }, + [169] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(530), + [anon_sym_DQUOTE] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(979), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [170] = { + [sym_string] = STATE(532), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(981), + [sym_raw_string] = ACTIONS(983), + [anon_sym_POUND] = ACTIONS(981), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_AT] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_0] = ACTIONS(985), + [anon_sym__] = ACTIONS(985), + }, + [171] = { + [aux_sym_concatenation_repeat1] = STATE(527), + [sym__simple_heredoc_body] = ACTIONS(989), + [sym__heredoc_body_beginning] = ACTIONS(989), + [sym_file_descriptor] = ACTIONS(989), + [sym__concat] = ACTIONS(973), + [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(991), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_AMP_GT] = ACTIONS(991), + [anon_sym_AMP_GT_GT] = ACTIONS(989), + [anon_sym_LT_AMP] = ACTIONS(989), + [anon_sym_GT_AMP] = ACTIONS(989), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_LT_LT_DASH] = ACTIONS(989), + [anon_sym_LT_LT_LT] = ACTIONS(989), + [sym__special_characters] = ACTIONS(989), + [anon_sym_DQUOTE] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(991), + [sym_raw_string] = ACTIONS(989), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(989), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(989), + [anon_sym_LT_LPAREN] = ACTIONS(989), + [anon_sym_GT_LPAREN] = ACTIONS(989), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(991), + [sym_word] = ACTIONS(991), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [172] = { + [sym_subscript] = STATE(537), + [sym_variable_name] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_DOLLAR] = ACTIONS(997), + [anon_sym_POUND] = ACTIONS(995), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(999), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_AT] = ACTIONS(1001), + [anon_sym_QMARK] = ACTIONS(1001), + [anon_sym_0] = ACTIONS(999), + [anon_sym__] = ACTIONS(999), + }, + [173] = { + [sym__statements] = STATE(538), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(335), + [sym_raw_string] = ACTIONS(171), [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(969), - [anon_sym_AMP] = ACTIONS(971), + [sym_word] = ACTIONS(173), + }, + [174] = { + [sym__statements] = STATE(539), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [175] = { + [sym__statements] = STATE(540), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [176] = { + [sym_concatenation] = STATE(541), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_unset_command_repeat1] = STATE(541), + [sym__simple_heredoc_body] = ACTIONS(1003), + [sym__heredoc_body_beginning] = ACTIONS(1003), + [sym_file_descriptor] = ACTIONS(1003), + [ts_builtin_sym_end] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_SEMI_SEMI] = ACTIONS(1003), + [anon_sym_PIPE_AMP] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_AMP_GT] = ACTIONS(1005), + [anon_sym_AMP_GT_GT] = ACTIONS(1003), + [anon_sym_LT_AMP] = ACTIONS(1003), + [anon_sym_GT_AMP] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_LT_LT_DASH] = ACTIONS(1003), + [anon_sym_LT_LT_LT] = ACTIONS(1003), + [sym__special_characters] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(299), + [anon_sym_BQUOTE] = ACTIONS(301), + [anon_sym_LT_LPAREN] = ACTIONS(303), + [anon_sym_GT_LPAREN] = ACTIONS(303), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1007), + [sym_word] = ACTIONS(307), + [anon_sym_LF] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1005), + }, + [177] = { + [aux_sym_concatenation_repeat1] = STATE(543), + [sym_file_descriptor] = ACTIONS(1009), + [sym__concat] = ACTIONS(1011), + [sym_variable_name] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_GT] = ACTIONS(1013), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(1013), + [anon_sym_AMP_GT_GT] = ACTIONS(1009), + [anon_sym_LT_AMP] = ACTIONS(1009), + [anon_sym_GT_AMP] = ACTIONS(1009), + [sym__special_characters] = ACTIONS(1009), + [anon_sym_DQUOTE] = ACTIONS(1009), + [anon_sym_DOLLAR] = ACTIONS(1013), + [sym_raw_string] = ACTIONS(1009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1009), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1009), + [anon_sym_BQUOTE] = ACTIONS(1009), + [anon_sym_LT_LPAREN] = ACTIONS(1009), + [anon_sym_GT_LPAREN] = ACTIONS(1009), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1009), + }, + [178] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(546), + [anon_sym_DQUOTE] = ACTIONS(1015), + [anon_sym_DOLLAR] = ACTIONS(1017), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [179] = { + [sym_string] = STATE(548), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(311), + [anon_sym_DOLLAR] = ACTIONS(1019), + [sym_raw_string] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(1019), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1025), + [anon_sym_AT] = ACTIONS(1025), + [anon_sym_QMARK] = ACTIONS(1025), + [anon_sym_0] = ACTIONS(1023), + [anon_sym__] = ACTIONS(1023), + }, + [180] = { + [aux_sym_concatenation_repeat1] = STATE(543), + [sym_file_descriptor] = ACTIONS(1027), + [sym__concat] = ACTIONS(1011), + [sym_variable_name] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_AMP_GT] = ACTIONS(1029), + [anon_sym_AMP_GT_GT] = ACTIONS(1027), + [anon_sym_LT_AMP] = ACTIONS(1027), + [anon_sym_GT_AMP] = ACTIONS(1027), + [sym__special_characters] = ACTIONS(1027), + [anon_sym_DQUOTE] = ACTIONS(1027), + [anon_sym_DOLLAR] = ACTIONS(1029), + [sym_raw_string] = ACTIONS(1027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1027), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_LT_LPAREN] = ACTIONS(1027), + [anon_sym_GT_LPAREN] = ACTIONS(1027), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1027), + }, + [181] = { + [sym_subscript] = STATE(553), + [sym_variable_name] = ACTIONS(1031), + [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1035), + [anon_sym_POUND] = ACTIONS(1033), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1039), + [anon_sym_AT] = ACTIONS(1039), + [anon_sym_QMARK] = ACTIONS(1039), + [anon_sym_0] = ACTIONS(1037), + [anon_sym__] = ACTIONS(1037), + }, + [182] = { + [sym__statements] = STATE(554), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [183] = { + [sym__statements] = STATE(555), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [184] = { + [sym__statements] = STATE(556), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), }, [185] = { - [sym_file_redirect] = STATE(180), - [sym_heredoc_redirect] = STATE(180), - [sym_heredoc_body] = STATE(525), - [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(933), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(309), - [anon_sym_SEMI_SEMI] = ACTIONS(975), - [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_file_descriptor] = ACTIONS(1027), + [sym_variable_name] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_AMP_GT] = ACTIONS(1029), + [anon_sym_AMP_GT_GT] = ACTIONS(1027), + [anon_sym_LT_AMP] = ACTIONS(1027), + [anon_sym_GT_AMP] = ACTIONS(1027), + [sym__special_characters] = ACTIONS(1027), + [anon_sym_DQUOTE] = ACTIONS(1027), + [anon_sym_DOLLAR] = ACTIONS(1029), + [sym_raw_string] = ACTIONS(1027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1027), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_LT_LPAREN] = ACTIONS(1027), + [anon_sym_GT_LPAREN] = ACTIONS(1027), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), + [sym_word] = ACTIONS(1027), }, [186] = { - [sym_file_redirect] = STATE(180), - [sym_heredoc_redirect] = STATE(180), - [sym_heredoc_body] = STATE(525), - [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(933), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(309), - [anon_sym_SEMI_SEMI] = ACTIONS(975), - [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(975), - [anon_sym_AMP] = ACTIONS(973), - }, - [187] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(526), - [sym_for_statement] = STATE(526), - [sym_c_style_for_statement] = STATE(526), - [sym_while_statement] = STATE(526), - [sym_if_statement] = STATE(526), - [sym_case_statement] = STATE(526), - [sym_function_definition] = STATE(526), - [sym_compound_statement] = STATE(526), - [sym_subshell] = STATE(526), - [sym_pipeline] = STATE(526), - [sym_list] = STATE(526), - [sym_negated_command] = STATE(526), - [sym_test_command] = STATE(526), - [sym_declaration_command] = STATE(526), - [sym_unset_command] = STATE(526), - [sym_command] = STATE(526), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(527), - [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(977), - [sym_variable_name] = ACTIONS(980), - [anon_sym_for] = ACTIONS(983), - [anon_sym_LPAREN_LPAREN] = ACTIONS(986), - [anon_sym_while] = ACTIONS(989), - [anon_sym_if] = ACTIONS(992), - [anon_sym_case] = ACTIONS(995), - [anon_sym_function] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1013), - [anon_sym_declare] = ACTIONS(1016), - [anon_sym_typeset] = ACTIONS(1016), - [anon_sym_export] = ACTIONS(1016), - [anon_sym_readonly] = ACTIONS(1016), - [anon_sym_local] = ACTIONS(1016), - [anon_sym_unset] = ACTIONS(1019), - [anon_sym_unsetenv] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1022), - [anon_sym_GT] = ACTIONS(1022), - [anon_sym_GT_GT] = ACTIONS(1025), - [anon_sym_AMP_GT] = ACTIONS(1022), - [anon_sym_AMP_GT_GT] = ACTIONS(1025), - [anon_sym_LT_AMP] = ACTIONS(1025), - [anon_sym_GT_AMP] = ACTIONS(1025), - [sym__special_characters] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1034), - [sym_raw_string] = ACTIONS(1037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), - [anon_sym_BQUOTE] = ACTIONS(1046), - [anon_sym_LT_LPAREN] = ACTIONS(1049), - [anon_sym_GT_LPAREN] = ACTIONS(1049), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1052), - }, - [188] = { - [sym_concatenation] = STATE(528), - [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(528), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__heredoc_body_beginning] = ACTIONS(969), - [sym_file_descriptor] = ACTIONS(969), - [ts_builtin_sym_end] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(969), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_EQ_TILDE] = ACTIONS(331), - [anon_sym_EQ_EQ] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_AMP_GT_GT] = ACTIONS(969), - [anon_sym_LT_AMP] = ACTIONS(969), - [anon_sym_GT_AMP] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(969), - [anon_sym_LT_LT_LT] = ACTIONS(969), - [sym__special_characters] = ACTIONS(333), + [sym_string] = STATE(557), + [sym_simple_expansion] = STATE(557), + [sym_string_expansion] = STATE(557), + [sym_expansion] = STATE(557), + [sym_command_substitution] = STATE(557), + [sym_process_substitution] = STATE(557), + [sym__special_characters] = ACTIONS(1041), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(335), + [sym_raw_string] = ACTIONS(1041), [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(969), - [anon_sym_AMP] = ACTIONS(971), + [sym_word] = ACTIONS(1041), + }, + [187] = { + [aux_sym_concatenation_repeat1] = STATE(558), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(327), + [ts_builtin_sym_end] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_EQ_TILDE] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [188] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [ts_builtin_sym_end] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1049), + [anon_sym_EQ_EQ] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), }, [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(1055), - [sym_variable_name] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_GT_GT] = ACTIONS(1064), - [anon_sym_AMP_GT] = ACTIONS(1061), - [anon_sym_AMP_GT_GT] = ACTIONS(1064), - [anon_sym_LT_AMP] = ACTIONS(1064), - [anon_sym_GT_AMP] = ACTIONS(1064), - [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), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1053), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), }, [190] = { - [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), + [sym__concat] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [sym__string_content] = ACTIONS(1067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [sym_comment] = ACTIONS(343), }, [191] = { - [aux_sym_concatenation_repeat1] = STATE(417), - [sym_file_descriptor] = ACTIONS(1075), - [sym__concat] = ACTIONS(747), - [sym_variable_name] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1077), - [anon_sym_GT] = ACTIONS(1077), - [anon_sym_GT_GT] = ACTIONS(1075), - [anon_sym_AMP_GT] = ACTIONS(1077), - [anon_sym_AMP_GT_GT] = ACTIONS(1075), - [anon_sym_LT_AMP] = ACTIONS(1075), - [anon_sym_GT_AMP] = ACTIONS(1075), - [sym__special_characters] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_DOLLAR] = ACTIONS(1077), - [sym_raw_string] = ACTIONS(1075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1075), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1075), - [anon_sym_BQUOTE] = ACTIONS(1075), - [anon_sym_LT_LPAREN] = ACTIONS(1075), - [anon_sym_GT_LPAREN] = ACTIONS(1075), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1075), + [sym_subscript] = STATE(567), + [sym_variable_name] = ACTIONS(1069), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_POUND] = ACTIONS(1071), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1075), + [anon_sym_STAR] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1077), + [anon_sym_QMARK] = ACTIONS(1077), + [anon_sym_0] = ACTIONS(1075), + [anon_sym__] = ACTIONS(1075), }, [192] = { - [sym_file_descriptor] = ACTIONS(1075), - [sym_variable_name] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1077), - [anon_sym_GT] = ACTIONS(1077), - [anon_sym_GT_GT] = ACTIONS(1075), - [anon_sym_AMP_GT] = ACTIONS(1077), - [anon_sym_AMP_GT_GT] = ACTIONS(1075), - [anon_sym_LT_AMP] = ACTIONS(1075), - [anon_sym_GT_AMP] = ACTIONS(1075), - [sym__special_characters] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_DOLLAR] = ACTIONS(1077), - [sym_raw_string] = ACTIONS(1075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1075), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1075), - [anon_sym_BQUOTE] = ACTIONS(1075), - [anon_sym_LT_LPAREN] = ACTIONS(1075), - [anon_sym_GT_LPAREN] = ACTIONS(1075), + [sym__statements] = STATE(568), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(1075), + [sym_word] = ACTIONS(173), }, [193] = { - [aux_sym_concatenation_repeat1] = STATE(531), - [sym__concat] = ACTIONS(1079), - [anon_sym_RBRACK] = ACTIONS(1081), + [sym__statements] = STATE(569), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), }, [194] = { - [aux_sym_concatenation_repeat1] = STATE(531), - [sym__concat] = ACTIONS(1083), - [anon_sym_RBRACK] = ACTIONS(1085), - [sym_comment] = ACTIONS(57), + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(1053), + [anon_sym_DOLLAR] = ACTIONS(1079), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), }, [195] = { - [sym__concat] = ACTIONS(1087), - [anon_sym_RBRACK] = ACTIONS(1085), + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [ts_builtin_sym_end] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_RPAREN] = ACTIONS(1081), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1083), + [anon_sym_EQ_EQ] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), }, [196] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = 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_EQ_TILDE] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1087), + [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__simple_heredoc_body] = ACTIONS(1089), [sym__heredoc_body_beginning] = ACTIONS(1089), [sym_file_descriptor] = ACTIONS(1089), - [sym_variable_name] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), [ts_builtin_sym_end] = ACTIONS(1089), [anon_sym_SEMI] = ACTIONS(1091), [anon_sym_PIPE] = ACTIONS(1091), @@ -14723,6 +18160,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(1089), [anon_sym_AMP_AMP] = ACTIONS(1089), [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1091), + [anon_sym_EQ_EQ] = ACTIONS(1091), [anon_sym_LT] = ACTIONS(1091), [anon_sym_GT] = ACTIONS(1091), [anon_sym_GT_GT] = ACTIONS(1089), @@ -14747,108 +18186,4067 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1089), [anon_sym_AMP] = ACTIONS(1091), }, - [197] = { - [sym_concatenation] = STATE(544), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [aux_sym_for_statement_repeat1] = STATE(544), - [anon_sym_RPAREN] = ACTIONS(1093), - [sym__special_characters] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_DOLLAR] = ACTIONS(1099), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1109), - [anon_sym_GT_LPAREN] = ACTIONS(1109), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1101), - }, [198] = { - [aux_sym_concatenation_repeat1] = STATE(546), - [sym__simple_heredoc_body] = ACTIONS(1111), - [sym__heredoc_body_beginning] = ACTIONS(1111), - [sym_file_descriptor] = ACTIONS(1111), - [sym__concat] = ACTIONS(1113), - [sym_variable_name] = ACTIONS(1111), - [ts_builtin_sym_end] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(1115), - [anon_sym_SEMI_SEMI] = ACTIONS(1111), - [anon_sym_PIPE_AMP] = ACTIONS(1111), - [anon_sym_AMP_AMP] = ACTIONS(1111), - [anon_sym_PIPE_PIPE] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1115), - [anon_sym_GT] = ACTIONS(1115), - [anon_sym_GT_GT] = ACTIONS(1111), - [anon_sym_AMP_GT] = ACTIONS(1115), - [anon_sym_AMP_GT_GT] = ACTIONS(1111), - [anon_sym_LT_AMP] = ACTIONS(1111), - [anon_sym_GT_AMP] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1115), - [anon_sym_LT_LT_DASH] = ACTIONS(1111), - [anon_sym_LT_LT_LT] = ACTIONS(1111), - [sym__special_characters] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(1115), - [sym_raw_string] = ACTIONS(1111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1111), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1111), - [anon_sym_BQUOTE] = ACTIONS(1111), - [anon_sym_LT_LPAREN] = ACTIONS(1111), - [anon_sym_GT_LPAREN] = ACTIONS(1111), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1095), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1115), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_AMP] = ACTIONS(1115), }, [199] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(549), - [anon_sym_DQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1119), - [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), + [sym_subscript] = STATE(576), + [sym_variable_name] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1099), + [anon_sym_DOLLAR] = ACTIONS(1099), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1101), + [anon_sym_STAR] = ACTIONS(1103), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_0] = ACTIONS(1101), + [anon_sym__] = ACTIONS(1101), }, [200] = { - [sym_string] = STATE(551), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(1121), - [sym_raw_string] = ACTIONS(1123), - [anon_sym_POUND] = ACTIONS(1121), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1125), - [anon_sym_STAR] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1127), - [anon_sym_QMARK] = ACTIONS(1127), - [anon_sym_0] = ACTIONS(1125), - [anon_sym__] = ACTIONS(1125), + [sym_concatenation] = STATE(587), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(587), + [anon_sym_RBRACE] = ACTIONS(1105), + [anon_sym_EQ] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(1117), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1121), + [anon_sym_COLON] = ACTIONS(1107), + [anon_sym_COLON_QMARK] = ACTIONS(1107), + [anon_sym_COLON_DASH] = ACTIONS(1107), + [anon_sym_PERCENT] = ACTIONS(1107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [201] = { - [aux_sym_concatenation_repeat1] = STATE(546), - [sym__simple_heredoc_body] = ACTIONS(1089), - [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_concatenation] = STATE(590), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(590), + [anon_sym_RBRACE] = ACTIONS(1131), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1133), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(1135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1137), + [anon_sym_COLON] = ACTIONS(1133), + [anon_sym_COLON_QMARK] = ACTIONS(1133), + [anon_sym_COLON_DASH] = ACTIONS(1133), + [anon_sym_PERCENT] = ACTIONS(1133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [202] = { + [anon_sym_RPAREN] = ACTIONS(1139), + [sym_comment] = ACTIONS(57), + }, + [203] = { + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(1141), + [anon_sym_PLUS_EQ] = ACTIONS(1141), + [sym_comment] = ACTIONS(57), + }, + [204] = { + [sym_subshell] = STATE(140), + [sym_test_command] = STATE(140), + [sym_command] = STATE(140), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(216), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(223), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(377), + }, + [205] = { + [sym_variable_assignment] = STATE(597), + [sym_subscript] = STATE(596), + [sym_concatenation] = STATE(597), + [sym_string] = STATE(595), + [sym_simple_expansion] = STATE(595), + [sym_string_expansion] = STATE(595), + [sym_expansion] = STATE(595), + [sym_command_substitution] = STATE(595), + [sym_process_substitution] = STATE(595), + [aux_sym_declaration_command_repeat1] = STATE(597), + [sym__simple_heredoc_body] = ACTIONS(259), + [sym__heredoc_body_beginning] = ACTIONS(259), + [sym_file_descriptor] = ACTIONS(259), + [sym_variable_name] = ACTIONS(1143), + [anon_sym_SEMI] = ACTIONS(263), + [anon_sym_PIPE] = ACTIONS(263), + [anon_sym_SEMI_SEMI] = ACTIONS(259), + [anon_sym_PIPE_AMP] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(259), + [anon_sym_PIPE_PIPE] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(263), + [anon_sym_GT] = ACTIONS(263), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_AMP_GT] = ACTIONS(263), + [anon_sym_AMP_GT_GT] = ACTIONS(259), + [anon_sym_LT_AMP] = ACTIONS(259), + [anon_sym_GT_AMP] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(263), + [anon_sym_LT_LT_DASH] = ACTIONS(259), + [anon_sym_LT_LT_LT] = ACTIONS(259), + [sym__special_characters] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(267), + [anon_sym_DOLLAR] = ACTIONS(269), + [sym_raw_string] = ACTIONS(1147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(273), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(259), + [anon_sym_LT_LPAREN] = ACTIONS(279), + [anon_sym_GT_LPAREN] = ACTIONS(279), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1149), + [sym_word] = ACTIONS(1151), + [anon_sym_LF] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(263), + }, + [206] = { + [sym_concatenation] = STATE(600), + [sym_string] = STATE(599), + [sym_simple_expansion] = STATE(599), + [sym_string_expansion] = STATE(599), + [sym_expansion] = STATE(599), + [sym_command_substitution] = STATE(599), + [sym_process_substitution] = STATE(599), + [aux_sym_unset_command_repeat1] = STATE(600), + [sym__simple_heredoc_body] = ACTIONS(285), + [sym__heredoc_body_beginning] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(287), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(287), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [sym__special_characters] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(1155), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(299), + [anon_sym_BQUOTE] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(303), + [anon_sym_GT_LPAREN] = ACTIONS(303), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1157), + [sym_word] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(287), + }, + [207] = { + [aux_sym_concatenation_repeat1] = STATE(601), + [sym__simple_heredoc_body] = ACTIONS(325), + [sym__heredoc_body_beginning] = ACTIONS(325), + [sym_file_descriptor] = ACTIONS(325), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(325), + [anon_sym_PIPE_AMP] = ACTIONS(325), + [anon_sym_AMP_AMP] = ACTIONS(325), + [anon_sym_PIPE_PIPE] = ACTIONS(325), + [anon_sym_EQ_TILDE] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(329), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_LT_LT_DASH] = ACTIONS(325), + [anon_sym_LT_LT_LT] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(329), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(329), + [anon_sym_LF] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(329), + }, + [208] = { + [aux_sym_concatenation_repeat1] = STATE(601), + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), + }, + [209] = { + [aux_sym_concatenation_repeat1] = STATE(601), + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), + }, + [210] = { + [anon_sym_BQUOTE] = ACTIONS(1139), + [sym_comment] = ACTIONS(57), + }, + [211] = { + [sym_file_redirect] = STATE(609), + [sym_heredoc_redirect] = STATE(609), + [sym_heredoc_body] = STATE(608), + [sym_herestring_redirect] = STATE(609), + [aux_sym_redirected_statement_repeat1] = STATE(609), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_PIPE] = ACTIONS(1165), + [anon_sym_SEMI_SEMI] = ACTIONS(1167), + [anon_sym_PIPE_AMP] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE_PIPE] = ACTIONS(1171), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), + [anon_sym_GT_GT] = ACTIONS(1175), + [anon_sym_AMP_GT] = ACTIONS(1173), + [anon_sym_AMP_GT_GT] = ACTIONS(1175), + [anon_sym_LT_AMP] = ACTIONS(1175), + [anon_sym_GT_AMP] = ACTIONS(1175), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(1177), + [anon_sym_BQUOTE] = ACTIONS(393), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1163), + }, + [212] = { + [sym_concatenation] = STATE(613), + [sym_string] = STATE(612), + [sym_simple_expansion] = STATE(612), + [sym_string_expansion] = STATE(612), + [sym_expansion] = STATE(612), + [sym_command_substitution] = STATE(612), + [sym_process_substitution] = STATE(612), + [aux_sym_command_repeat2] = STATE(613), + [sym__simple_heredoc_body] = ACTIONS(415), + [sym__heredoc_body_beginning] = ACTIONS(415), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(415), + [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(415), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(415), + [anon_sym_LT_AMP] = ACTIONS(415), + [anon_sym_GT_AMP] = ACTIONS(415), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(415), + [anon_sym_LT_LT_LT] = ACTIONS(415), + [sym__special_characters] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(415), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1185), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), + }, + [213] = { + [sym_file_redirect] = STATE(609), + [sym_heredoc_redirect] = STATE(609), + [sym_heredoc_body] = STATE(608), + [sym_herestring_redirect] = STATE(609), + [aux_sym_redirected_statement_repeat1] = STATE(609), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_PIPE] = ACTIONS(1165), + [anon_sym_SEMI_SEMI] = ACTIONS(1167), + [anon_sym_PIPE_AMP] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE_PIPE] = ACTIONS(1171), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(1177), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(393), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1163), + }, + [214] = { + [anon_sym_EQ] = ACTIONS(1141), + [anon_sym_PLUS_EQ] = ACTIONS(1141), + [sym_comment] = ACTIONS(57), + }, + [215] = { + [sym_redirected_statement] = STATE(614), + [sym_for_statement] = STATE(614), + [sym_c_style_for_statement] = STATE(614), + [sym_while_statement] = STATE(614), + [sym_if_statement] = STATE(614), + [sym_case_statement] = STATE(614), + [sym_function_definition] = STATE(614), + [sym_compound_statement] = STATE(614), + [sym_subshell] = STATE(614), + [sym_pipeline] = STATE(614), + [sym_list] = STATE(614), + [sym_negated_command] = STATE(614), + [sym_test_command] = STATE(614), + [sym_declaration_command] = STATE(614), + [sym_unset_command] = STATE(614), + [sym_command] = STATE(614), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(615), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(236), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [216] = { + [sym_command_name] = STATE(616), + [sym_variable_assignment] = STATE(238), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(238), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym_command_repeat1] = STATE(238), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(223), + [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(1187), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(377), + }, + [217] = { + [anon_sym_RPAREN] = ACTIONS(1189), + [sym_comment] = ACTIONS(57), + }, + [218] = { + [anon_sym_RPAREN] = ACTIONS(1191), + [sym_comment] = ACTIONS(57), + }, + [219] = { + [ts_builtin_sym_end] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_done] = ACTIONS(1193), + [anon_sym_fi] = ACTIONS(1193), + [anon_sym_elif] = ACTIONS(1193), + [anon_sym_else] = ACTIONS(1193), + [anon_sym_esac] = ACTIONS(1193), + [anon_sym_RPAREN] = ACTIONS(1193), + [anon_sym_SEMI_SEMI] = ACTIONS(1193), + [anon_sym_BQUOTE] = ACTIONS(1193), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + }, + [220] = { + [sym_simple_expansion] = STATE(624), + [sym_expansion] = STATE(624), + [sym_command_substitution] = STATE(624), + [aux_sym_heredoc_body_repeat1] = STATE(624), + [sym__heredoc_body_middle] = ACTIONS(1197), + [sym__heredoc_body_end] = ACTIONS(1199), + [anon_sym_DOLLAR] = ACTIONS(1201), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1205), + [anon_sym_BQUOTE] = ACTIONS(1207), + [sym_comment] = ACTIONS(57), + }, + [221] = { + [anon_sym_LT] = ACTIONS(1209), + [anon_sym_GT] = ACTIONS(1209), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_AMP_GT] = ACTIONS(1209), + [anon_sym_AMP_GT_GT] = ACTIONS(1211), + [anon_sym_LT_AMP] = ACTIONS(1211), + [anon_sym_GT_AMP] = ACTIONS(1211), + [sym_comment] = ACTIONS(57), + }, + [222] = { + [sym_file_descriptor] = ACTIONS(1213), + [sym_variable_name] = ACTIONS(1213), + [ts_builtin_sym_end] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_SEMI_SEMI] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_typeset] = ACTIONS(1217), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_local] = ACTIONS(1217), + [anon_sym_unset] = ACTIONS(1217), + [anon_sym_unsetenv] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_GT] = ACTIONS(1213), + [anon_sym_AMP_GT] = ACTIONS(1217), + [anon_sym_AMP_GT_GT] = ACTIONS(1213), + [anon_sym_LT_AMP] = ACTIONS(1213), + [anon_sym_GT_AMP] = ACTIONS(1213), + [sym__special_characters] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1217), + [sym_raw_string] = ACTIONS(1213), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1213), + [anon_sym_BQUOTE] = ACTIONS(1213), + [anon_sym_LT_LPAREN] = ACTIONS(1213), + [anon_sym_GT_LPAREN] = ACTIONS(1213), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1217), + }, + [223] = { + [sym_redirected_statement] = STATE(626), + [sym_for_statement] = STATE(626), + [sym_c_style_for_statement] = STATE(626), + [sym_while_statement] = STATE(626), + [sym_if_statement] = STATE(626), + [sym_case_statement] = STATE(626), + [sym_function_definition] = STATE(626), + [sym_compound_statement] = STATE(626), + [sym_subshell] = STATE(626), + [sym_pipeline] = STATE(626), + [sym_list] = STATE(626), + [sym_negated_command] = STATE(626), + [sym_test_command] = STATE(626), + [sym_declaration_command] = STATE(626), + [sym_unset_command] = STATE(626), + [sym_command] = STATE(626), + [sym_command_name] = STATE(30), + [sym_variable_assignment] = STATE(627), + [sym_subscript] = STATE(32), + [sym_file_redirect] = STATE(35), + [sym_concatenation] = STATE(33), + [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(35), + [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), + }, + [224] = { + [sym_redirected_statement] = STATE(628), + [sym_for_statement] = STATE(628), + [sym_c_style_for_statement] = STATE(628), + [sym_while_statement] = STATE(628), + [sym_if_statement] = STATE(628), + [sym_case_statement] = STATE(628), + [sym_function_definition] = STATE(628), + [sym_compound_statement] = STATE(628), + [sym_subshell] = STATE(628), + [sym_pipeline] = STATE(628), + [sym_list] = STATE(628), + [sym_negated_command] = STATE(628), + [sym_test_command] = STATE(628), + [sym_declaration_command] = STATE(628), + [sym_unset_command] = STATE(628), + [sym_command] = STATE(628), + [sym_command_name] = STATE(30), + [sym_variable_assignment] = STATE(629), + [sym_subscript] = STATE(32), + [sym_file_redirect] = STATE(35), + [sym_concatenation] = STATE(33), + [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(35), + [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), + }, + [225] = { + [sym_concatenation] = STATE(632), + [sym_string] = STATE(631), + [sym_simple_expansion] = STATE(631), + [sym_string_expansion] = STATE(631), + [sym_expansion] = STATE(631), + [sym_command_substitution] = STATE(631), + [sym_process_substitution] = STATE(631), + [sym__special_characters] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1221), + [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(1221), + }, + [226] = { + [sym_heredoc_start] = ACTIONS(1223), + [sym_comment] = ACTIONS(57), + }, + [227] = { + [sym_concatenation] = STATE(636), + [sym_string] = STATE(635), + [sym_simple_expansion] = STATE(635), + [sym_string_expansion] = STATE(635), + [sym_expansion] = STATE(635), + [sym_command_substitution] = STATE(635), + [sym_process_substitution] = STATE(635), + [sym__special_characters] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1227), + [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(1227), + }, + [228] = { + [ts_builtin_sym_end] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + }, + [229] = { + [sym_file_redirect] = STATE(638), + [sym_heredoc_redirect] = STATE(638), + [sym_herestring_redirect] = STATE(638), + [aux_sym_redirected_statement_repeat1] = STATE(638), + [sym__simple_heredoc_body] = ACTIONS(1233), + [sym__heredoc_body_beginning] = ACTIONS(1233), + [sym_file_descriptor] = ACTIONS(391), + [ts_builtin_sym_end] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1233), + [anon_sym_PIPE_AMP] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(405), + [anon_sym_AMP_GT_GT] = ACTIONS(407), + [anon_sym_LT_AMP] = ACTIONS(407), + [anon_sym_GT_AMP] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1235), + }, + [230] = { + [sym_concatenation] = STATE(639), + [sym_string] = STATE(641), + [sym_simple_expansion] = STATE(641), + [sym_string_expansion] = STATE(641), + [sym_expansion] = STATE(641), + [sym_command_substitution] = STATE(641), + [sym_process_substitution] = STATE(641), + [sym_regex] = ACTIONS(1237), + [sym__special_characters] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1241), + [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(1241), + }, + [231] = { + [aux_sym_concatenation_repeat1] = STATE(187), + [sym__simple_heredoc_body] = ACTIONS(1243), + [sym__heredoc_body_beginning] = ACTIONS(1243), + [sym_file_descriptor] = ACTIONS(1243), + [sym__concat] = ACTIONS(327), + [ts_builtin_sym_end] = ACTIONS(1243), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1245), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_LT_LT_DASH] = ACTIONS(1243), + [anon_sym_LT_LT_LT] = ACTIONS(1243), + [sym__special_characters] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1245), + [sym_raw_string] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [anon_sym_LT_LPAREN] = ACTIONS(1243), + [anon_sym_GT_LPAREN] = ACTIONS(1243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1245), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1245), + }, + [232] = { + [aux_sym_concatenation_repeat1] = STATE(187), + [sym__simple_heredoc_body] = ACTIONS(1247), + [sym__heredoc_body_beginning] = ACTIONS(1247), + [sym_file_descriptor] = ACTIONS(1247), + [sym__concat] = ACTIONS(327), + [ts_builtin_sym_end] = ACTIONS(1247), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_SEMI_SEMI] = ACTIONS(1247), + [anon_sym_PIPE_AMP] = ACTIONS(1247), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_AMP_GT] = ACTIONS(1249), + [anon_sym_AMP_GT_GT] = ACTIONS(1247), + [anon_sym_LT_AMP] = ACTIONS(1247), + [anon_sym_GT_AMP] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_LT_LT_DASH] = ACTIONS(1247), + [anon_sym_LT_LT_LT] = ACTIONS(1247), + [sym__special_characters] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1247), + [anon_sym_DOLLAR] = ACTIONS(1249), + [sym_raw_string] = ACTIONS(1247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1247), + [anon_sym_BQUOTE] = ACTIONS(1247), + [anon_sym_LT_LPAREN] = ACTIONS(1247), + [anon_sym_GT_LPAREN] = ACTIONS(1247), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1249), + [anon_sym_LF] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1249), + }, + [233] = { + [sym_concatenation] = STATE(642), + [sym_string] = STATE(232), + [sym_simple_expansion] = STATE(232), + [sym_string_expansion] = STATE(232), + [sym_expansion] = STATE(232), + [sym_command_substitution] = STATE(232), + [sym_process_substitution] = STATE(232), + [aux_sym_command_repeat2] = STATE(642), + [sym__simple_heredoc_body] = ACTIONS(1251), + [sym__heredoc_body_beginning] = ACTIONS(1251), + [sym_file_descriptor] = ACTIONS(1251), + [ts_builtin_sym_end] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(421), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(423), + [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(425), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + }, + [234] = { + [sym_file_redirect] = STATE(229), + [sym_heredoc_redirect] = STATE(229), + [sym_heredoc_body] = STATE(644), + [sym_herestring_redirect] = STATE(229), + [aux_sym_redirected_statement_repeat1] = STATE(229), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(391), + [ts_builtin_sym_end] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_SEMI_SEMI] = ACTIONS(1257), + [anon_sym_PIPE_AMP] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(405), + [anon_sym_AMP_GT_GT] = ACTIONS(407), + [anon_sym_LT_AMP] = ACTIONS(407), + [anon_sym_GT_AMP] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1255), + }, + [235] = { + [sym_file_redirect] = STATE(229), + [sym_heredoc_redirect] = STATE(229), + [sym_heredoc_body] = STATE(644), + [sym_herestring_redirect] = STATE(229), + [aux_sym_redirected_statement_repeat1] = STATE(229), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [ts_builtin_sym_end] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_SEMI_SEMI] = ACTIONS(1257), + [anon_sym_PIPE_AMP] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1255), + }, + [236] = { + [sym_redirected_statement] = STATE(648), + [sym_for_statement] = STATE(648), + [sym_c_style_for_statement] = STATE(648), + [sym_while_statement] = STATE(648), + [sym_if_statement] = STATE(648), + [sym_case_statement] = STATE(648), + [sym_function_definition] = STATE(648), + [sym_compound_statement] = STATE(648), + [sym_subshell] = STATE(648), + [sym_pipeline] = STATE(648), + [sym_list] = STATE(648), + [sym_negated_command] = STATE(648), + [sym_test_command] = STATE(648), + [sym_declaration_command] = STATE(648), + [sym_unset_command] = STATE(648), + [sym_command] = STATE(648), + [sym_command_name] = STATE(649), + [sym_variable_assignment] = STATE(650), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(651), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(236), + [aux_sym_command_repeat1] = STATE(651), + [sym_file_descriptor] = ACTIONS(1259), + [sym_variable_name] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1268), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_case] = ACTIONS(1277), + [anon_sym_function] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1298), + [anon_sym_typeset] = ACTIONS(1298), + [anon_sym_export] = ACTIONS(1298), + [anon_sym_readonly] = ACTIONS(1298), + [anon_sym_local] = ACTIONS(1298), + [anon_sym_unset] = ACTIONS(1301), + [anon_sym_unsetenv] = ACTIONS(1301), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1307), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1307), + [anon_sym_LT_AMP] = ACTIONS(1307), + [anon_sym_GT_AMP] = ACTIONS(1307), + [sym__special_characters] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1313), + [anon_sym_DOLLAR] = ACTIONS(1316), + [sym_raw_string] = ACTIONS(1319), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1322), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1325), + [anon_sym_BQUOTE] = ACTIONS(1328), + [anon_sym_LT_LPAREN] = ACTIONS(1331), + [anon_sym_GT_LPAREN] = ACTIONS(1331), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1334), + }, + [237] = { + [sym_concatenation] = STATE(652), + [sym_string] = STATE(232), + [sym_simple_expansion] = STATE(232), + [sym_string_expansion] = STATE(232), + [sym_expansion] = STATE(232), + [sym_command_substitution] = STATE(232), + [sym_process_substitution] = STATE(232), + [aux_sym_command_repeat2] = STATE(652), + [sym__simple_heredoc_body] = ACTIONS(1251), + [sym__heredoc_body_beginning] = ACTIONS(1251), + [sym_file_descriptor] = ACTIONS(1251), + [ts_builtin_sym_end] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(421), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(423), + [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(425), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + }, + [238] = { + [sym_variable_assignment] = STATE(238), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(238), + [aux_sym_command_repeat1] = STATE(238), + [sym_file_descriptor] = ACTIONS(1337), + [sym_variable_name] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1343), + [anon_sym_GT] = ACTIONS(1343), + [anon_sym_GT_GT] = ACTIONS(1346), + [anon_sym_AMP_GT] = ACTIONS(1343), + [anon_sym_AMP_GT_GT] = ACTIONS(1346), + [anon_sym_LT_AMP] = ACTIONS(1346), + [anon_sym_GT_AMP] = ACTIONS(1346), + [sym__special_characters] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [anon_sym_DOLLAR] = ACTIONS(1351), + [sym_raw_string] = ACTIONS(1349), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1349), + [anon_sym_BQUOTE] = ACTIONS(1349), + [anon_sym_LT_LPAREN] = ACTIONS(1349), + [anon_sym_GT_LPAREN] = ACTIONS(1349), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1349), + }, + [239] = { + [aux_sym_concatenation_repeat1] = STATE(543), + [sym_file_descriptor] = ACTIONS(1353), + [sym__concat] = ACTIONS(1011), + [sym_variable_name] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_GT] = ACTIONS(1355), + [anon_sym_GT_GT] = ACTIONS(1353), + [anon_sym_AMP_GT] = ACTIONS(1355), + [anon_sym_AMP_GT_GT] = ACTIONS(1353), + [anon_sym_LT_AMP] = ACTIONS(1353), + [anon_sym_GT_AMP] = ACTIONS(1353), + [sym__special_characters] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_DOLLAR] = ACTIONS(1355), + [sym_raw_string] = ACTIONS(1353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1353), + [anon_sym_BQUOTE] = ACTIONS(1353), + [anon_sym_LT_LPAREN] = ACTIONS(1353), + [anon_sym_GT_LPAREN] = ACTIONS(1353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1353), + }, + [240] = { + [aux_sym_concatenation_repeat1] = STATE(543), + [sym_file_descriptor] = ACTIONS(1357), + [sym__concat] = ACTIONS(1011), + [sym_variable_name] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1357), + [anon_sym_AMP_GT] = ACTIONS(1359), + [anon_sym_AMP_GT_GT] = ACTIONS(1357), + [anon_sym_LT_AMP] = ACTIONS(1357), + [anon_sym_GT_AMP] = ACTIONS(1357), + [sym__special_characters] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [anon_sym_DOLLAR] = ACTIONS(1359), + [sym_raw_string] = ACTIONS(1357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1357), + [anon_sym_BQUOTE] = ACTIONS(1357), + [anon_sym_LT_LPAREN] = ACTIONS(1357), + [anon_sym_GT_LPAREN] = ACTIONS(1357), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1357), + }, + [241] = { + [sym_file_descriptor] = ACTIONS(1357), + [sym_variable_name] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1357), + [anon_sym_AMP_GT] = ACTIONS(1359), + [anon_sym_AMP_GT_GT] = ACTIONS(1357), + [anon_sym_LT_AMP] = ACTIONS(1357), + [anon_sym_GT_AMP] = ACTIONS(1357), + [sym__special_characters] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [anon_sym_DOLLAR] = ACTIONS(1359), + [sym_raw_string] = ACTIONS(1357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1357), + [anon_sym_BQUOTE] = ACTIONS(1357), + [anon_sym_LT_LPAREN] = ACTIONS(1357), + [anon_sym_GT_LPAREN] = ACTIONS(1357), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1357), + }, + [242] = { + [aux_sym_concatenation_repeat1] = STATE(655), + [sym__concat] = ACTIONS(1361), + [anon_sym_RBRACK] = ACTIONS(1363), + [sym_comment] = ACTIONS(57), + }, + [243] = { + [aux_sym_concatenation_repeat1] = STATE(655), + [sym__concat] = ACTIONS(1365), + [anon_sym_RBRACK] = ACTIONS(1367), + [sym_comment] = ACTIONS(57), + }, + [244] = { + [sym__concat] = ACTIONS(1369), + [anon_sym_RBRACK] = ACTIONS(1367), + [sym_comment] = ACTIONS(57), + }, + [245] = { + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym_variable_name] = ACTIONS(1371), + [ts_builtin_sym_end] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [246] = { + [sym_concatenation] = STATE(668), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(668), + [anon_sym_RPAREN] = ACTIONS(1375), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [247] = { + [aux_sym_concatenation_repeat1] = STATE(670), + [sym__simple_heredoc_body] = ACTIONS(1393), + [sym__heredoc_body_beginning] = ACTIONS(1393), + [sym_file_descriptor] = ACTIONS(1393), + [sym__concat] = ACTIONS(1395), + [sym_variable_name] = ACTIONS(1393), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_SEMI_SEMI] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_AMP_GT] = ACTIONS(1397), + [anon_sym_AMP_GT_GT] = ACTIONS(1393), + [anon_sym_LT_AMP] = ACTIONS(1393), + [anon_sym_GT_AMP] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_LT_LT_DASH] = ACTIONS(1393), + [anon_sym_LT_LT_LT] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1397), + [sym_raw_string] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1393), + [anon_sym_GT_LPAREN] = ACTIONS(1393), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1397), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1397), + }, + [248] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(673), + [anon_sym_DQUOTE] = ACTIONS(1399), + [anon_sym_DOLLAR] = ACTIONS(1401), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [249] = { + [sym_string] = STATE(675), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_DQUOTE] = ACTIONS(447), + [anon_sym_DOLLAR] = ACTIONS(1403), + [sym_raw_string] = ACTIONS(1405), + [anon_sym_POUND] = ACTIONS(1403), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_AT] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(1409), + [anon_sym_0] = ACTIONS(1407), + [anon_sym__] = ACTIONS(1407), + }, + [250] = { + [aux_sym_concatenation_repeat1] = STATE(670), + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym__concat] = ACTIONS(1395), + [sym_variable_name] = ACTIONS(1371), + [ts_builtin_sym_end] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [251] = { + [sym_subscript] = STATE(680), + [sym_variable_name] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_DOLLAR] = ACTIONS(1415), + [anon_sym_POUND] = ACTIONS(1413), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_AT] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_0] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1417), + }, + [252] = { + [sym__statements] = STATE(681), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [253] = { + [sym__statements] = STATE(682), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [254] = { + [sym__statements] = STATE(683), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [255] = { + [sym__expression] = STATE(685), + [sym_binary_expression] = STATE(685), + [sym_unary_expression] = STATE(685), + [sym_postfix_expression] = STATE(685), + [sym_parenthesized_expression] = STATE(685), + [sym_concatenation] = STATE(685), + [sym_string] = STATE(261), + [sym_simple_expansion] = STATE(261), + [sym_string_expansion] = STATE(261), + [sym_expansion] = STATE(261), + [sym_command_substitution] = STATE(261), + [sym_process_substitution] = STATE(261), + [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym_SEMI_SEMI] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(467), + [sym__special_characters] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(473), + [sym_raw_string] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_LT_LPAREN] = ACTIONS(483), + [anon_sym_GT_LPAREN] = ACTIONS(483), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(485), + [sym_test_operator] = ACTIONS(487), + [anon_sym_LF] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1423), + }, + [256] = { + [sym__expression] = STATE(686), + [sym_binary_expression] = STATE(686), + [sym_unary_expression] = STATE(686), + [sym_postfix_expression] = STATE(686), + [sym_parenthesized_expression] = STATE(686), + [sym_concatenation] = STATE(686), + [sym_string] = STATE(274), + [sym_simple_expansion] = STATE(274), + [sym_string_expansion] = STATE(274), + [sym_expansion] = STATE(274), + [sym_command_substitution] = STATE(274), + [sym_process_substitution] = STATE(274), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(497), + [sym__special_characters] = ACTIONS(499), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), + }, + [257] = { + [sym__expression] = STATE(687), + [sym_binary_expression] = STATE(687), + [sym_unary_expression] = STATE(687), + [sym_postfix_expression] = STATE(687), + [sym_parenthesized_expression] = STATE(687), + [sym_concatenation] = STATE(687), + [sym_string] = STATE(261), + [sym_simple_expansion] = STATE(261), + [sym_string_expansion] = STATE(261), + [sym_expansion] = STATE(261), + [sym_command_substitution] = STATE(261), + [sym_process_substitution] = STATE(261), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(467), + [sym__special_characters] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(473), + [sym_raw_string] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_LT_LPAREN] = ACTIONS(483), + [anon_sym_GT_LPAREN] = ACTIONS(483), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(485), + [sym_test_operator] = ACTIONS(487), + }, + [258] = { + [aux_sym_concatenation_repeat1] = STATE(689), + [sym__concat] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(523), + [anon_sym_SEMI_SEMI] = ACTIONS(521), + [anon_sym_AMP_AMP] = ACTIONS(521), + [anon_sym_PIPE_PIPE] = ACTIONS(521), + [anon_sym_EQ_TILDE] = ACTIONS(521), + [anon_sym_EQ_EQ] = ACTIONS(521), + [anon_sym_EQ] = ACTIONS(523), + [anon_sym_PLUS_EQ] = ACTIONS(521), + [anon_sym_LT] = ACTIONS(523), + [anon_sym_GT] = ACTIONS(523), + [anon_sym_BANG_EQ] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DASH] = ACTIONS(523), + [anon_sym_DASH_EQ] = ACTIONS(521), + [anon_sym_LT_EQ] = ACTIONS(521), + [anon_sym_GT_EQ] = ACTIONS(521), + [anon_sym_PLUS_PLUS] = ACTIONS(521), + [anon_sym_DASH_DASH] = ACTIONS(521), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(521), + [anon_sym_LF] = ACTIONS(521), + [anon_sym_AMP] = ACTIONS(523), + }, + [259] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(692), + [anon_sym_DQUOTE] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(1429), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [260] = { + [sym_string] = STATE(694), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(1431), + [sym_raw_string] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(1431), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_0] = ACTIONS(1435), + [anon_sym__] = ACTIONS(1435), + }, + [261] = { + [aux_sym_concatenation_repeat1] = STATE(689), + [sym__concat] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(539), + [anon_sym_SEMI_SEMI] = ACTIONS(537), + [anon_sym_AMP_AMP] = ACTIONS(537), + [anon_sym_PIPE_PIPE] = ACTIONS(537), + [anon_sym_EQ_TILDE] = ACTIONS(537), + [anon_sym_EQ_EQ] = ACTIONS(537), + [anon_sym_EQ] = ACTIONS(539), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_LT] = ACTIONS(539), + [anon_sym_GT] = ACTIONS(539), + [anon_sym_BANG_EQ] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(539), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_EQ] = ACTIONS(537), + [anon_sym_GT_EQ] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(537), + [anon_sym_LF] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(539), + }, + [262] = { + [sym_subscript] = STATE(699), + [sym_variable_name] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(1443), + [anon_sym_POUND] = ACTIONS(1441), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1447), + [anon_sym_QMARK] = ACTIONS(1447), + [anon_sym_0] = ACTIONS(1445), + [anon_sym__] = ACTIONS(1445), + }, + [263] = { + [sym__statements] = STATE(700), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [264] = { + [sym__statements] = STATE(701), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [265] = { + [sym__statements] = STATE(702), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [266] = { + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_SEMI_SEMI] = ACTIONS(1451), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_PLUS_EQ] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1453), + [anon_sym_LF] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), + }, + [267] = { + [sym_concatenation] = STATE(715), + [sym_string] = STATE(710), + [sym_simple_expansion] = STATE(710), + [sym_string_expansion] = STATE(710), + [sym_expansion] = STATE(710), + [sym_command_substitution] = STATE(710), + [sym_process_substitution] = STATE(710), + [aux_sym_for_statement_repeat1] = STATE(715), + [sym__special_characters] = ACTIONS(1461), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_DOLLAR] = ACTIONS(1465), + [sym_raw_string] = ACTIONS(1467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1469), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1473), + [anon_sym_LT_LPAREN] = ACTIONS(1475), + [anon_sym_GT_LPAREN] = ACTIONS(1475), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1467), + }, + [268] = { + [sym_do_group] = STATE(716), + [anon_sym_do] = ACTIONS(643), + [sym_comment] = ACTIONS(57), + }, + [269] = { + [sym__expression] = STATE(717), + [sym_binary_expression] = STATE(717), + [sym_unary_expression] = STATE(717), + [sym_postfix_expression] = STATE(717), + [sym_parenthesized_expression] = STATE(717), + [sym_concatenation] = STATE(717), + [sym_string] = STATE(274), + [sym_simple_expansion] = STATE(274), + [sym_string_expansion] = STATE(274), + [sym_expansion] = STATE(274), + [sym_command_substitution] = STATE(274), + [sym_process_substitution] = STATE(274), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(497), + [sym__special_characters] = ACTIONS(499), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), + }, + [270] = { + [sym__expression] = STATE(718), + [sym_binary_expression] = STATE(718), + [sym_unary_expression] = STATE(718), + [sym_postfix_expression] = STATE(718), + [sym_parenthesized_expression] = STATE(718), + [sym_concatenation] = STATE(718), + [sym_string] = STATE(274), + [sym_simple_expansion] = STATE(274), + [sym_string_expansion] = STATE(274), + [sym_expansion] = STATE(274), + [sym_command_substitution] = STATE(274), + [sym_process_substitution] = STATE(274), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(497), + [sym__special_characters] = ACTIONS(499), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), + }, + [271] = { + [aux_sym_concatenation_repeat1] = STATE(720), + [sym__concat] = ACTIONS(1477), + [anon_sym_RPAREN] = ACTIONS(521), + [anon_sym_AMP_AMP] = ACTIONS(521), + [anon_sym_PIPE_PIPE] = ACTIONS(521), + [anon_sym_EQ_TILDE] = ACTIONS(521), + [anon_sym_EQ_EQ] = ACTIONS(521), + [anon_sym_EQ] = ACTIONS(523), + [anon_sym_PLUS_EQ] = ACTIONS(521), + [anon_sym_LT] = ACTIONS(523), + [anon_sym_GT] = ACTIONS(523), + [anon_sym_BANG_EQ] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DASH] = ACTIONS(523), + [anon_sym_DASH_EQ] = ACTIONS(521), + [anon_sym_LT_EQ] = ACTIONS(521), + [anon_sym_GT_EQ] = ACTIONS(521), + [anon_sym_PLUS_PLUS] = ACTIONS(521), + [anon_sym_DASH_DASH] = ACTIONS(521), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(521), + }, + [272] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(723), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_DOLLAR] = ACTIONS(1481), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [273] = { + [sym_string] = STATE(725), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(1483), + [sym_raw_string] = ACTIONS(1485), + [anon_sym_POUND] = ACTIONS(1483), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1487), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(1489), + [anon_sym_QMARK] = ACTIONS(1489), + [anon_sym_0] = ACTIONS(1487), + [anon_sym__] = ACTIONS(1487), + }, + [274] = { + [aux_sym_concatenation_repeat1] = STATE(720), + [sym__concat] = ACTIONS(1477), + [anon_sym_RPAREN] = ACTIONS(537), + [anon_sym_AMP_AMP] = ACTIONS(537), + [anon_sym_PIPE_PIPE] = ACTIONS(537), + [anon_sym_EQ_TILDE] = ACTIONS(537), + [anon_sym_EQ_EQ] = ACTIONS(537), + [anon_sym_EQ] = ACTIONS(539), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_LT] = ACTIONS(539), + [anon_sym_GT] = ACTIONS(539), + [anon_sym_BANG_EQ] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(539), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_EQ] = ACTIONS(537), + [anon_sym_GT_EQ] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(537), + }, + [275] = { + [sym_subscript] = STATE(730), + [sym_variable_name] = ACTIONS(1491), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1495), + [anon_sym_DOLLAR] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(1493), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_QMARK] = ACTIONS(1499), + [anon_sym_0] = ACTIONS(1497), + [anon_sym__] = ACTIONS(1497), + }, + [276] = { + [sym__statements] = STATE(731), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [277] = { + [sym__statements] = STATE(732), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [278] = { + [sym__statements] = STATE(733), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [279] = { + [anon_sym_RPAREN] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_PIPE_PIPE] = ACTIONS(1503), + [anon_sym_EQ_TILDE] = ACTIONS(1505), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1507), + [anon_sym_GT] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1503), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1503), + [anon_sym_LT_EQ] = ACTIONS(1503), + [anon_sym_GT_EQ] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1503), + }, + [280] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(1511), + [anon_sym_AMP_AMP] = ACTIONS(553), + [anon_sym_PIPE_PIPE] = ACTIONS(553), + [anon_sym_EQ_TILDE] = ACTIONS(555), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_PLUS_EQ] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_DASH_EQ] = ACTIONS(553), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(553), + }, + [281] = { + [sym_string] = STATE(738), + [sym_simple_expansion] = STATE(738), + [sym_string_expansion] = STATE(738), + [sym_expansion] = STATE(738), + [sym_command_substitution] = STATE(738), + [sym_process_substitution] = STATE(738), + [sym__special_characters] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [sym_raw_string] = ACTIONS(1513), + [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(1513), + }, + [282] = { + [aux_sym_concatenation_repeat1] = STATE(739), + [sym__concat] = ACTIONS(519), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_EQ_TILDE] = ACTIONS(1043), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_PLUS_EQ] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_DASH_EQ] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_PLUS_PLUS] = ACTIONS(1043), + [anon_sym_DASH_DASH] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1043), + }, + [283] = { + [sym__concat] = ACTIONS(1047), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(1049), + [anon_sym_PLUS_EQ] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_DASH_EQ] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1047), + }, + [284] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [285] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_DOLLAR] = ACTIONS(1517), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [286] = { + [sym__concat] = ACTIONS(1081), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1081), + [anon_sym_EQ_EQ] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(1083), + [anon_sym_PLUS_EQ] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_BANG_EQ] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_DASH_EQ] = ACTIONS(1081), + [anon_sym_LT_EQ] = ACTIONS(1081), + [anon_sym_GT_EQ] = ACTIONS(1081), + [anon_sym_PLUS_PLUS] = ACTIONS(1081), + [anon_sym_DASH_DASH] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1081), + }, + [287] = { + [sym__concat] = ACTIONS(1085), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1085), + [anon_sym_EQ_TILDE] = ACTIONS(1085), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_EQ] = ACTIONS(1087), + [anon_sym_PLUS_EQ] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_DASH_EQ] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1085), + [anon_sym_GT_EQ] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1085), + }, + [288] = { + [sym__concat] = ACTIONS(1089), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_EQ] = ACTIONS(1091), + [anon_sym_PLUS_EQ] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_DASH_EQ] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1089), + }, + [289] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1519), + [sym_comment] = ACTIONS(57), + }, + [290] = { + [sym_subscript] = STATE(745), + [sym_variable_name] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_DOLLAR] = ACTIONS(1523), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_AT] = ACTIONS(1527), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_0] = ACTIONS(1525), + [anon_sym__] = ACTIONS(1525), + }, + [291] = { + [sym_concatenation] = STATE(748), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(748), + [anon_sym_RBRACE] = ACTIONS(1529), + [anon_sym_EQ] = ACTIONS(1531), + [anon_sym_DASH] = ACTIONS(1531), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(1533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1535), + [anon_sym_COLON] = ACTIONS(1531), + [anon_sym_COLON_QMARK] = ACTIONS(1531), + [anon_sym_COLON_DASH] = ACTIONS(1531), + [anon_sym_PERCENT] = ACTIONS(1531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [292] = { + [sym_concatenation] = STATE(751), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(751), + [anon_sym_RBRACE] = ACTIONS(1537), + [anon_sym_EQ] = ACTIONS(1539), + [anon_sym_DASH] = ACTIONS(1539), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(1541), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1543), + [anon_sym_COLON] = ACTIONS(1539), + [anon_sym_COLON_QMARK] = ACTIONS(1539), + [anon_sym_COLON_DASH] = ACTIONS(1539), + [anon_sym_PERCENT] = ACTIONS(1539), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [293] = { + [anon_sym_RPAREN] = ACTIONS(1545), + [sym_comment] = ACTIONS(57), + }, + [294] = { + [anon_sym_BQUOTE] = ACTIONS(1545), + [sym_comment] = ACTIONS(57), + }, + [295] = { + [anon_sym_RPAREN] = ACTIONS(1547), + [sym_comment] = ACTIONS(57), + }, + [296] = { + [sym__simple_heredoc_body] = ACTIONS(1549), + [sym__heredoc_body_beginning] = ACTIONS(1549), + [sym_file_descriptor] = ACTIONS(1549), + [ts_builtin_sym_end] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_done] = ACTIONS(1549), + [anon_sym_fi] = ACTIONS(1549), + [anon_sym_elif] = ACTIONS(1549), + [anon_sym_else] = ACTIONS(1549), + [anon_sym_esac] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1549), + [anon_sym_SEMI_SEMI] = ACTIONS(1549), + [anon_sym_PIPE_AMP] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1549), + [anon_sym_PIPE_PIPE] = ACTIONS(1549), + [anon_sym_LT] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_GT_GT] = ACTIONS(1549), + [anon_sym_AMP_GT] = ACTIONS(1551), + [anon_sym_AMP_GT_GT] = ACTIONS(1549), + [anon_sym_LT_AMP] = ACTIONS(1549), + [anon_sym_GT_AMP] = ACTIONS(1549), + [anon_sym_LT_LT] = ACTIONS(1551), + [anon_sym_LT_LT_DASH] = ACTIONS(1549), + [anon_sym_LT_LT_LT] = ACTIONS(1549), + [anon_sym_BQUOTE] = ACTIONS(1549), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1551), + }, + [297] = { + [sym__expression] = STATE(754), + [sym_binary_expression] = STATE(754), + [sym_unary_expression] = STATE(754), + [sym_postfix_expression] = STATE(754), + [sym_parenthesized_expression] = STATE(754), + [sym_concatenation] = STATE(754), + [sym_string] = STATE(46), + [sym_simple_expansion] = STATE(46), + [sym_string_expansion] = STATE(46), + [sym_expansion] = STATE(46), + [sym_command_substitution] = STATE(46), + [sym_process_substitution] = STATE(46), + [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), + }, + [298] = { + [sym__expression] = STATE(754), + [sym_binary_expression] = STATE(754), + [sym_unary_expression] = STATE(754), + [sym_postfix_expression] = STATE(754), + [sym_parenthesized_expression] = STATE(754), + [sym_concatenation] = STATE(754), + [sym_string] = STATE(46), + [sym_simple_expansion] = STATE(46), + [sym_string_expansion] = STATE(46), + [sym_expansion] = STATE(46), + [sym_command_substitution] = STATE(46), + [sym_process_substitution] = STATE(46), + [sym_regex] = ACTIONS(1553), + [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), + }, + [299] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(1555), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_PIPE_PIPE] = ACTIONS(1555), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1555), + [anon_sym_EQ_TILDE] = ACTIONS(1555), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_EQ] = ACTIONS(1557), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_GT] = ACTIONS(1557), + [anon_sym_BANG_EQ] = ACTIONS(1555), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1555), + }, + [300] = { + [sym_concatenation] = STATE(756), + [sym_string] = STATE(761), + [sym_array] = STATE(756), + [sym_simple_expansion] = STATE(761), + [sym_string_expansion] = STATE(761), + [sym_expansion] = STATE(761), + [sym_command_substitution] = STATE(761), + [sym_process_substitution] = STATE(761), + [sym__empty_value] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1561), + [sym__special_characters] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1567), + [sym_raw_string] = ACTIONS(1569), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1571), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1573), + [anon_sym_BQUOTE] = ACTIONS(1575), + [anon_sym_LT_LPAREN] = ACTIONS(1577), + [anon_sym_GT_LPAREN] = ACTIONS(1577), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1569), + }, + [301] = { + [sym__expression] = STATE(767), + [sym_binary_expression] = STATE(767), + [sym_unary_expression] = STATE(767), + [sym_postfix_expression] = STATE(767), + [sym_parenthesized_expression] = STATE(767), + [sym_concatenation] = STATE(767), + [sym_string] = STATE(261), + [sym_simple_expansion] = STATE(261), + [sym_string_expansion] = STATE(261), + [sym_expansion] = STATE(261), + [sym_command_substitution] = STATE(261), + [sym_process_substitution] = STATE(261), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI_SEMI] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(467), + [sym__special_characters] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(473), + [sym_raw_string] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_LT_LPAREN] = ACTIONS(483), + [anon_sym_GT_LPAREN] = ACTIONS(483), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(485), + [sym_test_operator] = ACTIONS(487), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_AMP] = ACTIONS(1581), + }, + [302] = { + [anon_sym_in] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_SEMI_SEMI] = ACTIONS(1587), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + }, + [303] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(553), + [anon_sym_PIPE_PIPE] = ACTIONS(553), + [anon_sym_EQ_TILDE] = ACTIONS(555), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_PLUS_EQ] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_DASH_EQ] = ACTIONS(553), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(553), + }, + [304] = { + [sym_do_group] = STATE(772), + [anon_sym_do] = ACTIONS(1591), + [sym_comment] = ACTIONS(57), + }, + [305] = { + [anon_sym_then] = ACTIONS(1593), + [sym_comment] = ACTIONS(57), + }, + [306] = { + [aux_sym_concatenation_repeat1] = STATE(371), + [sym__concat] = ACTIONS(679), + [anon_sym_in] = ACTIONS(1595), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_SEMI_SEMI] = ACTIONS(1599), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1599), + }, + [307] = { + [aux_sym_concatenation_repeat1] = STATE(371), + [sym__concat] = ACTIONS(679), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_SEMI_SEMI] = ACTIONS(1605), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1605), + [anon_sym_AMP] = ACTIONS(1605), + }, + [308] = { + [anon_sym_in] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_SEMI_SEMI] = ACTIONS(1605), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1605), + [anon_sym_AMP] = ACTIONS(1605), + }, + [309] = { + [sym_compound_statement] = STATE(779), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(113), + [sym_comment] = ACTIONS(57), + }, + [310] = { + [anon_sym_RPAREN] = ACTIONS(1609), + [sym_comment] = ACTIONS(57), + }, + [311] = { + [sym_file_descriptor] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_SEMI_SEMI] = ACTIONS(777), + [anon_sym_PIPE_AMP] = ACTIONS(777), + [anon_sym_AMP_AMP] = ACTIONS(777), + [anon_sym_PIPE_PIPE] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(779), + [anon_sym_GT] = ACTIONS(779), + [anon_sym_GT_GT] = ACTIONS(777), + [anon_sym_AMP_GT] = ACTIONS(779), + [anon_sym_AMP_GT_GT] = ACTIONS(777), + [anon_sym_LT_AMP] = ACTIONS(777), + [anon_sym_GT_AMP] = ACTIONS(777), + [anon_sym_LT_LT] = ACTIONS(779), + [anon_sym_LT_LT_DASH] = ACTIONS(777), + [anon_sym_LT_LT_LT] = ACTIONS(777), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(777), + [anon_sym_AMP] = ACTIONS(779), + }, + [312] = { + [anon_sym_RBRACE] = ACTIONS(1611), + [sym_comment] = ACTIONS(57), + }, + [313] = { + [sym_file_descriptor] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_SEMI_SEMI] = ACTIONS(889), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(889), + [anon_sym_PIPE_PIPE] = ACTIONS(889), + [anon_sym_LT] = ACTIONS(891), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_GT_GT] = ACTIONS(889), + [anon_sym_AMP_GT] = ACTIONS(891), + [anon_sym_AMP_GT_GT] = ACTIONS(889), + [anon_sym_LT_AMP] = ACTIONS(889), + [anon_sym_GT_AMP] = ACTIONS(889), + [anon_sym_LT_LT] = ACTIONS(891), + [anon_sym_LT_LT_DASH] = ACTIONS(889), + [anon_sym_LT_LT_LT] = ACTIONS(889), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + }, + [314] = { + [anon_sym_AMP_AMP] = ACTIONS(917), + [anon_sym_PIPE_PIPE] = ACTIONS(917), + [anon_sym_RBRACK] = ACTIONS(1589), + [anon_sym_EQ_TILDE] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(921), + [anon_sym_GT] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(917), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(923), + [anon_sym_DASH_DASH] = ACTIONS(923), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(917), + }, + [315] = { + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1589), + [anon_sym_EQ_TILDE] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_DASH_EQ] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(925), + }, + [316] = { + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(1613), + [anon_sym_PLUS_EQ] = ACTIONS(1613), + [sym_comment] = ACTIONS(57), + }, + [317] = { + [aux_sym_concatenation_repeat1] = STATE(784), + [sym_file_descriptor] = ACTIONS(933), + [sym__concat] = ACTIONS(1615), + [sym_variable_name] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(937), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(937), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(937), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [sym__special_characters] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(937), + [sym_raw_string] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(937), + [sym_word] = ACTIONS(937), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(937), + }, + [318] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(787), + [anon_sym_DQUOTE] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(1619), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [319] = { + [sym_string] = STATE(789), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_DQUOTE] = ACTIONS(579), + [anon_sym_DOLLAR] = ACTIONS(1621), + [sym_raw_string] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(1621), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_AT] = ACTIONS(1627), + [anon_sym_QMARK] = ACTIONS(1627), + [anon_sym_0] = ACTIONS(1625), + [anon_sym__] = ACTIONS(1625), + }, + [320] = { + [aux_sym_concatenation_repeat1] = STATE(784), + [sym_file_descriptor] = ACTIONS(951), + [sym__concat] = ACTIONS(1615), + [sym_variable_name] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_SEMI_SEMI] = ACTIONS(951), + [anon_sym_PIPE_AMP] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_LT] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(953), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_AMP_GT] = ACTIONS(953), + [anon_sym_AMP_GT_GT] = ACTIONS(951), + [anon_sym_LT_AMP] = ACTIONS(951), + [anon_sym_GT_AMP] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(953), + [anon_sym_LT_LT_DASH] = ACTIONS(951), + [anon_sym_LT_LT_LT] = ACTIONS(951), + [sym__special_characters] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(953), + [sym_raw_string] = ACTIONS(951), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(951), + [anon_sym_BQUOTE] = ACTIONS(951), + [anon_sym_LT_LPAREN] = ACTIONS(951), + [anon_sym_GT_LPAREN] = ACTIONS(951), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(953), + [sym_word] = ACTIONS(953), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_AMP] = ACTIONS(953), + }, + [321] = { + [sym_subscript] = STATE(794), + [sym_variable_name] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1633), + [anon_sym_POUND] = ACTIONS(1631), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1635), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1637), + [anon_sym_QMARK] = ACTIONS(1637), + [anon_sym_0] = ACTIONS(1635), + [anon_sym__] = ACTIONS(1635), + }, + [322] = { + [sym__statements] = STATE(795), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [323] = { + [sym__statements] = STATE(796), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [324] = { + [sym__statements] = STATE(797), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [325] = { + [anon_sym_EQ] = ACTIONS(1613), + [anon_sym_PLUS_EQ] = ACTIONS(1613), + [sym_comment] = ACTIONS(57), + }, + [326] = { + [sym_variable_assignment] = STATE(798), + [sym_subscript] = STATE(325), + [sym_concatenation] = STATE(798), + [sym_string] = STATE(320), + [sym_simple_expansion] = STATE(320), + [sym_string_expansion] = STATE(320), + [sym_expansion] = STATE(320), + [sym_command_substitution] = STATE(320), + [sym_process_substitution] = STATE(320), + [aux_sym_declaration_command_repeat1] = STATE(798), + [sym_file_descriptor] = ACTIONS(965), + [sym_variable_name] = ACTIONS(575), + [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_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(577), + [anon_sym_DQUOTE] = ACTIONS(579), + [anon_sym_DOLLAR] = ACTIONS(581), + [sym_raw_string] = ACTIONS(583), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(587), + [anon_sym_BQUOTE] = ACTIONS(589), + [anon_sym_LT_LPAREN] = ACTIONS(591), + [anon_sym_GT_LPAREN] = ACTIONS(591), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1639), + [sym_word] = ACTIONS(595), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + }, + [327] = { + [aux_sym_concatenation_repeat1] = STATE(800), + [sym_file_descriptor] = ACTIONS(971), + [sym__concat] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [sym__special_characters] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(975), + [sym_word] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(975), + }, + [328] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(803), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1645), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [329] = { + [sym_string] = STATE(805), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(1647), + [sym_raw_string] = ACTIONS(1649), + [anon_sym_POUND] = ACTIONS(1647), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1653), + [anon_sym_AT] = ACTIONS(1653), + [anon_sym_QMARK] = ACTIONS(1653), + [anon_sym_0] = ACTIONS(1651), + [anon_sym__] = ACTIONS(1651), + }, + [330] = { + [aux_sym_concatenation_repeat1] = STATE(800), + [sym_file_descriptor] = ACTIONS(989), + [sym__concat] = ACTIONS(1641), + [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(991), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_AMP_GT] = ACTIONS(991), + [anon_sym_AMP_GT_GT] = ACTIONS(989), + [anon_sym_LT_AMP] = ACTIONS(989), + [anon_sym_GT_AMP] = ACTIONS(989), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_LT_LT_DASH] = ACTIONS(989), + [anon_sym_LT_LT_LT] = ACTIONS(989), + [sym__special_characters] = ACTIONS(989), + [anon_sym_DQUOTE] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(991), + [sym_raw_string] = ACTIONS(989), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(989), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(989), + [anon_sym_LT_LPAREN] = ACTIONS(989), + [anon_sym_GT_LPAREN] = ACTIONS(989), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(991), + [sym_word] = ACTIONS(991), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [331] = { + [sym_subscript] = STATE(810), + [sym_variable_name] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(1657), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_AT] = ACTIONS(1663), + [anon_sym_QMARK] = ACTIONS(1663), + [anon_sym_0] = ACTIONS(1661), + [anon_sym__] = ACTIONS(1661), + }, + [332] = { + [sym__statements] = STATE(811), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [333] = { + [sym__statements] = STATE(812), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [334] = { + [sym__statements] = STATE(813), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [335] = { + [sym_concatenation] = STATE(814), + [sym_string] = STATE(330), + [sym_simple_expansion] = STATE(330), + [sym_string_expansion] = STATE(330), + [sym_expansion] = STATE(330), + [sym_command_substitution] = STATE(330), + [sym_process_substitution] = STATE(330), + [aux_sym_unset_command_repeat1] = STATE(814), + [sym_file_descriptor] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_SEMI_SEMI] = ACTIONS(1003), + [anon_sym_PIPE_AMP] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_AMP_GT] = ACTIONS(1005), + [anon_sym_AMP_GT_GT] = ACTIONS(1003), + [anon_sym_LT_AMP] = ACTIONS(1003), + [anon_sym_GT_AMP] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_LT_LT_DASH] = ACTIONS(1003), + [anon_sym_LT_LT_LT] = ACTIONS(1003), + [sym__special_characters] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(601), + [sym_raw_string] = ACTIONS(603), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(605), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(607), + [anon_sym_BQUOTE] = ACTIONS(609), + [anon_sym_LT_LPAREN] = ACTIONS(611), + [anon_sym_GT_LPAREN] = ACTIONS(611), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1665), + [sym_word] = ACTIONS(615), + [anon_sym_LF] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1005), + }, + [336] = { + [sym_string] = STATE(815), + [sym_simple_expansion] = STATE(815), + [sym_string_expansion] = STATE(815), + [sym_expansion] = STATE(815), + [sym_command_substitution] = STATE(815), + [sym_process_substitution] = STATE(815), + [sym__special_characters] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(1667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1667), + }, + [337] = { + [aux_sym_concatenation_repeat1] = STATE(816), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_EQ_TILDE] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [338] = { + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1049), + [anon_sym_EQ_EQ] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [339] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [340] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1671), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [341] = { + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1083), + [anon_sym_EQ_EQ] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [342] = { + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = 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_EQ_TILDE] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1087), + [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), + }, + [343] = { [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(1113), - [sym_variable_name] = ACTIONS(1089), - [ts_builtin_sym_end] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), [anon_sym_SEMI] = ACTIONS(1091), [anon_sym_PIPE] = ACTIONS(1091), [anon_sym_SEMI_SEMI] = ACTIONS(1089), [anon_sym_PIPE_AMP] = ACTIONS(1089), [anon_sym_AMP_AMP] = ACTIONS(1089), [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1091), + [anon_sym_EQ_EQ] = ACTIONS(1091), [anon_sym_LT] = ACTIONS(1091), [anon_sym_GT] = ACTIONS(1091), [anon_sym_GT_GT] = ACTIONS(1089), @@ -14873,6779 +22271,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1089), [anon_sym_AMP] = ACTIONS(1091), }, - [202] = { - [sym_subscript] = STATE(556), - [sym_variable_name] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1131), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1135), - [anon_sym_STAR] = ACTIONS(1137), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_QMARK] = ACTIONS(1137), - [anon_sym_0] = ACTIONS(1135), - [anon_sym__] = ACTIONS(1135), - }, - [203] = { - [sym__terminated_statement] = STATE(559), - [sym_redirected_statement] = STATE(557), - [sym_for_statement] = STATE(557), - [sym_c_style_for_statement] = STATE(557), - [sym_while_statement] = STATE(557), - [sym_if_statement] = STATE(557), - [sym_case_statement] = STATE(557), - [sym_function_definition] = STATE(557), - [sym_compound_statement] = STATE(557), - [sym_subshell] = STATE(557), - [sym_pipeline] = STATE(557), - [sym_list] = STATE(557), - [sym_negated_command] = STATE(557), - [sym_test_command] = STATE(557), - [sym_declaration_command] = STATE(557), - [sym_unset_command] = STATE(557), - [sym_command] = STATE(557), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(558), - [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(559), - [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), - }, - [204] = { - [sym__terminated_statement] = STATE(562), - [sym_redirected_statement] = STATE(560), - [sym_for_statement] = STATE(560), - [sym_c_style_for_statement] = STATE(560), - [sym_while_statement] = STATE(560), - [sym_if_statement] = STATE(560), - [sym_case_statement] = STATE(560), - [sym_function_definition] = STATE(560), - [sym_compound_statement] = STATE(560), - [sym_subshell] = STATE(560), - [sym_pipeline] = STATE(560), - [sym_list] = STATE(560), - [sym_negated_command] = STATE(560), - [sym_test_command] = STATE(560), - [sym_declaration_command] = STATE(560), - [sym_unset_command] = STATE(560), - [sym_command] = STATE(560), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(561), - [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(562), - [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] = { - [sym__terminated_statement] = STATE(565), - [sym_redirected_statement] = STATE(563), - [sym_for_statement] = STATE(563), - [sym_c_style_for_statement] = STATE(563), - [sym_while_statement] = STATE(563), - [sym_if_statement] = STATE(563), - [sym_case_statement] = STATE(563), - [sym_function_definition] = STATE(563), - [sym_compound_statement] = STATE(563), - [sym_subshell] = STATE(563), - [sym_pipeline] = STATE(563), - [sym_list] = STATE(563), - [sym_negated_command] = STATE(563), - [sym_test_command] = STATE(563), - [sym_declaration_command] = STATE(563), - [sym_unset_command] = STATE(563), - [sym_command] = STATE(563), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(564), - [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(565), - [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__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_SEMI] = ACTIONS(1139), - [anon_sym_SEMI_SEMI] = ACTIONS(1141), - [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(1141), - [anon_sym_AMP] = ACTIONS(1141), - }, - [207] = { - [sym__expression] = STATE(568), - [sym_binary_expression] = STATE(568), - [sym_unary_expression] = STATE(568), - [sym_postfix_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_concatenation] = STATE(568), - [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__expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_postfix_expression] = STATE(569), - [sym_parenthesized_expression] = STATE(569), - [sym_concatenation] = STATE(569), - [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(571), - [sym__concat] = ACTIONS(1143), - [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(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(574), - [anon_sym_DQUOTE] = ACTIONS(1145), - [anon_sym_DOLLAR] = ACTIONS(1147), - [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(576), - [anon_sym_DASH] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1149), - [sym_raw_string] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1149), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_AT] = ACTIONS(1155), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_0] = ACTIONS(1153), - [anon_sym__] = ACTIONS(1153), - }, - [212] = { - [aux_sym_concatenation_repeat1] = STATE(571), - [sym__concat] = ACTIONS(1143), - [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(581), - [sym_variable_name] = ACTIONS(1157), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_DOLLAR] = ACTIONS(1161), - [anon_sym_POUND] = ACTIONS(1159), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(1165), - [anon_sym_AT] = ACTIONS(1165), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_0] = ACTIONS(1163), - [anon_sym__] = ACTIONS(1163), - }, - [214] = { - [sym__terminated_statement] = STATE(584), - [sym_redirected_statement] = STATE(582), - [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_compound_statement] = 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(83), - [sym_variable_assignment] = STATE(583), - [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(584), - [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), - }, - [215] = { - [sym__terminated_statement] = STATE(587), - [sym_redirected_statement] = STATE(585), - [sym_for_statement] = STATE(585), - [sym_c_style_for_statement] = STATE(585), - [sym_while_statement] = STATE(585), - [sym_if_statement] = STATE(585), - [sym_case_statement] = STATE(585), - [sym_function_definition] = STATE(585), - [sym_compound_statement] = STATE(585), - [sym_subshell] = STATE(585), - [sym_pipeline] = STATE(585), - [sym_list] = STATE(585), - [sym_negated_command] = STATE(585), - [sym_test_command] = STATE(585), - [sym_declaration_command] = STATE(585), - [sym_unset_command] = STATE(585), - [sym_command] = STATE(585), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(586), - [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(587), - [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), - }, - [216] = { - [sym__terminated_statement] = STATE(590), - [sym_redirected_statement] = STATE(588), - [sym_for_statement] = STATE(588), - [sym_c_style_for_statement] = STATE(588), - [sym_while_statement] = STATE(588), - [sym_if_statement] = STATE(588), - [sym_case_statement] = STATE(588), - [sym_function_definition] = STATE(588), - [sym_compound_statement] = STATE(588), - [sym_subshell] = STATE(588), - [sym_pipeline] = STATE(588), - [sym_list] = STATE(588), - [sym_negated_command] = STATE(588), - [sym_test_command] = STATE(588), - [sym_declaration_command] = STATE(588), - [sym_unset_command] = STATE(588), - [sym_command] = STATE(588), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(589), - [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(590), - [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), - }, - [217] = { - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym_SEMI_SEMI] = ACTIONS(1169), - [anon_sym_AMP_AMP] = ACTIONS(1171), - [anon_sym_PIPE_PIPE] = ACTIONS(1171), - [anon_sym_EQ_TILDE] = ACTIONS(1173), - [anon_sym_EQ_EQ] = ACTIONS(1173), - [anon_sym_EQ] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1171), - [anon_sym_LT] = ACTIONS(1175), - [anon_sym_GT] = ACTIONS(1175), - [anon_sym_BANG_EQ] = ACTIONS(1171), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_DASH_EQ] = ACTIONS(1171), - [anon_sym_LT_EQ] = ACTIONS(1171), - [anon_sym_GT_EQ] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1177), - [anon_sym_DASH_DASH] = ACTIONS(1177), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1171), - [anon_sym_LF] = ACTIONS(1169), - [anon_sym_AMP] = ACTIONS(1167), - }, - [218] = { - [sym_concatenation] = STATE(603), - [sym_string] = STATE(598), - [sym_simple_expansion] = STATE(598), - [sym_string_expansion] = STATE(598), - [sym_expansion] = STATE(598), - [sym_command_substitution] = STATE(598), - [sym_process_substitution] = STATE(598), - [aux_sym_for_statement_repeat1] = STATE(603), - [sym__special_characters] = ACTIONS(1179), - [anon_sym_DQUOTE] = ACTIONS(1181), - [anon_sym_DOLLAR] = ACTIONS(1183), - [sym_raw_string] = ACTIONS(1185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1187), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1189), - [anon_sym_BQUOTE] = ACTIONS(1191), - [anon_sym_LT_LPAREN] = ACTIONS(1193), - [anon_sym_GT_LPAREN] = ACTIONS(1193), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1185), - }, - [219] = { - [sym_do_group] = STATE(604), - [anon_sym_do] = ACTIONS(493), - [sym_comment] = ACTIONS(57), - }, - [220] = { - [sym__expression] = STATE(605), - [sym_binary_expression] = STATE(605), - [sym_unary_expression] = STATE(605), - [sym_postfix_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(605), - [sym_concatenation] = STATE(605), - [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__expression] = STATE(606), - [sym_binary_expression] = STATE(606), - [sym_unary_expression] = STATE(606), - [sym_postfix_expression] = STATE(606), - [sym_parenthesized_expression] = STATE(606), - [sym_concatenation] = STATE(606), - [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] = { - [aux_sym_concatenation_repeat1] = STATE(608), - [sym__concat] = ACTIONS(1195), - [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] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(611), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_DOLLAR] = ACTIONS(1199), - [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_string] = STATE(613), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(1201), - [sym_raw_string] = ACTIONS(1203), - [anon_sym_POUND] = ACTIONS(1201), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1205), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_AT] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_0] = ACTIONS(1205), - [anon_sym__] = ACTIONS(1205), - }, - [225] = { - [aux_sym_concatenation_repeat1] = STATE(608), - [sym__concat] = ACTIONS(1195), - [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_subscript] = STATE(618), - [sym_variable_name] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_DOLLAR] = ACTIONS(1213), - [anon_sym_POUND] = ACTIONS(1211), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1215), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_AT] = ACTIONS(1217), - [anon_sym_QMARK] = ACTIONS(1217), - [anon_sym_0] = ACTIONS(1215), - [anon_sym__] = ACTIONS(1215), - }, - [227] = { - [sym__terminated_statement] = STATE(621), - [sym_redirected_statement] = STATE(619), - [sym_for_statement] = STATE(619), - [sym_c_style_for_statement] = STATE(619), - [sym_while_statement] = STATE(619), - [sym_if_statement] = STATE(619), - [sym_case_statement] = STATE(619), - [sym_function_definition] = STATE(619), - [sym_compound_statement] = STATE(619), - [sym_subshell] = STATE(619), - [sym_pipeline] = STATE(619), - [sym_list] = STATE(619), - [sym_negated_command] = STATE(619), - [sym_test_command] = STATE(619), - [sym_declaration_command] = STATE(619), - [sym_unset_command] = STATE(619), - [sym_command] = STATE(619), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(620), - [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(621), - [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), - }, - [228] = { - [sym__terminated_statement] = STATE(624), - [sym_redirected_statement] = STATE(622), - [sym_for_statement] = STATE(622), - [sym_c_style_for_statement] = STATE(622), - [sym_while_statement] = STATE(622), - [sym_if_statement] = STATE(622), - [sym_case_statement] = STATE(622), - [sym_function_definition] = STATE(622), - [sym_compound_statement] = STATE(622), - [sym_subshell] = STATE(622), - [sym_pipeline] = STATE(622), - [sym_list] = STATE(622), - [sym_negated_command] = STATE(622), - [sym_test_command] = STATE(622), - [sym_declaration_command] = STATE(622), - [sym_unset_command] = STATE(622), - [sym_command] = STATE(622), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(623), - [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(624), - [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__terminated_statement] = STATE(627), - [sym_redirected_statement] = STATE(625), - [sym_for_statement] = STATE(625), - [sym_c_style_for_statement] = STATE(625), - [sym_while_statement] = STATE(625), - [sym_if_statement] = STATE(625), - [sym_case_statement] = STATE(625), - [sym_function_definition] = STATE(625), - [sym_compound_statement] = STATE(625), - [sym_subshell] = STATE(625), - [sym_pipeline] = STATE(625), - [sym_list] = STATE(625), - [sym_negated_command] = STATE(625), - [sym_test_command] = STATE(625), - [sym_declaration_command] = STATE(625), - [sym_unset_command] = STATE(625), - [sym_command] = STATE(625), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(626), - [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(627), - [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] = { - [anon_sym_RPAREN] = ACTIONS(1219), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_EQ_TILDE] = ACTIONS(1223), - [anon_sym_EQ_EQ] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1225), - [anon_sym_PLUS_EQ] = ACTIONS(1221), - [anon_sym_LT] = ACTIONS(1225), - [anon_sym_GT] = ACTIONS(1225), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_DASH_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1221), - }, - [231] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(1229), - [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_string] = STATE(632), - [sym_simple_expansion] = STATE(632), - [sym_string_expansion] = STATE(632), - [sym_expansion] = STATE(632), - [sym_command_substitution] = STATE(632), - [sym_process_substitution] = STATE(632), - [sym__special_characters] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DOLLAR] = ACTIONS(81), - [sym_raw_string] = ACTIONS(1231), - [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(1231), - }, - [233] = { - [aux_sym_concatenation_repeat1] = STATE(633), - [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__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] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(1233), - [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] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(455), - [anon_sym_DQUOTE] = ACTIONS(1233), - [anon_sym_DOLLAR] = ACTIONS(1235), - [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__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__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__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] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(1237), - [sym_comment] = ACTIONS(57), - }, - [241] = { - [sym_subscript] = STATE(639), - [sym_variable_name] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_DOLLAR] = ACTIONS(1241), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_AT] = ACTIONS(1245), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_0] = ACTIONS(1243), - [anon_sym__] = ACTIONS(1243), - }, - [242] = { - [sym_concatenation] = STATE(642), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(642), - [anon_sym_RBRACE] = ACTIONS(1247), - [anon_sym_EQ] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1249), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1251), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(1249), - [anon_sym_COLON_QMARK] = ACTIONS(1249), - [anon_sym_COLON_DASH] = ACTIONS(1249), - [anon_sym_PERCENT] = ACTIONS(1249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(645), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(645), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1259), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_COLON_QMARK] = ACTIONS(1257), - [anon_sym_COLON_DASH] = ACTIONS(1257), - [anon_sym_PERCENT] = ACTIONS(1257), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(648), - [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(1263), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1265), - [anon_sym_SEMI_SEMI] = ACTIONS(1267), - [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(1267), - [anon_sym_AMP] = ACTIONS(1263), - }, - [245] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(648), - [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(1263), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1265), - [anon_sym_SEMI_SEMI] = ACTIONS(1267), - [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(1267), - [anon_sym_AMP] = ACTIONS(1263), - }, - [246] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(649), - [sym_for_statement] = STATE(649), - [sym_c_style_for_statement] = STATE(649), - [sym_while_statement] = STATE(649), - [sym_if_statement] = STATE(649), - [sym_case_statement] = STATE(649), - [sym_function_definition] = STATE(649), - [sym_compound_statement] = STATE(649), - [sym_subshell] = STATE(649), - [sym_pipeline] = STATE(649), - [sym_list] = STATE(649), - [sym_negated_command] = STATE(649), - [sym_test_command] = STATE(649), - [sym_declaration_command] = STATE(649), - [sym_unset_command] = STATE(649), - [sym_command] = STATE(649), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(650), - [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), - }, - [247] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(652), - [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(1269), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(1271), - [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(1265), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(1269), - }, - [248] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(652), - [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(1269), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(1271), - [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(1265), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(1269), - }, - [249] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(653), - [sym_for_statement] = STATE(653), - [sym_c_style_for_statement] = STATE(653), - [sym_while_statement] = STATE(653), - [sym_if_statement] = STATE(653), - [sym_case_statement] = STATE(653), - [sym_function_definition] = STATE(653), - [sym_compound_statement] = STATE(653), - [sym_subshell] = STATE(653), - [sym_pipeline] = STATE(653), - [sym_list] = STATE(653), - [sym_negated_command] = STATE(653), - [sym_test_command] = STATE(653), - [sym_declaration_command] = STATE(653), - [sym_unset_command] = STATE(653), - [sym_command] = STATE(653), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(654), - [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(657), - [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(1273), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1275), - [anon_sym_SEMI_SEMI] = ACTIONS(1277), - [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(1277), - [anon_sym_AMP] = ACTIONS(1273), - }, - [251] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(657), - [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(1273), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1275), - [anon_sym_SEMI_SEMI] = ACTIONS(1277), - [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(1277), - [anon_sym_AMP] = ACTIONS(1273), - }, - [252] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(658), - [sym_for_statement] = STATE(658), - [sym_c_style_for_statement] = STATE(658), - [sym_while_statement] = STATE(658), - [sym_if_statement] = STATE(658), - [sym_case_statement] = STATE(658), - [sym_function_definition] = STATE(658), - [sym_compound_statement] = STATE(658), - [sym_subshell] = STATE(658), - [sym_pipeline] = STATE(658), - [sym_list] = STATE(658), - [sym_negated_command] = STATE(658), - [sym_test_command] = STATE(658), - [sym_declaration_command] = STATE(658), - [sym_unset_command] = STATE(658), - [sym_command] = STATE(658), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(659), - [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(1279), - [sym__heredoc_body_beginning] = ACTIONS(1279), - [sym_file_descriptor] = ACTIONS(1279), - [ts_builtin_sym_end] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym_esac] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_RPAREN] = ACTIONS(1279), - [anon_sym_SEMI_SEMI] = ACTIONS(1279), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_GT_GT] = ACTIONS(1279), - [anon_sym_AMP_GT] = ACTIONS(1281), - [anon_sym_AMP_GT_GT] = ACTIONS(1279), - [anon_sym_LT_AMP] = ACTIONS(1279), - [anon_sym_GT_AMP] = ACTIONS(1279), - [anon_sym_LT_LT] = ACTIONS(1281), - [anon_sym_LT_LT_DASH] = ACTIONS(1279), - [anon_sym_LT_LT_LT] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1281), - }, - [254] = { - [sym__expression] = STATE(660), - [sym_binary_expression] = STATE(660), - [sym_unary_expression] = STATE(660), - [sym_postfix_expression] = STATE(660), - [sym_parenthesized_expression] = STATE(660), - [sym_concatenation] = STATE(660), - [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(660), - [sym_binary_expression] = STATE(660), - [sym_unary_expression] = STATE(660), - [sym_postfix_expression] = STATE(660), - [sym_parenthesized_expression] = STATE(660), - [sym_concatenation] = STATE(660), - [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(1283), - [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(1285), - [anon_sym_AMP_AMP] = ACTIONS(1285), - [anon_sym_PIPE_PIPE] = ACTIONS(1285), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1285), - [anon_sym_EQ_TILDE] = ACTIONS(1285), - [anon_sym_EQ_EQ] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1287), - [anon_sym_PLUS_EQ] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1287), - [anon_sym_GT] = ACTIONS(1287), - [anon_sym_BANG_EQ] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(1287), - [anon_sym_DASH_EQ] = ACTIONS(1285), - [anon_sym_LT_EQ] = ACTIONS(1285), - [anon_sym_GT_EQ] = ACTIONS(1285), - [anon_sym_PLUS_PLUS] = ACTIONS(1285), - [anon_sym_DASH_DASH] = ACTIONS(1285), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1285), - }, - [257] = { - [sym_concatenation] = STATE(196), - [sym_string] = STATE(663), - [sym_array] = STATE(196), - [sym_simple_expansion] = STATE(663), - [sym_string_expansion] = STATE(663), - [sym_expansion] = STATE(663), - [sym_command_substitution] = STATE(663), - [sym_process_substitution] = STATE(663), - [sym__empty_value] = ACTIONS(353), - [anon_sym_LPAREN] = ACTIONS(355), - [sym__special_characters] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(361), - [sym_raw_string] = ACTIONS(1291), - [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(1291), - }, - [258] = { - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_EQ] = ACTIONS(1293), - [anon_sym_PLUS_EQ] = ACTIONS(1293), - [sym_comment] = ACTIONS(57), - }, - [259] = { - [aux_sym_concatenation_repeat1] = STATE(665), - [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] = { - [aux_sym_concatenation_repeat1] = STATE(665), - [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(1293), - [anon_sym_PLUS_EQ] = ACTIONS(1293), - [sym_comment] = ACTIONS(57), - }, - [262] = { - [sym_variable_assignment] = STATE(666), - [sym_subscript] = STATE(261), - [sym_concatenation] = STATE(666), - [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(666), - [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(1295), - [sym_word] = ACTIONS(483), - [anon_sym_LF] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(703), - }, - [263] = { - [aux_sym_concatenation_repeat1] = STATE(667), - [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(667), - [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(668), - [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(668), - [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(1297), - [sym_word] = ACTIONS(491), - [anon_sym_LF] = ACTIONS(739), - [anon_sym_AMP] = ACTIONS(741), - }, - [266] = { - [aux_sym_concatenation_repeat1] = STATE(669), - [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(671), - [sym_redirected_statement] = STATE(526), - [sym_for_statement] = STATE(526), - [sym_c_style_for_statement] = STATE(526), - [sym_while_statement] = STATE(526), - [sym_if_statement] = STATE(526), - [sym_case_statement] = STATE(526), - [sym_function_definition] = STATE(526), - [sym_compound_statement] = STATE(526), - [sym_subshell] = STATE(526), - [sym_pipeline] = STATE(526), - [sym_list] = STATE(526), - [sym_negated_command] = STATE(526), - [sym_test_command] = STATE(526), - [sym_declaration_command] = STATE(526), - [sym_unset_command] = STATE(526), - [sym_command] = STATE(526), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(527), - [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(671), - [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(1299), - [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(1301), - [sym__heredoc_body_beginning] = ACTIONS(1301), - [sym_file_descriptor] = ACTIONS(1301), - [ts_builtin_sym_end] = ACTIONS(1301), - [anon_sym_SEMI] = ACTIONS(1303), - [anon_sym_esac] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1303), - [anon_sym_RPAREN] = ACTIONS(1301), - [anon_sym_SEMI_SEMI] = ACTIONS(1301), - [anon_sym_PIPE_AMP] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1303), - [anon_sym_GT] = ACTIONS(1303), - [anon_sym_GT_GT] = ACTIONS(1301), - [anon_sym_AMP_GT] = ACTIONS(1303), - [anon_sym_AMP_GT_GT] = ACTIONS(1301), - [anon_sym_LT_AMP] = ACTIONS(1301), - [anon_sym_GT_AMP] = ACTIONS(1301), - [anon_sym_LT_LT] = ACTIONS(1303), - [anon_sym_LT_LT_DASH] = ACTIONS(1301), - [anon_sym_LT_LT_LT] = ACTIONS(1301), - [anon_sym_BQUOTE] = ACTIONS(1301), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1303), - }, - [269] = { - [anon_sym_LT] = ACTIONS(1305), - [anon_sym_GT] = ACTIONS(1305), - [anon_sym_GT_GT] = ACTIONS(1307), - [anon_sym_AMP_GT] = ACTIONS(1305), - [anon_sym_AMP_GT_GT] = ACTIONS(1307), - [anon_sym_LT_AMP] = ACTIONS(1307), - [anon_sym_GT_AMP] = ACTIONS(1307), - [sym_comment] = ACTIONS(57), - }, - [270] = { - [anon_sym_do] = ACTIONS(931), - [anon_sym_then] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - }, - [271] = { - [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), - }, - [272] = { - [sym_redirected_statement] = STATE(675), - [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_compound_statement] = 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(60), - [sym_variable_assignment] = STATE(676), - [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] = { - [sym_concatenation] = STATE(513), - [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), - }, - [274] = { - [sym_concatenation] = STATE(517), - [sym_string] = STATE(680), - [sym_simple_expansion] = STATE(680), - [sym_string_expansion] = STATE(680), - [sym_expansion] = STATE(680), - [sym_command_substitution] = STATE(680), - [sym_process_substitution] = STATE(680), - [sym__special_characters] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(43), - [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(1315), - [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(1315), - }, - [275] = { - [anon_sym_SEMI] = ACTIONS(1317), - [anon_sym_SEMI_SEMI] = ACTIONS(1319), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - }, - [276] = { - [sym_file_redirect] = STATE(682), - [sym_heredoc_redirect] = STATE(682), - [sym_herestring_redirect] = STATE(682), - [aux_sym_redirected_statement_repeat1] = STATE(682), - [sym__simple_heredoc_body] = ACTIONS(951), - [sym__heredoc_body_beginning] = ACTIONS(951), - [sym_file_descriptor] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_PIPE] = ACTIONS(953), - [anon_sym_SEMI_SEMI] = ACTIONS(951), - [anon_sym_PIPE_AMP] = ACTIONS(951), - [anon_sym_AMP_AMP] = ACTIONS(951), - [anon_sym_PIPE_PIPE] = ACTIONS(951), - [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(951), - [anon_sym_AMP] = ACTIONS(953), - }, - [277] = { - [sym_concatenation] = STATE(520), - [sym_string] = STATE(684), - [sym_simple_expansion] = STATE(684), - [sym_string_expansion] = STATE(684), - [sym_expansion] = STATE(684), - [sym_command_substitution] = STATE(684), - [sym_process_substitution] = STATE(684), - [sym_regex] = ACTIONS(955), - [sym__special_characters] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(43), - [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(1323), - [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(1323), - }, - [278] = { - [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), - }, - [279] = { - [aux_sym_concatenation_repeat1] = STATE(266), - [sym__simple_heredoc_body] = ACTIONS(965), - [sym__heredoc_body_beginning] = ACTIONS(965), - [sym_file_descriptor] = ACTIONS(965), - [sym__concat] = ACTIONS(249), - [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(967), - [anon_sym_EQ_EQ] = ACTIONS(967), - [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(965), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_DOLLAR] = ACTIONS(967), - [sym_raw_string] = ACTIONS(965), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(965), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(965), - [anon_sym_BQUOTE] = ACTIONS(965), - [anon_sym_LT_LPAREN] = ACTIONS(965), - [anon_sym_GT_LPAREN] = ACTIONS(965), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(965), - [anon_sym_AMP] = ACTIONS(967), - }, - [280] = { - [sym_concatenation] = STATE(685), - [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(685), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__heredoc_body_beginning] = ACTIONS(969), - [sym_file_descriptor] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(969), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_EQ_TILDE] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_AMP_GT_GT] = ACTIONS(969), - [anon_sym_LT_AMP] = ACTIONS(969), - [anon_sym_GT_AMP] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(969), - [anon_sym_LT_LT_LT] = ACTIONS(969), - [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(969), - [anon_sym_AMP] = ACTIONS(971), - }, - [281] = { - [sym_concatenation] = STATE(686), - [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(686), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__heredoc_body_beginning] = ACTIONS(969), - [sym_file_descriptor] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(969), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_EQ_TILDE] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_AMP_GT_GT] = ACTIONS(969), - [anon_sym_LT_AMP] = ACTIONS(969), - [anon_sym_GT_AMP] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(969), - [anon_sym_LT_LT_LT] = ACTIONS(969), - [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(969), - [anon_sym_AMP] = ACTIONS(971), - }, - [282] = { - [sym__terminated_statement] = STATE(691), - [sym_redirected_statement] = STATE(526), - [sym_for_statement] = STATE(526), - [sym_c_style_for_statement] = STATE(526), - [sym_while_statement] = STATE(526), - [sym_if_statement] = STATE(526), - [sym_elif_clause] = STATE(692), - [sym_else_clause] = STATE(690), - [sym_case_statement] = STATE(526), - [sym_function_definition] = STATE(526), - [sym_compound_statement] = STATE(526), - [sym_subshell] = STATE(526), - [sym_pipeline] = STATE(526), - [sym_list] = STATE(526), - [sym_negated_command] = STATE(526), - [sym_test_command] = STATE(526), - [sym_declaration_command] = STATE(526), - [sym_unset_command] = STATE(526), - [sym_command] = STATE(526), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(527), - [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(691), - [aux_sym_if_statement_repeat1] = STATE(692), - [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(1325), - [anon_sym_elif] = ACTIONS(1327), - [anon_sym_else] = ACTIONS(1329), - [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] = { - [sym_string] = STATE(693), - [sym_simple_expansion] = STATE(693), - [sym_string_expansion] = STATE(693), - [sym_expansion] = STATE(693), - [sym_command_substitution] = STATE(693), - [sym_process_substitution] = STATE(693), - [sym__special_characters] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR] = ACTIONS(115), - [sym_raw_string] = ACTIONS(1331), - [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(1331), - }, - [284] = { - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_SEMI_SEMI] = ACTIONS(1335), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - }, - [285] = { - [anon_sym_in] = ACTIONS(1337), - [sym_comment] = ACTIONS(57), - }, - [286] = { - [aux_sym_concatenation_repeat1] = STATE(696), - [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__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] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(1339), - [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] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(455), - [anon_sym_DQUOTE] = ACTIONS(1339), - [anon_sym_DOLLAR] = ACTIONS(1341), - [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__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__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__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] = { - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_SEMI_SEMI] = ACTIONS(1345), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1345), - }, - [294] = { - [anon_sym_in] = ACTIONS(1347), - [sym_comment] = ACTIONS(57), - }, - [295] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(1349), - [sym_comment] = ACTIONS(57), - }, - [296] = { - [sym_subscript] = STATE(704), - [sym_variable_name] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(1353), - [anon_sym_DOLLAR] = ACTIONS(1353), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_AT] = ACTIONS(1357), - [anon_sym_QMARK] = ACTIONS(1357), - [anon_sym_0] = ACTIONS(1355), - [anon_sym__] = ACTIONS(1355), - }, - [297] = { - [sym_concatenation] = STATE(707), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(707), - [anon_sym_RBRACE] = ACTIONS(1359), - [anon_sym_EQ] = ACTIONS(1361), - [anon_sym_DASH] = ACTIONS(1361), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1363), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(1365), - [anon_sym_COLON] = ACTIONS(1361), - [anon_sym_COLON_QMARK] = ACTIONS(1361), - [anon_sym_COLON_DASH] = ACTIONS(1361), - [anon_sym_PERCENT] = ACTIONS(1361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(710), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(710), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_EQ] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(1373), - [anon_sym_COLON] = ACTIONS(1369), - [anon_sym_COLON_QMARK] = ACTIONS(1369), - [anon_sym_COLON_DASH] = ACTIONS(1369), - [anon_sym_PERCENT] = ACTIONS(1369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(713), - [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(1375), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1377), - [anon_sym_SEMI_SEMI] = ACTIONS(1379), - [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(1379), - [anon_sym_AMP] = ACTIONS(1375), - }, - [300] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(713), - [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(1375), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1377), - [anon_sym_SEMI_SEMI] = ACTIONS(1379), - [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(1379), - [anon_sym_AMP] = ACTIONS(1375), - }, - [301] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(714), - [sym_for_statement] = STATE(714), - [sym_c_style_for_statement] = STATE(714), - [sym_while_statement] = STATE(714), - [sym_if_statement] = STATE(714), - [sym_case_statement] = STATE(714), - [sym_function_definition] = STATE(714), - [sym_compound_statement] = STATE(714), - [sym_subshell] = STATE(714), - [sym_pipeline] = STATE(714), - [sym_list] = STATE(714), - [sym_negated_command] = STATE(714), - [sym_test_command] = STATE(714), - [sym_declaration_command] = STATE(714), - [sym_unset_command] = STATE(714), - [sym_command] = STATE(714), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(715), - [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] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(717), - [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(1381), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(1383), - [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(1377), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1381), - }, - [303] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(717), - [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(1381), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(1383), - [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(1377), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1381), - }, - [304] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(718), - [sym_for_statement] = STATE(718), - [sym_c_style_for_statement] = STATE(718), - [sym_while_statement] = STATE(718), - [sym_if_statement] = STATE(718), - [sym_case_statement] = STATE(718), - [sym_function_definition] = STATE(718), - [sym_compound_statement] = STATE(718), - [sym_subshell] = STATE(718), - [sym_pipeline] = STATE(718), - [sym_list] = STATE(718), - [sym_negated_command] = STATE(718), - [sym_test_command] = STATE(718), - [sym_declaration_command] = STATE(718), - [sym_unset_command] = STATE(718), - [sym_command] = STATE(718), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(719), - [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_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(722), - [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(1385), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1387), - [anon_sym_SEMI_SEMI] = ACTIONS(1389), - [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(1389), - [anon_sym_AMP] = ACTIONS(1385), - }, - [306] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(722), - [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(1385), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1387), - [anon_sym_SEMI_SEMI] = ACTIONS(1389), - [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(1389), - [anon_sym_AMP] = ACTIONS(1385), - }, - [307] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(723), - [sym_for_statement] = STATE(723), - [sym_c_style_for_statement] = STATE(723), - [sym_while_statement] = STATE(723), - [sym_if_statement] = STATE(723), - [sym_case_statement] = STATE(723), - [sym_function_definition] = STATE(723), - [sym_compound_statement] = STATE(723), - [sym_subshell] = STATE(723), - [sym_pipeline] = STATE(723), - [sym_list] = STATE(723), - [sym_negated_command] = STATE(723), - [sym_test_command] = STATE(723), - [sym_declaration_command] = STATE(723), - [sym_unset_command] = STATE(723), - [sym_command] = STATE(723), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(724), - [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] = { - [anon_sym_RPAREN] = ACTIONS(1391), - [sym_comment] = ACTIONS(57), - }, - [309] = { - [sym__simple_heredoc_body] = ACTIONS(1393), - [sym__heredoc_body_beginning] = ACTIONS(1393), - [sym_file_descriptor] = ACTIONS(1393), - [ts_builtin_sym_end] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_esac] = ACTIONS(1393), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_RPAREN] = ACTIONS(1393), - [anon_sym_SEMI_SEMI] = ACTIONS(1393), - [anon_sym_PIPE_AMP] = ACTIONS(1393), - [anon_sym_AMP_AMP] = ACTIONS(1393), - [anon_sym_PIPE_PIPE] = ACTIONS(1393), - [anon_sym_LT] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1393), - [anon_sym_AMP_GT] = ACTIONS(1395), - [anon_sym_AMP_GT_GT] = ACTIONS(1393), - [anon_sym_LT_AMP] = ACTIONS(1393), - [anon_sym_GT_AMP] = ACTIONS(1393), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_LT_LT_DASH] = ACTIONS(1393), - [anon_sym_LT_LT_LT] = ACTIONS(1393), - [anon_sym_BQUOTE] = ACTIONS(1393), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1393), - [anon_sym_AMP] = ACTIONS(1395), - }, - [310] = { - [sym_concatenation] = STATE(196), - [sym_string] = STATE(727), - [sym_array] = STATE(196), - [sym_simple_expansion] = STATE(727), - [sym_string_expansion] = STATE(727), - [sym_expansion] = STATE(727), - [sym_command_substitution] = STATE(727), - [sym_process_substitution] = STATE(727), - [sym__empty_value] = ACTIONS(353), - [anon_sym_LPAREN] = ACTIONS(355), - [sym__special_characters] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(361), - [sym_raw_string] = ACTIONS(1399), - [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(1399), - }, - [311] = { - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1401), - [sym_comment] = ACTIONS(57), - }, - [312] = { - [aux_sym_concatenation_repeat1] = STATE(729), - [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] = { - [aux_sym_concatenation_repeat1] = STATE(729), - [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] = { - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1401), - [sym_comment] = ACTIONS(57), - }, - [315] = { - [sym_variable_assignment] = STATE(730), - [sym_subscript] = STATE(314), - [sym_concatenation] = STATE(730), - [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(730), - [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(1403), - [sym_word] = ACTIONS(573), - [anon_sym_LF] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(703), - }, - [316] = { - [aux_sym_concatenation_repeat1] = STATE(731), - [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] = { - [aux_sym_concatenation_repeat1] = STATE(731), - [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] = { - [sym_concatenation] = STATE(732), - [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(732), - [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(1405), - [sym_word] = ACTIONS(581), - [anon_sym_LF] = ACTIONS(739), - [anon_sym_AMP] = ACTIONS(741), - }, - [319] = { - [aux_sym_concatenation_repeat1] = STATE(733), - [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] = { - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_GT] = ACTIONS(1407), - [anon_sym_GT_GT] = ACTIONS(1409), - [anon_sym_AMP_GT] = ACTIONS(1407), - [anon_sym_AMP_GT_GT] = ACTIONS(1409), - [anon_sym_LT_AMP] = ACTIONS(1409), - [anon_sym_GT_AMP] = ACTIONS(1409), - [sym_comment] = ACTIONS(57), - }, - [321] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [322] = { - [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), - }, - [323] = { - [sym__simple_heredoc_body] = ACTIONS(1413), - [sym__heredoc_body_beginning] = ACTIONS(1413), - [sym_file_descriptor] = ACTIONS(1413), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_esac] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_RPAREN] = ACTIONS(1413), - [anon_sym_SEMI_SEMI] = ACTIONS(1413), - [anon_sym_PIPE_AMP] = ACTIONS(1413), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE_PIPE] = ACTIONS(1413), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_GT_GT] = ACTIONS(1413), - [anon_sym_AMP_GT] = ACTIONS(1415), - [anon_sym_AMP_GT_GT] = ACTIONS(1413), - [anon_sym_LT_AMP] = ACTIONS(1413), - [anon_sym_GT_AMP] = ACTIONS(1413), - [anon_sym_LT_LT] = ACTIONS(1415), - [anon_sym_LT_LT_DASH] = ACTIONS(1413), - [anon_sym_LT_LT_LT] = ACTIONS(1413), - [anon_sym_BQUOTE] = ACTIONS(1413), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1415), - }, - [324] = { - [sym_redirected_statement] = STATE(738), - [sym_for_statement] = STATE(738), - [sym_c_style_for_statement] = STATE(738), - [sym_while_statement] = STATE(738), - [sym_if_statement] = STATE(738), - [sym_case_statement] = STATE(738), - [sym_function_definition] = STATE(738), - [sym_compound_statement] = STATE(738), - [sym_subshell] = STATE(738), - [sym_pipeline] = STATE(738), - [sym_list] = STATE(738), - [sym_negated_command] = STATE(738), - [sym_test_command] = STATE(738), - [sym_declaration_command] = STATE(738), - [sym_unset_command] = STATE(738), - [sym_command] = STATE(738), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(739), - [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_concatenation] = STATE(513), - [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), - }, - [326] = { - [sym_concatenation] = STATE(517), - [sym_string] = STATE(743), - [sym_simple_expansion] = STATE(743), - [sym_string_expansion] = STATE(743), - [sym_expansion] = STATE(743), - [sym_command_substitution] = STATE(743), - [sym_process_substitution] = STATE(743), - [sym__special_characters] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(43), - [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(1423), - [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(1423), - }, - [327] = { - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_SEMI_SEMI] = ACTIONS(1427), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1427), - }, - [328] = { - [sym_file_redirect] = STATE(745), - [sym_heredoc_redirect] = STATE(745), - [sym_herestring_redirect] = STATE(745), - [aux_sym_redirected_statement_repeat1] = STATE(745), - [sym__simple_heredoc_body] = ACTIONS(951), - [sym__heredoc_body_beginning] = ACTIONS(951), - [sym_file_descriptor] = ACTIONS(583), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_PIPE] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(951), - [anon_sym_SEMI_SEMI] = ACTIONS(951), - [anon_sym_PIPE_AMP] = ACTIONS(951), - [anon_sym_AMP_AMP] = ACTIONS(951), - [anon_sym_PIPE_PIPE] = ACTIONS(951), - [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(951), - [anon_sym_AMP] = ACTIONS(953), - }, - [329] = { - [sym_concatenation] = STATE(520), - [sym_string] = STATE(747), - [sym_simple_expansion] = STATE(747), - [sym_string_expansion] = STATE(747), - [sym_expansion] = STATE(747), - [sym_command_substitution] = STATE(747), - [sym_process_substitution] = STATE(747), - [sym_regex] = ACTIONS(955), - [sym__special_characters] = ACTIONS(1429), - [anon_sym_DQUOTE] = ACTIONS(43), - [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(1431), - [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(1431), - }, - [330] = { - [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), - }, - [331] = { - [aux_sym_concatenation_repeat1] = STATE(319), - [sym__simple_heredoc_body] = ACTIONS(965), - [sym__heredoc_body_beginning] = ACTIONS(965), - [sym_file_descriptor] = ACTIONS(965), - [sym__concat] = ACTIONS(249), - [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(967), - [anon_sym_EQ_EQ] = ACTIONS(967), - [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(965), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_DOLLAR] = ACTIONS(967), - [sym_raw_string] = ACTIONS(965), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(965), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(965), - [anon_sym_BQUOTE] = ACTIONS(965), - [anon_sym_LT_LPAREN] = ACTIONS(965), - [anon_sym_GT_LPAREN] = ACTIONS(965), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(965), - [anon_sym_AMP] = ACTIONS(967), - }, - [332] = { - [sym_concatenation] = STATE(748), - [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(748), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__heredoc_body_beginning] = ACTIONS(969), - [sym_file_descriptor] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_SEMI_SEMI] = ACTIONS(969), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_EQ_TILDE] = ACTIONS(603), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_AMP_GT_GT] = ACTIONS(969), - [anon_sym_LT_AMP] = ACTIONS(969), - [anon_sym_GT_AMP] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(969), - [anon_sym_LT_LT_LT] = ACTIONS(969), - [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(969), - [anon_sym_AMP] = ACTIONS(971), - }, - [333] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(750), - [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(1433), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_SEMI_SEMI] = ACTIONS(1435), - [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(1435), - [anon_sym_AMP] = ACTIONS(1433), - }, - [334] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(750), - [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(1433), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_SEMI_SEMI] = ACTIONS(1435), - [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(1435), - [anon_sym_AMP] = ACTIONS(1433), - }, - [335] = { - [sym_concatenation] = STATE(751), - [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(751), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__heredoc_body_beginning] = ACTIONS(969), - [sym_file_descriptor] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_SEMI_SEMI] = ACTIONS(969), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_EQ_TILDE] = ACTIONS(603), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_AMP_GT_GT] = ACTIONS(969), - [anon_sym_LT_AMP] = ACTIONS(969), - [anon_sym_GT_AMP] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(969), - [anon_sym_LT_LT_LT] = ACTIONS(969), - [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(969), - [anon_sym_AMP] = ACTIONS(971), - }, - [336] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [337] = { - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_SEMI_SEMI] = ACTIONS(1439), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1439), - }, - [338] = { - [sym__simple_heredoc_body] = ACTIONS(1441), - [sym__heredoc_body_beginning] = ACTIONS(1441), - [sym_file_descriptor] = ACTIONS(1441), - [ts_builtin_sym_end] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1443), - [anon_sym_esac] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(1443), - [anon_sym_RPAREN] = ACTIONS(1441), - [anon_sym_SEMI_SEMI] = ACTIONS(1441), - [anon_sym_PIPE_AMP] = ACTIONS(1441), - [anon_sym_AMP_AMP] = ACTIONS(1441), - [anon_sym_PIPE_PIPE] = ACTIONS(1441), - [anon_sym_LT] = ACTIONS(1443), - [anon_sym_GT] = ACTIONS(1443), - [anon_sym_GT_GT] = ACTIONS(1441), - [anon_sym_AMP_GT] = ACTIONS(1443), - [anon_sym_AMP_GT_GT] = ACTIONS(1441), - [anon_sym_LT_AMP] = ACTIONS(1441), - [anon_sym_GT_AMP] = ACTIONS(1441), - [anon_sym_LT_LT] = ACTIONS(1443), - [anon_sym_LT_LT_DASH] = ACTIONS(1441), - [anon_sym_LT_LT_LT] = ACTIONS(1441), - [anon_sym_BQUOTE] = ACTIONS(1441), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(1443), - }, - [339] = { - [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(977), - [sym_variable_name] = ACTIONS(980), - [anon_sym_for] = ACTIONS(983), - [anon_sym_LPAREN_LPAREN] = ACTIONS(986), - [anon_sym_while] = ACTIONS(989), - [anon_sym_if] = ACTIONS(992), - [anon_sym_case] = ACTIONS(995), - [anon_sym_function] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1013), - [anon_sym_declare] = ACTIONS(1016), - [anon_sym_typeset] = ACTIONS(1016), - [anon_sym_export] = ACTIONS(1016), - [anon_sym_readonly] = ACTIONS(1016), - [anon_sym_local] = ACTIONS(1016), - [anon_sym_unset] = ACTIONS(1019), - [anon_sym_unsetenv] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1022), - [anon_sym_GT] = ACTIONS(1022), - [anon_sym_GT_GT] = ACTIONS(1025), - [anon_sym_AMP_GT] = ACTIONS(1022), - [anon_sym_AMP_GT_GT] = ACTIONS(1025), - [anon_sym_LT_AMP] = ACTIONS(1025), - [anon_sym_GT_AMP] = ACTIONS(1025), - [sym__special_characters] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1034), - [sym_raw_string] = ACTIONS(1037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), - [anon_sym_BQUOTE] = ACTIONS(1046), - [anon_sym_LT_LPAREN] = ACTIONS(1049), - [anon_sym_GT_LPAREN] = ACTIONS(1049), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1052), - }, - [340] = { - [sym_concatenation] = STATE(753), - [sym_string] = STATE(756), - [sym_array] = STATE(753), - [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__empty_value] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1449), - [sym__special_characters] = ACTIONS(1451), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_DOLLAR] = ACTIONS(235), - [sym_raw_string] = ACTIONS(1453), - [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(1453), - }, - [341] = { - [anon_sym_RPAREN] = ACTIONS(1455), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_EQ_TILDE] = ACTIONS(1223), - [anon_sym_EQ_EQ] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1225), - [anon_sym_PLUS_EQ] = ACTIONS(1221), - [anon_sym_LT] = ACTIONS(1225), - [anon_sym_GT] = ACTIONS(1225), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_DASH_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1221), - }, - [342] = { - [anon_sym_AMP_AMP] = ACTIONS(653), - [anon_sym_PIPE_PIPE] = ACTIONS(653), - [anon_sym_RBRACK] = ACTIONS(1229), - [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_string] = STATE(758), - [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__special_characters] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(155), - [sym_raw_string] = ACTIONS(1457), - [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(1457), - }, [344] = { - [aux_sym_concatenation_repeat1] = STATE(759), - [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), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1673), [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(779), }, [345] = { - [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_subscript] = STATE(822), + [sym_variable_name] = ACTIONS(1675), + [anon_sym_DASH] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(1677), [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(783), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_AT] = ACTIONS(1681), + [anon_sym_QMARK] = ACTIONS(1681), + [anon_sym_0] = ACTIONS(1679), + [anon_sym__] = ACTIONS(1679), }, [346] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(1459), - [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), + [sym_concatenation] = STATE(825), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(825), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_EQ] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1685), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(1687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_COLON] = ACTIONS(1685), + [anon_sym_COLON_QMARK] = ACTIONS(1685), + [anon_sym_COLON_DASH] = ACTIONS(1685), + [anon_sym_PERCENT] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [347] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(455), - [anon_sym_DQUOTE] = ACTIONS(1459), - [anon_sym_DOLLAR] = ACTIONS(1461), - [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), + [sym_concatenation] = STATE(828), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(828), + [anon_sym_RBRACE] = ACTIONS(1691), + [anon_sym_EQ] = ACTIONS(1693), + [anon_sym_DASH] = ACTIONS(1693), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_COLON] = ACTIONS(1693), + [anon_sym_COLON_QMARK] = ACTIONS(1693), + [anon_sym_COLON_DASH] = ACTIONS(1693), + [anon_sym_PERCENT] = ACTIONS(1693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [348] = { - [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), + [anon_sym_RPAREN] = ACTIONS(1699), [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(817), }, [349] = { - [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), + [anon_sym_BQUOTE] = ACTIONS(1699), [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(821), }, [350] = { - [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), + [anon_sym_RPAREN] = ACTIONS(1701), [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(825), }, [351] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(1463), + [anon_sym_RPAREN] = ACTIONS(1703), [sym_comment] = ACTIONS(57), }, [352] = { - [sym_subscript] = STATE(765), - [sym_variable_name] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_DOLLAR] = ACTIONS(1467), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1471), - [anon_sym_AT] = ACTIONS(1471), - [anon_sym_QMARK] = ACTIONS(1471), - [anon_sym_0] = ACTIONS(1469), - [anon_sym__] = ACTIONS(1469), - }, - [353] = { - [sym_concatenation] = STATE(768), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(768), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_EQ] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1477), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1475), - [anon_sym_COLON_QMARK] = ACTIONS(1475), - [anon_sym_COLON_DASH] = ACTIONS(1475), - [anon_sym_PERCENT] = ACTIONS(1475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(771), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(771), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1485), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(1487), - [anon_sym_COLON] = ACTIONS(1483), - [anon_sym_COLON_QMARK] = ACTIONS(1483), - [anon_sym_COLON_DASH] = ACTIONS(1483), - [anon_sym_PERCENT] = ACTIONS(1483), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(774), - [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(1489), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1491), - [anon_sym_SEMI_SEMI] = ACTIONS(1493), - [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(1493), - [anon_sym_AMP] = ACTIONS(1489), - }, - [356] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(774), - [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(1489), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1491), - [anon_sym_SEMI_SEMI] = ACTIONS(1493), - [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(1493), - [anon_sym_AMP] = ACTIONS(1489), - }, - [357] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(775), - [sym_for_statement] = STATE(775), - [sym_c_style_for_statement] = STATE(775), - [sym_while_statement] = STATE(775), - [sym_if_statement] = STATE(775), - [sym_case_statement] = STATE(775), - [sym_function_definition] = STATE(775), - [sym_compound_statement] = STATE(775), - [sym_subshell] = STATE(775), - [sym_pipeline] = STATE(775), - [sym_list] = STATE(775), - [sym_negated_command] = STATE(775), - [sym_test_command] = STATE(775), - [sym_declaration_command] = STATE(775), - [sym_unset_command] = STATE(775), - [sym_command] = STATE(775), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(776), - [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_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(778), - [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(1495), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(1497), - [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(1491), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1495), - }, - [359] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(778), - [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(1495), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(1497), - [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(1491), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1495), - }, - [360] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(779), - [sym_for_statement] = STATE(779), - [sym_c_style_for_statement] = STATE(779), - [sym_while_statement] = STATE(779), - [sym_if_statement] = STATE(779), - [sym_case_statement] = STATE(779), - [sym_function_definition] = STATE(779), - [sym_compound_statement] = STATE(779), - [sym_subshell] = STATE(779), - [sym_pipeline] = STATE(779), - [sym_list] = STATE(779), - [sym_negated_command] = STATE(779), - [sym_test_command] = STATE(779), - [sym_declaration_command] = STATE(779), - [sym_unset_command] = STATE(779), - [sym_command] = STATE(779), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(780), - [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(783), - [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(1499), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1501), - [anon_sym_SEMI_SEMI] = ACTIONS(1503), - [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(1503), - [anon_sym_AMP] = ACTIONS(1499), - }, - [362] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(783), - [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(1499), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1501), - [anon_sym_SEMI_SEMI] = ACTIONS(1503), - [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(1503), - [anon_sym_AMP] = ACTIONS(1499), - }, - [363] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(784), - [sym_for_statement] = STATE(784), - [sym_c_style_for_statement] = STATE(784), - [sym_while_statement] = STATE(784), - [sym_if_statement] = STATE(784), - [sym_case_statement] = STATE(784), - [sym_function_definition] = STATE(784), - [sym_compound_statement] = STATE(784), - [sym_subshell] = STATE(784), - [sym_pipeline] = STATE(784), - [sym_list] = STATE(784), - [sym_negated_command] = STATE(784), - [sym_test_command] = STATE(784), - [sym_declaration_command] = STATE(784), - [sym_unset_command] = STATE(784), - [sym_command] = STATE(784), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(785), - [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(786), - [sym_binary_expression] = STATE(786), - [sym_unary_expression] = STATE(786), - [sym_postfix_expression] = STATE(786), - [sym_parenthesized_expression] = STATE(786), - [sym_concatenation] = STATE(786), - [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(786), - [sym_binary_expression] = STATE(786), - [sym_unary_expression] = STATE(786), - [sym_postfix_expression] = STATE(786), - [sym_parenthesized_expression] = STATE(786), - [sym_concatenation] = STATE(786), - [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(1505), - [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(1285), - [anon_sym_PIPE_PIPE] = ACTIONS(1285), - [anon_sym_RBRACK] = ACTIONS(1285), - [anon_sym_EQ_TILDE] = ACTIONS(1285), - [anon_sym_EQ_EQ] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1287), - [anon_sym_PLUS_EQ] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1287), - [anon_sym_GT] = ACTIONS(1287), - [anon_sym_BANG_EQ] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(1287), - [anon_sym_DASH_EQ] = ACTIONS(1285), - [anon_sym_LT_EQ] = ACTIONS(1285), - [anon_sym_GT_EQ] = ACTIONS(1285), - [anon_sym_PLUS_PLUS] = ACTIONS(1285), - [anon_sym_DASH_DASH] = ACTIONS(1285), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1285), - }, - [367] = { - [anon_sym_AMP_AMP] = ACTIONS(661), - [anon_sym_PIPE_PIPE] = ACTIONS(661), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1229), - [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(788), - [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(660), - [sym_binary_expression] = STATE(660), - [sym_unary_expression] = STATE(660), - [sym_postfix_expression] = STATE(660), - [sym_parenthesized_expression] = STATE(660), - [sym_concatenation] = STATE(660), - [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(660), - [sym_binary_expression] = STATE(660), - [sym_unary_expression] = STATE(660), - [sym_postfix_expression] = STATE(660), - [sym_parenthesized_expression] = STATE(660), - [sym_concatenation] = STATE(660), - [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(1283), - [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(789), - [sym_string] = STATE(792), - [sym_array] = STATE(789), - [sym_simple_expansion] = STATE(792), - [sym_string_expansion] = STATE(792), - [sym_expansion] = STATE(792), - [sym_command_substitution] = STATE(792), - [sym_process_substitution] = STATE(792), - [sym__empty_value] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1509), - [sym__special_characters] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(1513), - [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(1513), - }, - [372] = { - [sym_string] = STATE(793), - [sym_simple_expansion] = STATE(793), - [sym_string_expansion] = STATE(793), - [sym_expansion] = STATE(793), - [sym_command_substitution] = STATE(793), - [sym_process_substitution] = STATE(793), - [sym__special_characters] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(1515), - [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(1515), - }, - [373] = { - [aux_sym_concatenation_repeat1] = STATE(794), - [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__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] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(1517), - [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] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(455), - [anon_sym_DQUOTE] = ACTIONS(1517), - [anon_sym_DOLLAR] = ACTIONS(1519), - [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__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__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] = { - [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] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(1521), - [sym_comment] = ACTIONS(57), - }, - [381] = { - [sym_subscript] = STATE(800), - [sym_variable_name] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_DOLLAR] = ACTIONS(1525), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1529), - [anon_sym_AT] = ACTIONS(1529), - [anon_sym_QMARK] = ACTIONS(1529), - [anon_sym_0] = ACTIONS(1527), - [anon_sym__] = ACTIONS(1527), - }, - [382] = { - [sym_concatenation] = STATE(803), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(803), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_EQ] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1535), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_COLON] = ACTIONS(1533), - [anon_sym_COLON_QMARK] = ACTIONS(1533), - [anon_sym_COLON_DASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1533), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(806), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(806), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_EQ] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1543), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(1545), - [anon_sym_COLON] = ACTIONS(1541), - [anon_sym_COLON_QMARK] = ACTIONS(1541), - [anon_sym_COLON_DASH] = ACTIONS(1541), - [anon_sym_PERCENT] = ACTIONS(1541), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(809), - [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(1547), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1549), - [anon_sym_SEMI_SEMI] = ACTIONS(1551), - [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(1551), - [anon_sym_AMP] = ACTIONS(1547), - }, - [385] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(809), - [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(1547), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1549), - [anon_sym_SEMI_SEMI] = ACTIONS(1551), - [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(1551), - [anon_sym_AMP] = ACTIONS(1547), - }, - [386] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_c_style_for_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_case_statement] = STATE(810), - [sym_function_definition] = STATE(810), - [sym_compound_statement] = STATE(810), - [sym_subshell] = STATE(810), - [sym_pipeline] = STATE(810), - [sym_list] = STATE(810), - [sym_negated_command] = STATE(810), - [sym_test_command] = STATE(810), - [sym_declaration_command] = STATE(810), - [sym_unset_command] = STATE(810), - [sym_command] = STATE(810), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(811), - [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_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(813), - [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(1553), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(1555), - [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(1549), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1553), - }, - [388] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(813), - [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(1553), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(1555), - [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(1549), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1553), - }, - [389] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(814), - [sym_for_statement] = STATE(814), - [sym_c_style_for_statement] = STATE(814), - [sym_while_statement] = STATE(814), - [sym_if_statement] = STATE(814), - [sym_case_statement] = STATE(814), - [sym_function_definition] = STATE(814), - [sym_compound_statement] = STATE(814), - [sym_subshell] = STATE(814), - [sym_pipeline] = STATE(814), - [sym_list] = STATE(814), - [sym_negated_command] = STATE(814), - [sym_test_command] = STATE(814), - [sym_declaration_command] = STATE(814), - [sym_unset_command] = STATE(814), - [sym_command] = STATE(814), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(815), - [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_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(818), - [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(1557), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1559), - [anon_sym_SEMI_SEMI] = ACTIONS(1561), - [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(1561), - [anon_sym_AMP] = ACTIONS(1557), - }, - [391] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(818), - [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(1557), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1559), - [anon_sym_SEMI_SEMI] = ACTIONS(1561), - [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(1561), - [anon_sym_AMP] = ACTIONS(1557), - }, - [392] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(819), - [sym_for_statement] = STATE(819), - [sym_c_style_for_statement] = STATE(819), - [sym_while_statement] = STATE(819), - [sym_if_statement] = STATE(819), - [sym_case_statement] = STATE(819), - [sym_function_definition] = STATE(819), - [sym_compound_statement] = STATE(819), - [sym_subshell] = STATE(819), - [sym_pipeline] = STATE(819), - [sym_list] = STATE(819), - [sym_negated_command] = STATE(819), - [sym_test_command] = STATE(819), - [sym_declaration_command] = STATE(819), - [sym_unset_command] = STATE(819), - [sym_command] = STATE(819), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(820), - [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] = { - [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(1563), - [sym__heredoc_body_beginning] = ACTIONS(1563), - [sym_file_descriptor] = ACTIONS(1563), - [sym_variable_name] = ACTIONS(1565), - [ts_builtin_sym_end] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_SEMI_SEMI] = ACTIONS(1563), - [anon_sym_PIPE_AMP] = ACTIONS(1563), - [anon_sym_AMP_AMP] = ACTIONS(1563), - [anon_sym_PIPE_PIPE] = ACTIONS(1563), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_GT_GT] = ACTIONS(1563), - [anon_sym_AMP_GT] = ACTIONS(1568), - [anon_sym_AMP_GT_GT] = ACTIONS(1563), - [anon_sym_LT_AMP] = ACTIONS(1563), - [anon_sym_GT_AMP] = ACTIONS(1563), - [anon_sym_LT_LT] = ACTIONS(1568), - [anon_sym_LT_LT_DASH] = ACTIONS(1563), - [anon_sym_LT_LT_LT] = ACTIONS(1563), - [sym__special_characters] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_DOLLAR] = ACTIONS(1576), - [sym_raw_string] = ACTIONS(1579), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1582), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1585), - [anon_sym_BQUOTE] = ACTIONS(1588), - [anon_sym_LT_LPAREN] = ACTIONS(1591), - [anon_sym_GT_LPAREN] = ACTIONS(1591), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1594), - [sym_word] = ACTIONS(1597), - [anon_sym_LF] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1568), - }, - [394] = { - [sym_string] = STATE(821), - [sym_simple_expansion] = STATE(821), - [sym_string_expansion] = STATE(821), - [sym_expansion] = STATE(821), - [sym_command_substitution] = STATE(821), - [sym_process_substitution] = STATE(821), - [sym__special_characters] = ACTIONS(1600), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [sym_raw_string] = ACTIONS(1600), - [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(1600), - }, - [395] = { - [aux_sym_concatenation_repeat1] = STATE(822), - [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__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] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(1602), - [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] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(455), - [anon_sym_DQUOTE] = ACTIONS(1602), - [anon_sym_DOLLAR] = ACTIONS(1604), - [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__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__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__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_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(1606), - [sym_comment] = ACTIONS(57), - }, - [403] = { - [sym_subscript] = STATE(828), - [sym_variable_name] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_DOLLAR] = ACTIONS(1610), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_AT] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1614), - [anon_sym_0] = ACTIONS(1612), - [anon_sym__] = ACTIONS(1612), - }, - [404] = { - [sym_concatenation] = STATE(831), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(831), - [anon_sym_RBRACE] = ACTIONS(1616), - [anon_sym_EQ] = ACTIONS(1618), - [anon_sym_DASH] = ACTIONS(1618), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1620), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_COLON] = ACTIONS(1618), - [anon_sym_COLON_QMARK] = ACTIONS(1618), - [anon_sym_COLON_DASH] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym_concatenation] = STATE(834), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(834), - [anon_sym_RBRACE] = ACTIONS(1624), - [anon_sym_EQ] = ACTIONS(1626), - [anon_sym_DASH] = ACTIONS(1626), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1628), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(1630), - [anon_sym_COLON] = ACTIONS(1626), - [anon_sym_COLON_QMARK] = ACTIONS(1626), - [anon_sym_COLON_DASH] = ACTIONS(1626), - [anon_sym_PERCENT] = ACTIONS(1626), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(837), - [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(1632), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1634), - [anon_sym_SEMI_SEMI] = ACTIONS(1636), - [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(1636), - [anon_sym_AMP] = ACTIONS(1632), - }, - [407] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(837), - [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(1632), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1634), - [anon_sym_SEMI_SEMI] = ACTIONS(1636), - [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(1636), - [anon_sym_AMP] = ACTIONS(1632), - }, - [408] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(838), - [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_compound_statement] = 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(83), - [sym_variable_assignment] = STATE(839), - [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_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(841), - [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(1638), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(1640), - [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(1634), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1640), - [anon_sym_AMP] = ACTIONS(1638), - }, - [410] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(841), - [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(1638), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(1640), - [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(1634), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(1640), - [anon_sym_AMP] = ACTIONS(1638), - }, - [411] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(842), - [sym_for_statement] = STATE(842), - [sym_c_style_for_statement] = STATE(842), - [sym_while_statement] = STATE(842), - [sym_if_statement] = STATE(842), - [sym_case_statement] = STATE(842), - [sym_function_definition] = STATE(842), - [sym_compound_statement] = STATE(842), - [sym_subshell] = STATE(842), - [sym_pipeline] = STATE(842), - [sym_list] = STATE(842), - [sym_negated_command] = STATE(842), - [sym_test_command] = STATE(842), - [sym_declaration_command] = STATE(842), - [sym_unset_command] = STATE(842), - [sym_command] = STATE(842), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(843), - [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(846), - [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(1642), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1644), - [anon_sym_SEMI_SEMI] = ACTIONS(1646), - [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(1646), - [anon_sym_AMP] = ACTIONS(1642), - }, - [413] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(846), - [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(1642), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1644), - [anon_sym_SEMI_SEMI] = ACTIONS(1646), - [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(1646), - [anon_sym_AMP] = ACTIONS(1642), - }, - [414] = { - [sym__terminated_statement] = STATE(187), + [sym__statements] = STATE(846), [sym_redirected_statement] = STATE(847), [sym_for_statement] = STATE(847), [sym_c_style_for_statement] = STATE(847), @@ -21662,39 +22383,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(847), [sym_unset_command] = STATE(847), [sym_command] = STATE(847), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(848), - [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_command_name] = STATE(848), + [sym_variable_assignment] = STATE(849), + [sym_subscript] = STATE(850), + [sym_file_redirect] = STATE(853), + [sym_concatenation] = STATE(851), + [sym_string] = STATE(840), + [sym_simple_expansion] = STATE(840), + [sym_string_expansion] = STATE(840), + [sym_expansion] = STATE(840), + [sym_command_substitution] = STATE(840), + [sym_process_substitution] = STATE(840), + [aux_sym__statements_repeat1] = STATE(852), + [aux_sym_command_repeat1] = STATE(853), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(129), + [sym_variable_name] = ACTIONS(1705), [anon_sym_for] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_while] = ACTIONS(15), + [anon_sym_done] = ACTIONS(1707), [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_BANG] = ACTIONS(1709), [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_declare] = ACTIONS(1711), + [anon_sym_typeset] = ACTIONS(1711), + [anon_sym_export] = ACTIONS(1711), + [anon_sym_readonly] = ACTIONS(1711), + [anon_sym_local] = ACTIONS(1711), + [anon_sym_unset] = ACTIONS(1713), + [anon_sym_unsetenv] = ACTIONS(1713), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -21702,564 +22424,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1727), + [anon_sym_LT_LPAREN] = ACTIONS(1729), + [anon_sym_GT_LPAREN] = ACTIONS(1729), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(141), + [sym_word] = ACTIONS(1731), }, - [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(1648), - [sym__heredoc_body_beginning] = ACTIONS(1648), - [sym_file_descriptor] = ACTIONS(1648), - [ts_builtin_sym_end] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_SEMI_SEMI] = ACTIONS(1648), - [anon_sym_PIPE_AMP] = ACTIONS(1648), - [anon_sym_AMP_AMP] = ACTIONS(1648), - [anon_sym_PIPE_PIPE] = ACTIONS(1648), - [anon_sym_LT] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1650), - [anon_sym_GT_GT] = ACTIONS(1648), - [anon_sym_AMP_GT] = ACTIONS(1650), - [anon_sym_AMP_GT_GT] = ACTIONS(1648), - [anon_sym_LT_AMP] = ACTIONS(1648), - [anon_sym_GT_AMP] = ACTIONS(1648), - [anon_sym_LT_LT] = ACTIONS(1650), - [anon_sym_LT_LT_DASH] = ACTIONS(1648), - [anon_sym_LT_LT_LT] = ACTIONS(1648), - [sym__special_characters] = ACTIONS(1652), - [anon_sym_DQUOTE] = ACTIONS(1655), - [anon_sym_DOLLAR] = ACTIONS(1658), - [sym_raw_string] = ACTIONS(1661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1667), - [anon_sym_BQUOTE] = ACTIONS(1670), - [anon_sym_LT_LPAREN] = ACTIONS(1673), - [anon_sym_GT_LPAREN] = ACTIONS(1673), + [353] = { + [sym__simple_heredoc_body] = ACTIONS(1733), + [sym__heredoc_body_beginning] = ACTIONS(1733), + [sym_file_descriptor] = ACTIONS(1733), + [ts_builtin_sym_end] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_done] = ACTIONS(1733), + [anon_sym_fi] = ACTIONS(1733), + [anon_sym_elif] = ACTIONS(1733), + [anon_sym_else] = ACTIONS(1733), + [anon_sym_esac] = ACTIONS(1733), + [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), + [anon_sym_BQUOTE] = ACTIONS(1733), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1676), - [sym_word] = ACTIONS(1679), - [anon_sym_LF] = ACTIONS(1648), - [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1733), + [anon_sym_AMP] = ACTIONS(1735), }, - [416] = { - [sym_string] = STATE(849), - [sym_simple_expansion] = STATE(849), - [sym_string_expansion] = STATE(849), - [sym_expansion] = STATE(849), - [sym_command_substitution] = STATE(849), - [sym_process_substitution] = STATE(849), - [sym__special_characters] = ACTIONS(1682), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_DOLLAR] = ACTIONS(235), - [sym_raw_string] = ACTIONS(1682), - [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(1682), - }, - [417] = { - [aux_sym_concatenation_repeat1] = STATE(850), - [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_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] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(1684), - [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] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(455), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1686), - [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_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_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_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_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(1688), + [354] = { + [anon_sym_LT] = ACTIONS(1737), + [anon_sym_GT] = ACTIONS(1737), + [anon_sym_GT_GT] = ACTIONS(1739), + [anon_sym_AMP_GT] = ACTIONS(1737), + [anon_sym_AMP_GT_GT] = ACTIONS(1739), + [anon_sym_LT_AMP] = ACTIONS(1739), + [anon_sym_GT_AMP] = ACTIONS(1739), [sym_comment] = ACTIONS(57), }, - [425] = { - [sym_subscript] = STATE(856), - [sym_variable_name] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1692), + [355] = { + [anon_sym_do] = ACTIONS(1741), + [anon_sym_then] = ACTIONS(1741), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(1696), - [anon_sym_QMARK] = ACTIONS(1696), - [anon_sym_0] = ACTIONS(1694), - [anon_sym__] = ACTIONS(1694), }, - [426] = { - [sym_concatenation] = STATE(859), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(859), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_EQ] = ACTIONS(1700), - [anon_sym_DASH] = ACTIONS(1700), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(1704), - [anon_sym_COLON] = ACTIONS(1700), - [anon_sym_COLON_QMARK] = ACTIONS(1700), - [anon_sym_COLON_DASH] = ACTIONS(1700), - [anon_sym_PERCENT] = ACTIONS(1700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym_concatenation] = STATE(862), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(862), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_EQ] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(1712), - [anon_sym_COLON] = ACTIONS(1708), - [anon_sym_COLON_QMARK] = ACTIONS(1708), - [anon_sym_COLON_DASH] = ACTIONS(1708), - [anon_sym_PERCENT] = ACTIONS(1708), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(865), - [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(1714), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1716), - [anon_sym_SEMI_SEMI] = ACTIONS(1718), - [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(1718), - [anon_sym_AMP] = ACTIONS(1714), - }, - [429] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(865), - [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(1714), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1716), - [anon_sym_SEMI_SEMI] = ACTIONS(1718), - [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(1718), - [anon_sym_AMP] = ACTIONS(1714), - }, - [430] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(866), - [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_compound_statement] = 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(83), - [sym_variable_assignment] = STATE(867), - [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_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(869), - [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(1720), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(1722), - [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(1716), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1722), - [anon_sym_AMP] = ACTIONS(1720), - }, - [432] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(869), - [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(1720), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(1722), - [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(1716), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(1722), - [anon_sym_AMP] = ACTIONS(1720), - }, - [433] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(870), - [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_compound_statement] = 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(162), - [sym_variable_assignment] = STATE(871), - [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), + [356] = { + [sym_redirected_statement] = STATE(855), + [sym_for_statement] = STATE(855), + [sym_c_style_for_statement] = STATE(855), + [sym_while_statement] = STATE(855), + [sym_if_statement] = STATE(855), + [sym_case_statement] = STATE(855), + [sym_function_definition] = STATE(855), + [sym_compound_statement] = STATE(855), + [sym_subshell] = STATE(855), + [sym_pipeline] = STATE(855), + [sym_list] = STATE(855), + [sym_negated_command] = STATE(855), + [sym_test_command] = STATE(855), + [sym_declaration_command] = STATE(855), + [sym_unset_command] = STATE(855), + [sym_command] = STATE(855), + [sym_command_name] = STATE(77), + [sym_variable_assignment] = STATE(856), + [sym_subscript] = STATE(79), + [sym_file_redirect] = STATE(81), + [sym_concatenation] = STATE(80), + [sym_string] = STATE(69), + [sym_simple_expansion] = STATE(69), + [sym_string_expansion] = STATE(69), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_process_substitution] = STATE(69), + [aux_sym_command_repeat1] = STATE(81), [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_for] = ACTIONS(99), + [anon_sym_LPAREN_LPAREN] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_case] = ACTIONS(107), + [anon_sym_function] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(119), + [anon_sym_declare] = ACTIONS(121), + [anon_sym_typeset] = ACTIONS(121), + [anon_sym_export] = ACTIONS(121), + [anon_sym_readonly] = ACTIONS(121), + [anon_sym_local] = ACTIONS(121), + [anon_sym_unset] = ACTIONS(123), + [anon_sym_unsetenv] = ACTIONS(123), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -22267,655 +22539,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(874), - [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(1724), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1728), - [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(1728), - [anon_sym_AMP] = ACTIONS(1724), - }, - [435] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(874), - [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(1724), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1728), - [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(1728), - [anon_sym_AMP] = ACTIONS(1724), - }, - [436] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(875), - [sym_for_statement] = STATE(875), - [sym_c_style_for_statement] = STATE(875), - [sym_while_statement] = STATE(875), - [sym_if_statement] = STATE(875), - [sym_case_statement] = STATE(875), - [sym_function_definition] = STATE(875), - [sym_compound_statement] = STATE(875), - [sym_subshell] = STATE(875), - [sym_pipeline] = STATE(875), - [sym_list] = STATE(875), - [sym_negated_command] = STATE(875), - [sym_test_command] = STATE(875), - [sym_declaration_command] = STATE(875), - [sym_unset_command] = STATE(875), - [sym_command] = STATE(875), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(876), - [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__special_characters] = ACTIONS(125), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(131), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), [sym_comment] = ACTIONS(57), [sym_word] = ACTIONS(141), }, - [437] = { - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(1730), - [ts_builtin_sym_end] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1730), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_EQ_TILDE] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [438] = { - [aux_sym_concatenation_repeat1] = STATE(438), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(1734), - [ts_builtin_sym_end] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_EQ_TILDE] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [439] = { - [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__simple_heredoc_body] = ACTIONS(1737), - [sym__heredoc_body_beginning] = ACTIONS(1737), - [sym_file_descriptor] = ACTIONS(1737), - [sym__concat] = ACTIONS(1737), - [ts_builtin_sym_end] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_RPAREN] = ACTIONS(1737), - [anon_sym_SEMI_SEMI] = ACTIONS(1737), - [anon_sym_PIPE_AMP] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_EQ_TILDE] = ACTIONS(1739), - [anon_sym_EQ_EQ] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1737), - [anon_sym_AMP_GT] = ACTIONS(1739), - [anon_sym_AMP_GT_GT] = ACTIONS(1737), - [anon_sym_LT_AMP] = ACTIONS(1737), - [anon_sym_GT_AMP] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_LT_LT_DASH] = ACTIONS(1737), - [anon_sym_LT_LT_LT] = ACTIONS(1737), - [sym__special_characters] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1739), - [sym_raw_string] = ACTIONS(1737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1737), - [anon_sym_BQUOTE] = ACTIONS(1737), - [anon_sym_LT_LPAREN] = ACTIONS(1737), - [anon_sym_GT_LPAREN] = ACTIONS(1737), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1739), - [anon_sym_LF] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1739), - }, - [441] = { - [sym__concat] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1743), - [anon_sym_DOLLAR] = ACTIONS(1743), - [sym__string_content] = ACTIONS(1745), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1743), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1743), - [anon_sym_BQUOTE] = ACTIONS(1743), - [sym_comment] = ACTIONS(265), - }, - [442] = { - [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] = { - [anon_sym_DQUOTE] = ACTIONS(1743), - [anon_sym_DOLLAR] = ACTIONS(1743), - [sym__string_content] = ACTIONS(1745), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1743), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1743), - [anon_sym_BQUOTE] = ACTIONS(1743), - [sym_comment] = ACTIONS(265), - }, - [444] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(1747), - [sym_comment] = ACTIONS(57), - }, - [445] = { - [sym_subscript] = STATE(881), - [sym_variable_name] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_DOLLAR] = ACTIONS(1751), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1753), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_AT] = ACTIONS(1755), - [anon_sym_QMARK] = ACTIONS(1755), - [anon_sym_0] = ACTIONS(1753), - [anon_sym__] = ACTIONS(1753), - }, - [446] = { - [sym_concatenation] = STATE(884), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(884), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_EQ] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1759), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1761), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_COLON] = ACTIONS(1759), - [anon_sym_COLON_QMARK] = ACTIONS(1759), - [anon_sym_COLON_DASH] = ACTIONS(1759), - [anon_sym_PERCENT] = ACTIONS(1759), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(887), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(887), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_EQ] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1767), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(1771), - [anon_sym_COLON] = ACTIONS(1767), - [anon_sym_COLON_QMARK] = ACTIONS(1767), - [anon_sym_COLON_DASH] = ACTIONS(1767), - [anon_sym_PERCENT] = ACTIONS(1767), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(890), - [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(1773), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1775), - [anon_sym_SEMI_SEMI] = ACTIONS(1777), - [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(1777), - [anon_sym_AMP] = ACTIONS(1773), - }, - [449] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(890), - [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(1773), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1775), - [anon_sym_SEMI_SEMI] = ACTIONS(1777), - [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(1777), - [anon_sym_AMP] = ACTIONS(1773), - }, - [450] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(891), - [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_compound_statement] = 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(83), - [sym_variable_assignment] = STATE(892), - [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_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(894), - [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(1779), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(1781), - [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(1775), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1779), - }, - [452] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(894), - [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(1779), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(1781), - [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(1775), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1779), - }, - [453] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(895), - [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_compound_statement] = 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(162), - [sym_variable_assignment] = STATE(896), - [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), + [357] = { + [sym_redirected_statement] = STATE(857), + [sym_for_statement] = STATE(857), + [sym_c_style_for_statement] = STATE(857), + [sym_while_statement] = STATE(857), + [sym_if_statement] = STATE(857), + [sym_case_statement] = STATE(857), + [sym_function_definition] = STATE(857), + [sym_compound_statement] = STATE(857), + [sym_subshell] = STATE(857), + [sym_pipeline] = STATE(857), + [sym_list] = STATE(857), + [sym_negated_command] = STATE(857), + [sym_test_command] = STATE(857), + [sym_declaration_command] = STATE(857), + [sym_unset_command] = STATE(857), + [sym_command] = STATE(857), + [sym_command_name] = STATE(77), + [sym_variable_assignment] = STATE(858), + [sym_subscript] = STATE(79), + [sym_file_redirect] = STATE(81), + [sym_concatenation] = STATE(80), + [sym_string] = STATE(69), + [sym_simple_expansion] = STATE(69), + [sym_string_expansion] = STATE(69), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_process_substitution] = STATE(69), + [aux_sym_command_repeat1] = STATE(81), [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_for] = ACTIONS(99), + [anon_sym_LPAREN_LPAREN] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_case] = ACTIONS(107), + [anon_sym_function] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(119), + [anon_sym_declare] = ACTIONS(121), + [anon_sym_typeset] = ACTIONS(121), + [anon_sym_export] = ACTIONS(121), + [anon_sym_readonly] = ACTIONS(121), + [anon_sym_local] = ACTIONS(121), + [anon_sym_unset] = ACTIONS(123), + [anon_sym_unsetenv] = ACTIONS(123), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -22923,45609 +22607,322 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(1783), - [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_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(455), - [anon_sym_DQUOTE] = ACTIONS(1743), - [anon_sym_DOLLAR] = ACTIONS(1785), - [sym__string_content] = ACTIONS(1788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1791), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1794), - [anon_sym_BQUOTE] = ACTIONS(1797), - [sym_comment] = ACTIONS(265), - }, - [456] = { - [sym_concatenation] = STATE(901), - [sym_string] = STATE(900), - [sym_simple_expansion] = STATE(900), - [sym_string_expansion] = STATE(900), - [sym_expansion] = STATE(900), - [sym_command_substitution] = STATE(900), - [sym_process_substitution] = STATE(900), - [sym__special_characters] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(155), - [sym_raw_string] = ACTIONS(1802), - [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(1802), - }, - [457] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(906), - [sym_simple_expansion] = STATE(906), - [sym_string_expansion] = STATE(906), - [sym_expansion] = STATE(906), - [sym_command_substitution] = STATE(906), - [sym_process_substitution] = STATE(906), - [anon_sym_RBRACE] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(1806), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(1812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1812), - }, - [458] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(1822), - [sym_comment] = ACTIONS(57), - }, - [459] = { - [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(1824), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(1830), - [anon_sym_COLON] = ACTIONS(1826), - [anon_sym_COLON_QMARK] = ACTIONS(1826), - [anon_sym_COLON_DASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(917), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(917), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_EQ] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1832), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(1836), - [anon_sym_COLON] = ACTIONS(1832), - [anon_sym_COLON_QMARK] = ACTIONS(1832), - [anon_sym_COLON_DASH] = ACTIONS(1832), - [anon_sym_PERCENT] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym__simple_heredoc_body] = ACTIONS(1838), - [sym__heredoc_body_beginning] = ACTIONS(1838), - [sym_file_descriptor] = ACTIONS(1838), - [sym__concat] = ACTIONS(1838), - [ts_builtin_sym_end] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1840), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_SEMI_SEMI] = ACTIONS(1838), - [anon_sym_PIPE_AMP] = ACTIONS(1838), - [anon_sym_AMP_AMP] = ACTIONS(1838), - [anon_sym_PIPE_PIPE] = ACTIONS(1838), - [anon_sym_EQ_TILDE] = ACTIONS(1840), - [anon_sym_EQ_EQ] = ACTIONS(1840), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_GT_GT] = ACTIONS(1838), - [anon_sym_AMP_GT] = ACTIONS(1840), - [anon_sym_AMP_GT_GT] = ACTIONS(1838), - [anon_sym_LT_AMP] = ACTIONS(1838), - [anon_sym_GT_AMP] = ACTIONS(1838), - [anon_sym_LT_LT] = ACTIONS(1840), - [anon_sym_LT_LT_DASH] = ACTIONS(1838), - [anon_sym_LT_LT_LT] = ACTIONS(1838), - [sym__special_characters] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1840), - [sym_raw_string] = ACTIONS(1838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_LT_LPAREN] = ACTIONS(1838), - [anon_sym_GT_LPAREN] = ACTIONS(1838), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1840), - [anon_sym_LF] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1840), - }, - [462] = { - [aux_sym_concatenation_repeat1] = STATE(919), - [sym__concat] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1844), - [anon_sym_EQ] = ACTIONS(1846), - [anon_sym_DASH] = ACTIONS(1846), - [sym__special_characters] = ACTIONS(1846), - [anon_sym_DQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR] = ACTIONS(1846), - [sym_raw_string] = ACTIONS(1844), - [anon_sym_POUND] = ACTIONS(1844), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1846), - [anon_sym_COLON_QMARK] = ACTIONS(1846), - [anon_sym_COLON_DASH] = ACTIONS(1846), - [anon_sym_PERCENT] = ACTIONS(1846), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1844), - [anon_sym_BQUOTE] = ACTIONS(1844), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1846), - }, - [463] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(922), - [anon_sym_DQUOTE] = ACTIONS(1848), - [anon_sym_DOLLAR] = ACTIONS(1850), - [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_string] = STATE(924), - [anon_sym_DASH] = ACTIONS(1852), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(1852), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1856), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_AT] = ACTIONS(1858), - [anon_sym_QMARK] = ACTIONS(1858), - [anon_sym_0] = ACTIONS(1856), - [anon_sym__] = ACTIONS(1856), - }, - [465] = { - [aux_sym_concatenation_repeat1] = STATE(919), - [sym__concat] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1860), - [anon_sym_EQ] = ACTIONS(1862), - [anon_sym_DASH] = ACTIONS(1862), - [sym__special_characters] = ACTIONS(1862), - [anon_sym_DQUOTE] = ACTIONS(1860), - [anon_sym_DOLLAR] = ACTIONS(1862), - [sym_raw_string] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(1860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), - [anon_sym_COLON] = ACTIONS(1862), - [anon_sym_COLON_QMARK] = ACTIONS(1862), - [anon_sym_COLON_DASH] = ACTIONS(1862), - [anon_sym_PERCENT] = ACTIONS(1862), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1860), - [anon_sym_GT_LPAREN] = ACTIONS(1860), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1862), - }, - [466] = { - [sym_subscript] = STATE(929), - [sym_variable_name] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(1866), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1872), - [anon_sym_AT] = ACTIONS(1872), - [anon_sym_QMARK] = ACTIONS(1872), - [anon_sym_0] = ACTIONS(1870), - [anon_sym__] = ACTIONS(1870), - }, - [467] = { - [sym_concatenation] = STATE(932), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(932), - [sym_regex] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1876), - [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), - }, - [468] = { - [sym__terminated_statement] = STATE(935), - [sym_redirected_statement] = STATE(933), - [sym_for_statement] = STATE(933), - [sym_c_style_for_statement] = STATE(933), - [sym_while_statement] = STATE(933), - [sym_if_statement] = STATE(933), - [sym_case_statement] = STATE(933), - [sym_function_definition] = STATE(933), - [sym_compound_statement] = STATE(933), - [sym_subshell] = STATE(933), - [sym_pipeline] = STATE(933), - [sym_list] = STATE(933), - [sym_negated_command] = STATE(933), - [sym_test_command] = STATE(933), - [sym_declaration_command] = STATE(933), - [sym_unset_command] = STATE(933), - [sym_command] = STATE(933), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(934), - [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(935), - [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__special_characters] = ACTIONS(125), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(131), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), [sym_comment] = ACTIONS(57), [sym_word] = ACTIONS(141), }, - [469] = { - [sym__terminated_statement] = STATE(938), - [sym_redirected_statement] = STATE(936), - [sym_for_statement] = STATE(936), - [sym_c_style_for_statement] = STATE(936), - [sym_while_statement] = STATE(936), - [sym_if_statement] = STATE(936), - [sym_case_statement] = STATE(936), - [sym_function_definition] = STATE(936), - [sym_compound_statement] = STATE(936), - [sym_subshell] = STATE(936), - [sym_pipeline] = STATE(936), - [sym_list] = STATE(936), - [sym_negated_command] = STATE(936), - [sym_test_command] = STATE(936), - [sym_declaration_command] = STATE(936), - [sym_unset_command] = STATE(936), - [sym_command] = STATE(936), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(937), - [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(938), - [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__terminated_statement] = STATE(941), - [sym_redirected_statement] = STATE(939), - [sym_for_statement] = STATE(939), - [sym_c_style_for_statement] = STATE(939), - [sym_while_statement] = STATE(939), - [sym_if_statement] = STATE(939), - [sym_case_statement] = STATE(939), - [sym_function_definition] = STATE(939), - [sym_compound_statement] = STATE(939), - [sym_subshell] = STATE(939), - [sym_pipeline] = STATE(939), - [sym_list] = STATE(939), - [sym_negated_command] = STATE(939), - [sym_test_command] = STATE(939), - [sym_declaration_command] = STATE(939), - [sym_unset_command] = STATE(939), - [sym_command] = STATE(939), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(940), - [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(941), - [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_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(1876), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym__simple_heredoc_body] = ACTIONS(1886), - [sym__heredoc_body_beginning] = ACTIONS(1886), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [ts_builtin_sym_end] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_SEMI_SEMI] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_EQ_TILDE] = ACTIONS(1888), - [anon_sym_EQ_EQ] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1886), - [anon_sym_LT_LT_LT] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1888), - }, - [473] = { - [sym_concatenation] = STATE(917), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(917), - [sym_regex] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_EQ] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1832), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1832), - [anon_sym_COLON_QMARK] = ACTIONS(1832), - [anon_sym_COLON_DASH] = ACTIONS(1832), - [anon_sym_PERCENT] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [476] = { - [sym__simple_heredoc_body] = ACTIONS(1894), - [sym__heredoc_body_beginning] = ACTIONS(1894), - [sym_file_descriptor] = ACTIONS(1894), - [sym__concat] = ACTIONS(1894), - [ts_builtin_sym_end] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1894), - [anon_sym_SEMI_SEMI] = ACTIONS(1894), - [anon_sym_PIPE_AMP] = ACTIONS(1894), - [anon_sym_AMP_AMP] = ACTIONS(1894), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_EQ_TILDE] = ACTIONS(1896), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_GT_GT] = ACTIONS(1894), - [anon_sym_AMP_GT] = ACTIONS(1896), - [anon_sym_AMP_GT_GT] = ACTIONS(1894), - [anon_sym_LT_AMP] = ACTIONS(1894), - [anon_sym_GT_AMP] = ACTIONS(1894), - [anon_sym_LT_LT] = ACTIONS(1896), - [anon_sym_LT_LT_DASH] = ACTIONS(1894), - [anon_sym_LT_LT_LT] = ACTIONS(1894), - [sym__special_characters] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1896), - [sym_raw_string] = ACTIONS(1894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), - [anon_sym_BQUOTE] = ACTIONS(1894), - [anon_sym_LT_LPAREN] = ACTIONS(1894), - [anon_sym_GT_LPAREN] = ACTIONS(1894), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1896), - [anon_sym_LF] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1896), - }, - [477] = { - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1900), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1900), - [anon_sym_AMP] = ACTIONS(1900), - }, - [478] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(947), - [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(1902), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1904), - [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(1904), - [anon_sym_AMP] = ACTIONS(1902), - }, - [479] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(947), - [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(1902), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1904), - [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(1904), - [anon_sym_AMP] = ACTIONS(1902), - }, - [480] = { - [sym_variable_assignment] = STATE(666), - [sym_subscript] = STATE(261), - [sym_concatenation] = STATE(666), - [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(666), - [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(1295), - [sym_word] = ACTIONS(483), - [anon_sym_LF] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(703), - }, - [481] = { - [sym_concatenation] = STATE(668), - [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(668), - [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(1297), - [sym_word] = ACTIONS(491), - [anon_sym_LF] = ACTIONS(739), - [anon_sym_AMP] = ACTIONS(741), - }, - [482] = { - [anon_sym_LT] = ACTIONS(1906), - [anon_sym_GT] = ACTIONS(1906), - [anon_sym_GT_GT] = ACTIONS(1908), - [anon_sym_AMP_GT] = ACTIONS(1906), - [anon_sym_AMP_GT_GT] = ACTIONS(1908), - [anon_sym_LT_AMP] = ACTIONS(1908), - [anon_sym_GT_AMP] = ACTIONS(1908), - [sym_comment] = ACTIONS(57), - }, - [483] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [484] = { - [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), - }, - [485] = { - [sym_redirected_statement] = STATE(951), - [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_compound_statement] = 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(162), - [sym_variable_assignment] = STATE(952), - [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_concatenation] = STATE(513), - [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), - }, - [487] = { - [sym_concatenation] = STATE(517), - [sym_string] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_string_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [sym__special_characters] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(43), - [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(1916), - [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(1916), - }, - [488] = { - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1920), - [anon_sym_BQUOTE] = ACTIONS(1892), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1920), - [anon_sym_AMP] = ACTIONS(1920), - }, - [489] = { - [sym_file_redirect] = STATE(958), - [sym_heredoc_redirect] = STATE(958), - [sym_herestring_redirect] = STATE(958), - [aux_sym_redirected_statement_repeat1] = STATE(958), - [sym__simple_heredoc_body] = ACTIONS(951), - [sym__heredoc_body_beginning] = ACTIONS(951), - [sym_file_descriptor] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_PIPE] = ACTIONS(953), - [anon_sym_SEMI_SEMI] = ACTIONS(951), - [anon_sym_PIPE_AMP] = ACTIONS(951), - [anon_sym_AMP_AMP] = ACTIONS(951), - [anon_sym_PIPE_PIPE] = ACTIONS(951), - [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(951), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(951), - [anon_sym_AMP] = ACTIONS(953), - }, - [490] = { - [sym_concatenation] = STATE(685), - [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(685), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__heredoc_body_beginning] = ACTIONS(969), - [sym_file_descriptor] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(969), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_EQ_TILDE] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_AMP_GT_GT] = ACTIONS(969), - [anon_sym_LT_AMP] = ACTIONS(969), - [anon_sym_GT_AMP] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(969), - [anon_sym_LT_LT_LT] = ACTIONS(969), - [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(969), - [anon_sym_LT_LPAREN] = ACTIONS(55), - [anon_sym_GT_LPAREN] = ACTIONS(55), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(519), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_AMP] = ACTIONS(971), - }, - [491] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(960), - [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(1922), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(1924), - [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(1892), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1922), - }, - [492] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(960), - [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(1922), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(1924), - [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(1892), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1922), - }, - [493] = { - [sym_concatenation] = STATE(961), - [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(961), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__heredoc_body_beginning] = ACTIONS(969), - [sym_file_descriptor] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(969), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_EQ_TILDE] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_AMP_GT_GT] = ACTIONS(969), - [anon_sym_LT_AMP] = ACTIONS(969), - [anon_sym_GT_AMP] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(969), - [anon_sym_LT_LT_LT] = ACTIONS(969), - [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(969), - [anon_sym_LT_LPAREN] = ACTIONS(55), - [anon_sym_GT_LPAREN] = ACTIONS(55), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(519), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_AMP] = ACTIONS(971), - }, - [494] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [495] = { - [sym__simple_heredoc_body] = ACTIONS(1928), - [sym__heredoc_body_beginning] = ACTIONS(1928), - [sym_file_descriptor] = ACTIONS(1928), - [sym__concat] = ACTIONS(1928), - [ts_builtin_sym_end] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1928), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_EQ_TILDE] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_GT_GT] = ACTIONS(1928), - [anon_sym_AMP_GT] = ACTIONS(1930), - [anon_sym_AMP_GT_GT] = ACTIONS(1928), - [anon_sym_LT_AMP] = ACTIONS(1928), - [anon_sym_GT_AMP] = ACTIONS(1928), - [anon_sym_LT_LT] = ACTIONS(1930), - [anon_sym_LT_LT_DASH] = ACTIONS(1928), - [anon_sym_LT_LT_LT] = ACTIONS(1928), - [sym__special_characters] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1928), - [anon_sym_DOLLAR] = ACTIONS(1930), - [sym_raw_string] = ACTIONS(1928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), - [anon_sym_BQUOTE] = ACTIONS(1928), - [anon_sym_LT_LPAREN] = ACTIONS(1928), - [anon_sym_GT_LPAREN] = ACTIONS(1928), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1930), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), - }, - [496] = { - [anon_sym_SEMI] = ACTIONS(1932), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_SEMI_SEMI] = ACTIONS(1934), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1934), - }, - [497] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(965), - [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(1936), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_SEMI_SEMI] = ACTIONS(1938), - [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(1938), - [anon_sym_AMP] = ACTIONS(1936), - }, - [498] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(965), - [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(1936), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_SEMI_SEMI] = ACTIONS(1938), - [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(1938), - [anon_sym_AMP] = ACTIONS(1936), - }, - [499] = { - [sym_compound_statement] = STATE(966), - [anon_sym_LBRACE] = ACTIONS(25), - [sym_comment] = ACTIONS(57), - }, - [500] = { - [ts_builtin_sym_end] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_RPAREN] = ACTIONS(1940), - [anon_sym_SEMI_SEMI] = ACTIONS(1940), - [anon_sym_BQUOTE] = ACTIONS(1940), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1940), - }, - [501] = { - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_DOLLAR] = ACTIONS(1944), - [anon_sym_POUND] = ACTIONS(1944), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1948), - [anon_sym_QMARK] = ACTIONS(1948), - [anon_sym_0] = ACTIONS(1946), - [anon_sym__] = ACTIONS(1946), - }, - [502] = { - [sym_subscript] = STATE(972), - [sym_variable_name] = ACTIONS(1950), - [anon_sym_BANG] = ACTIONS(1952), - [anon_sym_DASH] = ACTIONS(1954), - [anon_sym_DOLLAR] = ACTIONS(1954), - [anon_sym_POUND] = ACTIONS(1952), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(1958), - [anon_sym_AT] = ACTIONS(1958), - [anon_sym_QMARK] = ACTIONS(1958), - [anon_sym_0] = ACTIONS(1956), - [anon_sym__] = ACTIONS(1956), - }, - [503] = { - [sym__terminated_statement] = STATE(975), - [sym_redirected_statement] = STATE(973), - [sym_for_statement] = STATE(973), - [sym_c_style_for_statement] = STATE(973), - [sym_while_statement] = STATE(973), - [sym_if_statement] = STATE(973), - [sym_case_statement] = STATE(973), - [sym_function_definition] = STATE(973), - [sym_compound_statement] = STATE(973), - [sym_subshell] = STATE(973), - [sym_pipeline] = STATE(973), - [sym_list] = STATE(973), - [sym_negated_command] = STATE(973), - [sym_test_command] = STATE(973), - [sym_declaration_command] = STATE(973), - [sym_unset_command] = STATE(973), - [sym_command] = STATE(973), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(974), - [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(975), - [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), - }, - [504] = { - [sym__terminated_statement] = STATE(978), - [sym_redirected_statement] = STATE(976), - [sym_for_statement] = STATE(976), - [sym_c_style_for_statement] = STATE(976), - [sym_while_statement] = STATE(976), - [sym_if_statement] = STATE(976), - [sym_case_statement] = STATE(976), - [sym_function_definition] = STATE(976), - [sym_compound_statement] = STATE(976), - [sym_subshell] = STATE(976), - [sym_pipeline] = STATE(976), - [sym_list] = STATE(976), - [sym_negated_command] = STATE(976), - [sym_test_command] = STATE(976), - [sym_declaration_command] = STATE(976), - [sym_unset_command] = STATE(976), - [sym_command] = STATE(976), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(977), - [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(978), - [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), - }, - [505] = { - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [aux_sym_heredoc_body_repeat1] = STATE(980), - [sym__heredoc_body_middle] = ACTIONS(1960), - [sym__heredoc_body_end] = ACTIONS(1962), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(921), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(923), - [anon_sym_BQUOTE] = ACTIONS(925), - [sym_comment] = ACTIONS(57), - }, - [506] = { - [sym_concatenation] = STATE(983), - [sym_string] = STATE(982), - [sym_simple_expansion] = STATE(982), - [sym_string_expansion] = STATE(982), - [sym_expansion] = STATE(982), - [sym_command_substitution] = STATE(982), - [sym_process_substitution] = STATE(982), - [sym__special_characters] = ACTIONS(1964), - [anon_sym_DQUOTE] = ACTIONS(43), - [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(1966), - [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(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(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1968), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [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(1968), - [sym_variable_name] = ACTIONS(339), - [ts_builtin_sym_end] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1968), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [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__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] = { - [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(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_PIPE] = ACTIONS(309), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(313), - [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), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1974), - }, - [510] = { - [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(1972), - [sym__heredoc_body_beginning] = ACTIONS(1972), - [sym_file_descriptor] = ACTIONS(339), - [sym_variable_name] = ACTIONS(339), - [ts_builtin_sym_end] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(309), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(313), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [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(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1972), - [anon_sym_LT_LT_LT] = ACTIONS(1972), - [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(1972), - [anon_sym_AMP] = ACTIONS(1974), - }, - [511] = { - [aux_sym_concatenation_repeat1] = STATE(984), - [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), - }, - [512] = { - [aux_sym_concatenation_repeat1] = STATE(984), - [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), - }, - [513] = { - [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), - }, - [514] = { - [sym__simple_heredoc_body] = ACTIONS(1976), - [sym__heredoc_body_beginning] = ACTIONS(1976), - [sym_file_descriptor] = ACTIONS(1976), - [ts_builtin_sym_end] = ACTIONS(1976), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_esac] = ACTIONS(1976), - [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), - [anon_sym_BQUOTE] = ACTIONS(1976), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1978), - }, - [515] = { - [aux_sym_concatenation_repeat1] = STATE(984), - [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), - }, - [516] = { - [aux_sym_concatenation_repeat1] = STATE(984), - [sym__simple_heredoc_body] = ACTIONS(1984), - [sym__heredoc_body_beginning] = ACTIONS(1984), - [sym_file_descriptor] = ACTIONS(1984), - [sym__concat] = ACTIONS(249), - [ts_builtin_sym_end] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_SEMI_SEMI] = ACTIONS(1984), - [anon_sym_PIPE_AMP] = ACTIONS(1984), - [anon_sym_AMP_AMP] = ACTIONS(1984), - [anon_sym_PIPE_PIPE] = ACTIONS(1984), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_GT] = ACTIONS(1986), - [anon_sym_GT_GT] = ACTIONS(1984), - [anon_sym_AMP_GT] = ACTIONS(1986), - [anon_sym_AMP_GT_GT] = ACTIONS(1984), - [anon_sym_LT_AMP] = ACTIONS(1984), - [anon_sym_GT_AMP] = ACTIONS(1984), - [anon_sym_LT_LT] = ACTIONS(1986), - [anon_sym_LT_LT_DASH] = ACTIONS(1984), - [anon_sym_LT_LT_LT] = ACTIONS(1984), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1986), - }, - [517] = { - [sym__simple_heredoc_body] = ACTIONS(1984), - [sym__heredoc_body_beginning] = ACTIONS(1984), - [sym_file_descriptor] = ACTIONS(1984), - [ts_builtin_sym_end] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_esac] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_RPAREN] = ACTIONS(1984), - [anon_sym_SEMI_SEMI] = ACTIONS(1984), - [anon_sym_PIPE_AMP] = ACTIONS(1984), - [anon_sym_AMP_AMP] = ACTIONS(1984), - [anon_sym_PIPE_PIPE] = ACTIONS(1984), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_GT] = ACTIONS(1986), - [anon_sym_GT_GT] = ACTIONS(1984), - [anon_sym_AMP_GT] = ACTIONS(1986), - [anon_sym_AMP_GT_GT] = ACTIONS(1984), - [anon_sym_LT_AMP] = ACTIONS(1984), - [anon_sym_GT_AMP] = ACTIONS(1984), - [anon_sym_LT_LT] = ACTIONS(1986), - [anon_sym_LT_LT_DASH] = ACTIONS(1984), - [anon_sym_LT_LT_LT] = ACTIONS(1984), - [anon_sym_BQUOTE] = ACTIONS(1984), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1986), - }, - [518] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [ts_builtin_sym_end] = ACTIONS(1990), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [519] = { - [sym_file_redirect] = STATE(519), - [sym_heredoc_redirect] = STATE(519), - [sym_herestring_redirect] = STATE(519), - [aux_sym_redirected_statement_repeat1] = STATE(519), - [sym__simple_heredoc_body] = ACTIONS(1994), - [sym__heredoc_body_beginning] = ACTIONS(1994), - [sym_file_descriptor] = ACTIONS(1996), - [ts_builtin_sym_end] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1999), - [anon_sym_PIPE] = ACTIONS(1999), - [anon_sym_SEMI_SEMI] = ACTIONS(1994), - [anon_sym_PIPE_AMP] = ACTIONS(1994), - [anon_sym_AMP_AMP] = ACTIONS(1994), - [anon_sym_PIPE_PIPE] = ACTIONS(1994), - [anon_sym_LT] = ACTIONS(2001), - [anon_sym_GT] = ACTIONS(2001), - [anon_sym_GT_GT] = ACTIONS(2004), - [anon_sym_AMP_GT] = ACTIONS(2001), - [anon_sym_AMP_GT_GT] = ACTIONS(2004), - [anon_sym_LT_AMP] = ACTIONS(2004), - [anon_sym_GT_AMP] = ACTIONS(2004), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_LT_LT_DASH] = ACTIONS(2010), - [anon_sym_LT_LT_LT] = ACTIONS(2013), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1999), - }, - [520] = { - [sym__simple_heredoc_body] = ACTIONS(2016), - [sym__heredoc_body_beginning] = ACTIONS(2016), - [sym_file_descriptor] = ACTIONS(2016), - [ts_builtin_sym_end] = ACTIONS(2016), - [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), - }, - [521] = { - [aux_sym_concatenation_repeat1] = STATE(140), - [sym__simple_heredoc_body] = ACTIONS(2020), - [sym__heredoc_body_beginning] = ACTIONS(2020), - [sym_file_descriptor] = ACTIONS(2020), - [sym__concat] = ACTIONS(249), - [ts_builtin_sym_end] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_SEMI_SEMI] = ACTIONS(2020), - [anon_sym_PIPE_AMP] = ACTIONS(2020), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_EQ_TILDE] = ACTIONS(2022), - [anon_sym_EQ_EQ] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(2022), - [anon_sym_GT] = ACTIONS(2022), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_AMP_GT] = ACTIONS(2022), - [anon_sym_AMP_GT_GT] = ACTIONS(2020), - [anon_sym_LT_AMP] = ACTIONS(2020), - [anon_sym_GT_AMP] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2022), - [anon_sym_LT_LT_DASH] = ACTIONS(2020), - [anon_sym_LT_LT_LT] = ACTIONS(2020), - [sym__special_characters] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_DOLLAR] = ACTIONS(2022), - [sym_raw_string] = ACTIONS(2020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2020), - [anon_sym_BQUOTE] = ACTIONS(2020), - [anon_sym_LT_LPAREN] = ACTIONS(2020), - [anon_sym_GT_LPAREN] = ACTIONS(2020), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2022), - [anon_sym_LF] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2022), - }, - [522] = { - [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), - }, - [523] = { - [sym_concatenation] = STATE(523), - [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(523), - [sym__simple_heredoc_body] = ACTIONS(2016), - [sym__heredoc_body_beginning] = ACTIONS(2016), - [sym_file_descriptor] = ACTIONS(2016), - [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(2024), - [anon_sym_EQ_EQ] = ACTIONS(2024), - [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(2027), - [anon_sym_DQUOTE] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(2033), - [sym_raw_string] = ACTIONS(2036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2042), - [anon_sym_BQUOTE] = ACTIONS(2045), - [anon_sym_LT_LPAREN] = ACTIONS(2048), - [anon_sym_GT_LPAREN] = ACTIONS(2048), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2051), - [anon_sym_LF] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2018), - }, - [524] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [ts_builtin_sym_end] = ACTIONS(1990), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [525] = { - [ts_builtin_sym_end] = ACTIONS(1990), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_SEMI_SEMI] = ACTIONS(2056), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2056), - }, - [526] = { - [sym_file_redirect] = STATE(276), - [sym_heredoc_redirect] = STATE(276), - [sym_heredoc_body] = STATE(987), - [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(2058), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(2060), - [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(2060), - [anon_sym_AMP] = ACTIONS(2058), - }, - [527] = { - [sym_file_redirect] = STATE(276), - [sym_heredoc_redirect] = STATE(276), - [sym_heredoc_body] = STATE(987), - [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(2058), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(2060), - [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(2060), - [anon_sym_AMP] = ACTIONS(2058), - }, - [528] = { - [sym_concatenation] = STATE(523), - [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(523), - [sym__simple_heredoc_body] = ACTIONS(2062), - [sym__heredoc_body_beginning] = ACTIONS(2062), - [sym_file_descriptor] = ACTIONS(2062), - [ts_builtin_sym_end] = ACTIONS(2062), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_SEMI_SEMI] = ACTIONS(2062), - [anon_sym_PIPE_AMP] = ACTIONS(2062), - [anon_sym_AMP_AMP] = ACTIONS(2062), - [anon_sym_PIPE_PIPE] = ACTIONS(2062), - [anon_sym_EQ_TILDE] = ACTIONS(331), - [anon_sym_EQ_EQ] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_GT_GT] = ACTIONS(2062), - [anon_sym_AMP_GT] = ACTIONS(2064), - [anon_sym_AMP_GT_GT] = ACTIONS(2062), - [anon_sym_LT_AMP] = ACTIONS(2062), - [anon_sym_GT_AMP] = ACTIONS(2062), - [anon_sym_LT_LT] = ACTIONS(2064), - [anon_sym_LT_LT_DASH] = ACTIONS(2062), - [anon_sym_LT_LT_LT] = ACTIONS(2062), - [sym__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(2062), - [anon_sym_AMP] = ACTIONS(2064), - }, - [529] = { - [sym_string] = STATE(758), - [sym_simple_expansion] = STATE(758), - [sym_string_expansion] = STATE(758), - [sym_expansion] = STATE(758), - [sym_command_substitution] = STATE(758), - [sym_process_substitution] = STATE(758), - [anon_sym_RBRACK] = ACTIONS(2066), - [sym__special_characters] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(155), - [sym_raw_string] = ACTIONS(1457), - [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(1457), - }, - [530] = { - [sym__concat] = ACTIONS(2070), - [anon_sym_EQ] = ACTIONS(2072), - [anon_sym_PLUS_EQ] = ACTIONS(2072), - [sym_comment] = ACTIONS(57), - }, - [531] = { - [aux_sym_concatenation_repeat1] = STATE(990), - [sym__concat] = ACTIONS(629), - [anon_sym_RBRACK] = ACTIONS(779), - [sym_comment] = ACTIONS(57), - }, - [532] = { - [sym_string] = STATE(758), - [sym_simple_expansion] = STATE(758), - [sym_string_expansion] = STATE(758), - [sym_expansion] = STATE(758), - [sym_command_substitution] = STATE(758), - [sym_process_substitution] = STATE(758), - [anon_sym_RBRACK] = ACTIONS(2074), - [sym__special_characters] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(155), - [sym_raw_string] = ACTIONS(1457), - [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(1457), - }, - [533] = { - [sym__concat] = ACTIONS(2076), - [anon_sym_EQ] = ACTIONS(2078), - [anon_sym_PLUS_EQ] = ACTIONS(2078), - [sym_comment] = ACTIONS(57), - }, - [534] = { - [anon_sym_RBRACK] = ACTIONS(2074), - [sym_comment] = ACTIONS(57), - }, - [535] = { - [sym__simple_heredoc_body] = ACTIONS(2080), - [sym__heredoc_body_beginning] = ACTIONS(2080), - [sym_file_descriptor] = ACTIONS(2080), - [sym_variable_name] = ACTIONS(2080), - [ts_builtin_sym_end] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2080), - [anon_sym_SEMI_SEMI] = ACTIONS(2080), - [anon_sym_PIPE_AMP] = ACTIONS(2080), - [anon_sym_AMP_AMP] = ACTIONS(2080), - [anon_sym_PIPE_PIPE] = ACTIONS(2080), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_GT_GT] = ACTIONS(2080), - [anon_sym_AMP_GT] = ACTIONS(2082), - [anon_sym_AMP_GT_GT] = ACTIONS(2080), - [anon_sym_LT_AMP] = ACTIONS(2080), - [anon_sym_GT_AMP] = ACTIONS(2080), - [anon_sym_LT_LT] = ACTIONS(2082), - [anon_sym_LT_LT_DASH] = ACTIONS(2080), - [anon_sym_LT_LT_LT] = ACTIONS(2080), - [sym__special_characters] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [anon_sym_DOLLAR] = ACTIONS(2082), - [sym_raw_string] = ACTIONS(2080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2080), - [anon_sym_BQUOTE] = ACTIONS(2080), - [anon_sym_LT_LPAREN] = ACTIONS(2080), - [anon_sym_GT_LPAREN] = ACTIONS(2080), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2082), - [anon_sym_LF] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2082), - }, - [536] = { - [aux_sym_concatenation_repeat1] = STATE(994), - [sym__concat] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(2086), - [sym__special_characters] = ACTIONS(2086), - [anon_sym_DQUOTE] = ACTIONS(2086), - [anon_sym_DOLLAR] = ACTIONS(2088), - [sym_raw_string] = ACTIONS(2086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2086), - [anon_sym_BQUOTE] = ACTIONS(2086), - [anon_sym_LT_LPAREN] = ACTIONS(2086), - [anon_sym_GT_LPAREN] = ACTIONS(2086), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2086), - }, - [537] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(997), - [anon_sym_DQUOTE] = ACTIONS(2090), - [anon_sym_DOLLAR] = ACTIONS(2092), - [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), - }, - [538] = { - [sym_string] = STATE(999), - [anon_sym_DASH] = ACTIONS(2094), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_DOLLAR] = ACTIONS(2094), - [sym_raw_string] = ACTIONS(2096), - [anon_sym_POUND] = ACTIONS(2094), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2098), - [anon_sym_STAR] = ACTIONS(2100), - [anon_sym_AT] = ACTIONS(2100), - [anon_sym_QMARK] = ACTIONS(2100), - [anon_sym_0] = ACTIONS(2098), - [anon_sym__] = ACTIONS(2098), - }, - [539] = { - [aux_sym_concatenation_repeat1] = STATE(994), - [sym__concat] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(2102), - [sym__special_characters] = ACTIONS(2102), - [anon_sym_DQUOTE] = ACTIONS(2102), - [anon_sym_DOLLAR] = ACTIONS(2104), - [sym_raw_string] = ACTIONS(2102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2102), - [anon_sym_BQUOTE] = ACTIONS(2102), - [anon_sym_LT_LPAREN] = ACTIONS(2102), - [anon_sym_GT_LPAREN] = ACTIONS(2102), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2102), - }, - [540] = { - [sym_subscript] = STATE(1004), - [sym_variable_name] = ACTIONS(2106), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_DOLLAR] = ACTIONS(2110), - [anon_sym_POUND] = ACTIONS(2108), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2112), - [anon_sym_STAR] = ACTIONS(2114), - [anon_sym_AT] = ACTIONS(2114), - [anon_sym_QMARK] = ACTIONS(2114), - [anon_sym_0] = ACTIONS(2112), - [anon_sym__] = ACTIONS(2112), - }, - [541] = { - [sym__terminated_statement] = STATE(1007), - [sym_redirected_statement] = STATE(1005), - [sym_for_statement] = STATE(1005), - [sym_c_style_for_statement] = STATE(1005), - [sym_while_statement] = STATE(1005), - [sym_if_statement] = STATE(1005), - [sym_case_statement] = STATE(1005), - [sym_function_definition] = STATE(1005), - [sym_compound_statement] = STATE(1005), - [sym_subshell] = STATE(1005), - [sym_pipeline] = STATE(1005), - [sym_list] = STATE(1005), - [sym_negated_command] = STATE(1005), - [sym_test_command] = STATE(1005), - [sym_declaration_command] = STATE(1005), - [sym_unset_command] = STATE(1005), - [sym_command] = STATE(1005), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(1006), - [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(1007), - [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__terminated_statement] = STATE(1010), - [sym_redirected_statement] = STATE(1008), - [sym_for_statement] = STATE(1008), - [sym_c_style_for_statement] = STATE(1008), - [sym_while_statement] = STATE(1008), - [sym_if_statement] = STATE(1008), - [sym_case_statement] = STATE(1008), - [sym_function_definition] = STATE(1008), - [sym_compound_statement] = STATE(1008), - [sym_subshell] = STATE(1008), - [sym_pipeline] = STATE(1008), - [sym_list] = STATE(1008), - [sym_negated_command] = STATE(1008), - [sym_test_command] = STATE(1008), - [sym_declaration_command] = STATE(1008), - [sym_unset_command] = STATE(1008), - [sym_command] = STATE(1008), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(1009), - [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(1010), - [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), - }, - [543] = { - [sym__terminated_statement] = STATE(1013), - [sym_redirected_statement] = STATE(1011), - [sym_for_statement] = STATE(1011), - [sym_c_style_for_statement] = STATE(1011), - [sym_while_statement] = STATE(1011), - [sym_if_statement] = STATE(1011), - [sym_case_statement] = STATE(1011), - [sym_function_definition] = STATE(1011), - [sym_compound_statement] = STATE(1011), - [sym_subshell] = STATE(1011), - [sym_pipeline] = STATE(1011), - [sym_list] = STATE(1011), - [sym_negated_command] = STATE(1011), - [sym_test_command] = STATE(1011), - [sym_declaration_command] = STATE(1011), - [sym_unset_command] = STATE(1011), - [sym_command] = STATE(1011), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(1012), - [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(1013), - [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), - }, - [544] = { - [sym_concatenation] = STATE(1015), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [aux_sym_for_statement_repeat1] = STATE(1015), - [anon_sym_RPAREN] = ACTIONS(2116), - [sym__special_characters] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_DOLLAR] = ACTIONS(1099), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1109), - [anon_sym_GT_LPAREN] = ACTIONS(1109), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1101), - }, - [545] = { - [sym_string] = STATE(1016), - [sym_simple_expansion] = STATE(1016), - [sym_string_expansion] = STATE(1016), - [sym_expansion] = STATE(1016), - [sym_command_substitution] = STATE(1016), - [sym_process_substitution] = STATE(1016), - [sym__special_characters] = ACTIONS(2118), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(361), - [sym_raw_string] = ACTIONS(2118), - [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(2118), - }, - [546] = { - [aux_sym_concatenation_repeat1] = STATE(1017), - [sym__simple_heredoc_body] = ACTIONS(779), - [sym__heredoc_body_beginning] = ACTIONS(779), - [sym_file_descriptor] = ACTIONS(779), - [sym__concat] = ACTIONS(1113), - [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), - }, - [547] = { - [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), - }, - [548] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(2120), - [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), - }, - [549] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(455), - [anon_sym_DQUOTE] = ACTIONS(2120), - [anon_sym_DOLLAR] = ACTIONS(2122), - [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), - }, - [550] = { - [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), - }, - [551] = { - [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), - }, - [552] = { - [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), - }, - [553] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(2124), - [sym_comment] = ACTIONS(57), - }, - [554] = { - [sym_subscript] = STATE(1023), - [sym_variable_name] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2128), - [anon_sym_DOLLAR] = ACTIONS(2128), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2130), - [anon_sym_STAR] = ACTIONS(2132), - [anon_sym_AT] = ACTIONS(2132), - [anon_sym_QMARK] = ACTIONS(2132), - [anon_sym_0] = ACTIONS(2130), - [anon_sym__] = ACTIONS(2130), - }, - [555] = { - [sym_concatenation] = STATE(1026), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1026), - [anon_sym_RBRACE] = ACTIONS(2134), - [anon_sym_EQ] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2136), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2138), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_COLON] = ACTIONS(2136), - [anon_sym_COLON_QMARK] = ACTIONS(2136), - [anon_sym_COLON_DASH] = ACTIONS(2136), - [anon_sym_PERCENT] = ACTIONS(2136), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [556] = { - [sym_concatenation] = STATE(1029), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1029), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_EQ] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2144), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2146), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2148), - [anon_sym_COLON] = ACTIONS(2144), - [anon_sym_COLON_QMARK] = ACTIONS(2144), - [anon_sym_COLON_DASH] = ACTIONS(2144), - [anon_sym_PERCENT] = ACTIONS(2144), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [557] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1032), - [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(2150), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2152), - [anon_sym_SEMI_SEMI] = ACTIONS(2154), - [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(2154), - [anon_sym_AMP] = ACTIONS(2150), - }, - [558] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1032), - [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(2150), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2152), - [anon_sym_SEMI_SEMI] = ACTIONS(2154), - [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(2154), - [anon_sym_AMP] = ACTIONS(2150), - }, - [559] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1033), - [sym_for_statement] = STATE(1033), - [sym_c_style_for_statement] = STATE(1033), - [sym_while_statement] = STATE(1033), - [sym_if_statement] = STATE(1033), - [sym_case_statement] = STATE(1033), - [sym_function_definition] = STATE(1033), - [sym_compound_statement] = STATE(1033), - [sym_subshell] = STATE(1033), - [sym_pipeline] = STATE(1033), - [sym_list] = STATE(1033), - [sym_negated_command] = STATE(1033), - [sym_test_command] = STATE(1033), - [sym_declaration_command] = STATE(1033), - [sym_unset_command] = STATE(1033), - [sym_command] = STATE(1033), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(1034), - [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), - }, - [560] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1036), - [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(2156), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2158), - [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(2152), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2156), - }, - [561] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1036), - [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(2156), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2158), - [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(2152), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2156), - }, - [562] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1037), - [sym_for_statement] = STATE(1037), - [sym_c_style_for_statement] = STATE(1037), - [sym_while_statement] = STATE(1037), - [sym_if_statement] = STATE(1037), - [sym_case_statement] = STATE(1037), - [sym_function_definition] = STATE(1037), - [sym_compound_statement] = STATE(1037), - [sym_subshell] = STATE(1037), - [sym_pipeline] = STATE(1037), - [sym_list] = STATE(1037), - [sym_negated_command] = STATE(1037), - [sym_test_command] = STATE(1037), - [sym_declaration_command] = STATE(1037), - [sym_unset_command] = STATE(1037), - [sym_command] = STATE(1037), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(1038), - [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), - }, - [563] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1041), - [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(2160), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2162), - [anon_sym_SEMI_SEMI] = ACTIONS(2164), - [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(2164), - [anon_sym_AMP] = ACTIONS(2160), - }, - [564] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1041), - [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(2160), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2162), - [anon_sym_SEMI_SEMI] = ACTIONS(2164), - [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(2164), - [anon_sym_AMP] = ACTIONS(2160), - }, - [565] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1042), - [sym_for_statement] = STATE(1042), - [sym_c_style_for_statement] = STATE(1042), - [sym_while_statement] = STATE(1042), - [sym_if_statement] = STATE(1042), - [sym_case_statement] = STATE(1042), - [sym_function_definition] = STATE(1042), - [sym_compound_statement] = STATE(1042), - [sym_subshell] = STATE(1042), - [sym_pipeline] = STATE(1042), - [sym_list] = STATE(1042), - [sym_negated_command] = STATE(1042), - [sym_test_command] = STATE(1042), - [sym_declaration_command] = STATE(1042), - [sym_unset_command] = STATE(1042), - [sym_command] = STATE(1042), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(1043), - [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), - }, - [566] = { - [sym__expression] = STATE(1045), - [sym_binary_expression] = STATE(1045), - [sym_unary_expression] = STATE(1045), - [sym_postfix_expression] = STATE(1045), - [sym_parenthesized_expression] = STATE(1045), - [sym_concatenation] = STATE(1045), - [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(2166), - [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), - }, - [567] = { - [anon_sym_SEMI] = ACTIONS(2168), - [anon_sym_SEMI_SEMI] = ACTIONS(2170), - [anon_sym_AMP_AMP] = ACTIONS(1171), - [anon_sym_PIPE_PIPE] = ACTIONS(1171), - [anon_sym_EQ_TILDE] = ACTIONS(1173), - [anon_sym_EQ_EQ] = ACTIONS(1173), - [anon_sym_EQ] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1171), - [anon_sym_LT] = ACTIONS(1175), - [anon_sym_GT] = ACTIONS(1175), - [anon_sym_BANG_EQ] = ACTIONS(1171), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_DASH_EQ] = ACTIONS(1171), - [anon_sym_LT_EQ] = ACTIONS(1171), - [anon_sym_GT_EQ] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1177), - [anon_sym_DASH_DASH] = ACTIONS(1177), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1171), - [anon_sym_LF] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2168), - }, - [568] = { - [anon_sym_RPAREN] = ACTIONS(2172), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_EQ_TILDE] = ACTIONS(1223), - [anon_sym_EQ_EQ] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1225), - [anon_sym_PLUS_EQ] = ACTIONS(1221), - [anon_sym_LT] = ACTIONS(1225), - [anon_sym_GT] = ACTIONS(1225), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_DASH_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1221), - }, - [569] = { - [anon_sym_SEMI] = ACTIONS(2174), - [anon_sym_SEMI_SEMI] = ACTIONS(1229), - [anon_sym_AMP_AMP] = ACTIONS(1171), - [anon_sym_PIPE_PIPE] = ACTIONS(1171), - [anon_sym_EQ_TILDE] = ACTIONS(1173), - [anon_sym_EQ_EQ] = ACTIONS(1173), - [anon_sym_EQ] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1171), - [anon_sym_LT] = ACTIONS(1175), - [anon_sym_GT] = ACTIONS(1175), - [anon_sym_BANG_EQ] = ACTIONS(1171), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_DASH_EQ] = ACTIONS(1171), - [anon_sym_LT_EQ] = ACTIONS(1171), - [anon_sym_GT_EQ] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1177), - [anon_sym_DASH_DASH] = ACTIONS(1177), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1171), - [anon_sym_LF] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(2174), - }, - [570] = { - [sym_string] = STATE(1048), - [sym_simple_expansion] = STATE(1048), - [sym_string_expansion] = STATE(1048), - [sym_expansion] = STATE(1048), - [sym_command_substitution] = STATE(1048), - [sym_process_substitution] = STATE(1048), - [sym__special_characters] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [sym_raw_string] = ACTIONS(2176), - [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(2176), - }, - [571] = { - [aux_sym_concatenation_repeat1] = STATE(1049), - [sym__concat] = ACTIONS(1143), - [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), - }, - [572] = { - [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), - }, - [573] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(2178), - [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), - }, - [574] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(455), - [anon_sym_DQUOTE] = ACTIONS(2178), - [anon_sym_DOLLAR] = ACTIONS(2180), - [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), - }, - [575] = { - [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), - }, - [576] = { - [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), - }, - [577] = { - [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), - }, - [578] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(2182), - [sym_comment] = ACTIONS(57), - }, - [579] = { - [sym_subscript] = STATE(1055), - [sym_variable_name] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2186), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2188), - [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_QMARK] = ACTIONS(2190), - [anon_sym_0] = ACTIONS(2188), - [anon_sym__] = ACTIONS(2188), - }, - [580] = { - [sym_concatenation] = STATE(1058), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1058), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_EQ] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2194), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2198), - [anon_sym_COLON] = ACTIONS(2194), - [anon_sym_COLON_QMARK] = ACTIONS(2194), - [anon_sym_COLON_DASH] = ACTIONS(2194), - [anon_sym_PERCENT] = ACTIONS(2194), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [581] = { - [sym_concatenation] = STATE(1061), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1061), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_EQ] = ACTIONS(2202), - [anon_sym_DASH] = ACTIONS(2202), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2206), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_COLON_QMARK] = ACTIONS(2202), - [anon_sym_COLON_DASH] = ACTIONS(2202), - [anon_sym_PERCENT] = ACTIONS(2202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [582] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1064), - [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(2208), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2210), - [anon_sym_SEMI_SEMI] = ACTIONS(2212), - [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(2212), - [anon_sym_AMP] = ACTIONS(2208), - }, - [583] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1064), - [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(2208), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2210), - [anon_sym_SEMI_SEMI] = ACTIONS(2212), - [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(2212), - [anon_sym_AMP] = ACTIONS(2208), - }, - [584] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1065), - [sym_for_statement] = STATE(1065), - [sym_c_style_for_statement] = STATE(1065), - [sym_while_statement] = STATE(1065), - [sym_if_statement] = STATE(1065), - [sym_case_statement] = STATE(1065), - [sym_function_definition] = STATE(1065), - [sym_compound_statement] = STATE(1065), - [sym_subshell] = STATE(1065), - [sym_pipeline] = STATE(1065), - [sym_list] = STATE(1065), - [sym_negated_command] = STATE(1065), - [sym_test_command] = STATE(1065), - [sym_declaration_command] = STATE(1065), - [sym_unset_command] = STATE(1065), - [sym_command] = STATE(1065), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(1066), - [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), - }, - [585] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1068), - [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(2214), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2216), - [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(2210), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2216), - [anon_sym_AMP] = ACTIONS(2214), - }, - [586] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1068), - [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(2214), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2216), - [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(2210), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(2216), - [anon_sym_AMP] = ACTIONS(2214), - }, - [587] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1069), - [sym_for_statement] = STATE(1069), - [sym_c_style_for_statement] = STATE(1069), - [sym_while_statement] = STATE(1069), - [sym_if_statement] = STATE(1069), - [sym_case_statement] = STATE(1069), - [sym_function_definition] = STATE(1069), - [sym_compound_statement] = STATE(1069), - [sym_subshell] = STATE(1069), - [sym_pipeline] = STATE(1069), - [sym_list] = STATE(1069), - [sym_negated_command] = STATE(1069), - [sym_test_command] = STATE(1069), - [sym_declaration_command] = STATE(1069), - [sym_unset_command] = STATE(1069), - [sym_command] = STATE(1069), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(1070), - [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), - }, - [588] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1073), - [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(2218), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2220), - [anon_sym_SEMI_SEMI] = ACTIONS(2222), - [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(2222), - [anon_sym_AMP] = ACTIONS(2218), - }, - [589] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1073), - [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(2218), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2220), - [anon_sym_SEMI_SEMI] = ACTIONS(2222), - [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(2222), - [anon_sym_AMP] = ACTIONS(2218), - }, - [590] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1074), - [sym_for_statement] = STATE(1074), - [sym_c_style_for_statement] = STATE(1074), - [sym_while_statement] = STATE(1074), - [sym_if_statement] = STATE(1074), - [sym_case_statement] = STATE(1074), - [sym_function_definition] = STATE(1074), - [sym_compound_statement] = STATE(1074), - [sym_subshell] = STATE(1074), - [sym_pipeline] = STATE(1074), - [sym_list] = STATE(1074), - [sym_negated_command] = STATE(1074), - [sym_test_command] = STATE(1074), - [sym_declaration_command] = STATE(1074), - [sym_unset_command] = STATE(1074), - [sym_command] = STATE(1074), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(1075), - [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), - }, - [591] = { - [sym__expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_postfix_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_concatenation] = STATE(1076), - [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(2168), - [anon_sym_SEMI_SEMI] = ACTIONS(2170), - [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(2170), - [anon_sym_AMP] = ACTIONS(2170), - }, - [592] = { - [sym__expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_unary_expression] = STATE(1077), - [sym_postfix_expression] = STATE(1077), - [sym_parenthesized_expression] = STATE(1077), - [sym_concatenation] = STATE(1077), - [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), - }, - [593] = { - [sym__expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_unary_expression] = STATE(1077), - [sym_postfix_expression] = STATE(1077), - [sym_parenthesized_expression] = STATE(1077), - [sym_concatenation] = STATE(1077), - [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(2224), - [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), - }, - [594] = { - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_SEMI_SEMI] = ACTIONS(1285), - [anon_sym_AMP_AMP] = ACTIONS(1285), - [anon_sym_PIPE_PIPE] = ACTIONS(1285), - [anon_sym_EQ_TILDE] = ACTIONS(1285), - [anon_sym_EQ_EQ] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1287), - [anon_sym_PLUS_EQ] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1287), - [anon_sym_GT] = ACTIONS(1287), - [anon_sym_BANG_EQ] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(1287), - [anon_sym_DASH_EQ] = ACTIONS(1285), - [anon_sym_LT_EQ] = ACTIONS(1285), - [anon_sym_GT_EQ] = ACTIONS(1285), - [anon_sym_PLUS_PLUS] = ACTIONS(1285), - [anon_sym_DASH_DASH] = ACTIONS(1285), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1285), - [anon_sym_LF] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1287), - }, - [595] = { - [aux_sym_concatenation_repeat1] = STATE(1080), - [sym__concat] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_SEMI_SEMI] = ACTIONS(2086), - [sym__special_characters] = ACTIONS(2086), - [anon_sym_DQUOTE] = ACTIONS(2086), - [anon_sym_DOLLAR] = ACTIONS(2088), - [sym_raw_string] = ACTIONS(2086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2086), - [anon_sym_BQUOTE] = ACTIONS(2086), - [anon_sym_LT_LPAREN] = ACTIONS(2086), - [anon_sym_GT_LPAREN] = ACTIONS(2086), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2088), - [anon_sym_LF] = ACTIONS(2086), - [anon_sym_AMP] = ACTIONS(2086), - }, - [596] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(1083), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2230), - [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), - }, - [597] = { - [sym_string] = STATE(1085), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_DQUOTE] = ACTIONS(1181), - [anon_sym_DOLLAR] = ACTIONS(2232), - [sym_raw_string] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(2232), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2236), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_QMARK] = ACTIONS(2238), - [anon_sym_0] = ACTIONS(2236), - [anon_sym__] = ACTIONS(2236), - }, - [598] = { - [aux_sym_concatenation_repeat1] = STATE(1080), - [sym__concat] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_SEMI_SEMI] = ACTIONS(2102), - [sym__special_characters] = ACTIONS(2102), - [anon_sym_DQUOTE] = ACTIONS(2102), - [anon_sym_DOLLAR] = ACTIONS(2104), - [sym_raw_string] = ACTIONS(2102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2102), - [anon_sym_BQUOTE] = ACTIONS(2102), - [anon_sym_LT_LPAREN] = ACTIONS(2102), - [anon_sym_GT_LPAREN] = ACTIONS(2102), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2104), - [anon_sym_LF] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2102), - }, - [599] = { - [sym_subscript] = STATE(1090), - [sym_variable_name] = ACTIONS(2240), - [anon_sym_BANG] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2244), - [anon_sym_DOLLAR] = ACTIONS(2244), - [anon_sym_POUND] = ACTIONS(2242), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2248), - [anon_sym_AT] = ACTIONS(2248), - [anon_sym_QMARK] = ACTIONS(2248), - [anon_sym_0] = ACTIONS(2246), - [anon_sym__] = ACTIONS(2246), - }, - [600] = { - [sym__terminated_statement] = STATE(1093), - [sym_redirected_statement] = STATE(1091), - [sym_for_statement] = STATE(1091), - [sym_c_style_for_statement] = STATE(1091), - [sym_while_statement] = STATE(1091), - [sym_if_statement] = STATE(1091), - [sym_case_statement] = STATE(1091), - [sym_function_definition] = STATE(1091), - [sym_compound_statement] = STATE(1091), - [sym_subshell] = STATE(1091), - [sym_pipeline] = STATE(1091), - [sym_list] = STATE(1091), - [sym_negated_command] = STATE(1091), - [sym_test_command] = STATE(1091), - [sym_declaration_command] = STATE(1091), - [sym_unset_command] = STATE(1091), - [sym_command] = STATE(1091), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(1092), - [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(1093), - [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] = { - [sym__terminated_statement] = STATE(1096), - [sym_redirected_statement] = STATE(1094), - [sym_for_statement] = STATE(1094), - [sym_c_style_for_statement] = STATE(1094), - [sym_while_statement] = STATE(1094), - [sym_if_statement] = STATE(1094), - [sym_case_statement] = STATE(1094), - [sym_function_definition] = STATE(1094), - [sym_compound_statement] = STATE(1094), - [sym_subshell] = STATE(1094), - [sym_pipeline] = STATE(1094), - [sym_list] = STATE(1094), - [sym_negated_command] = STATE(1094), - [sym_test_command] = STATE(1094), - [sym_declaration_command] = STATE(1094), - [sym_unset_command] = STATE(1094), - [sym_command] = STATE(1094), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(1095), - [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(1096), - [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), - }, - [602] = { - [sym__terminated_statement] = STATE(1099), - [sym_redirected_statement] = STATE(1097), - [sym_for_statement] = STATE(1097), - [sym_c_style_for_statement] = STATE(1097), - [sym_while_statement] = STATE(1097), - [sym_if_statement] = STATE(1097), - [sym_case_statement] = STATE(1097), - [sym_function_definition] = STATE(1097), - [sym_compound_statement] = STATE(1097), - [sym_subshell] = STATE(1097), - [sym_pipeline] = STATE(1097), - [sym_list] = STATE(1097), - [sym_negated_command] = STATE(1097), - [sym_test_command] = STATE(1097), - [sym_declaration_command] = STATE(1097), - [sym_unset_command] = STATE(1097), - [sym_command] = STATE(1097), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(1098), - [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(1099), - [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), - }, - [603] = { - [sym_concatenation] = STATE(1101), - [sym_string] = STATE(598), - [sym_simple_expansion] = STATE(598), - [sym_string_expansion] = STATE(598), - [sym_expansion] = STATE(598), - [sym_command_substitution] = STATE(598), - [sym_process_substitution] = STATE(598), - [aux_sym_for_statement_repeat1] = STATE(1101), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_SEMI_SEMI] = ACTIONS(2252), - [sym__special_characters] = ACTIONS(1179), - [anon_sym_DQUOTE] = ACTIONS(1181), - [anon_sym_DOLLAR] = ACTIONS(1183), - [sym_raw_string] = ACTIONS(1185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1187), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1189), - [anon_sym_BQUOTE] = ACTIONS(1191), - [anon_sym_LT_LPAREN] = ACTIONS(1193), - [anon_sym_GT_LPAREN] = ACTIONS(1193), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2254), - [anon_sym_LF] = ACTIONS(2252), - [anon_sym_AMP] = ACTIONS(2252), - }, - [604] = { - [sym__simple_heredoc_body] = ACTIONS(2256), - [sym__heredoc_body_beginning] = ACTIONS(2256), - [sym_file_descriptor] = ACTIONS(2256), - [ts_builtin_sym_end] = ACTIONS(2256), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_esac] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_RPAREN] = ACTIONS(2256), - [anon_sym_SEMI_SEMI] = ACTIONS(2256), - [anon_sym_PIPE_AMP] = ACTIONS(2256), - [anon_sym_AMP_AMP] = ACTIONS(2256), - [anon_sym_PIPE_PIPE] = ACTIONS(2256), - [anon_sym_LT] = ACTIONS(2258), - [anon_sym_GT] = ACTIONS(2258), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_AMP_GT] = ACTIONS(2258), - [anon_sym_AMP_GT_GT] = ACTIONS(2256), - [anon_sym_LT_AMP] = ACTIONS(2256), - [anon_sym_GT_AMP] = ACTIONS(2256), - [anon_sym_LT_LT] = ACTIONS(2258), - [anon_sym_LT_LT_DASH] = ACTIONS(2256), - [anon_sym_LT_LT_LT] = ACTIONS(2256), - [anon_sym_BQUOTE] = ACTIONS(2256), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2256), - [anon_sym_AMP] = ACTIONS(2258), - }, - [605] = { - [anon_sym_RPAREN] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_EQ_TILDE] = ACTIONS(1223), - [anon_sym_EQ_EQ] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1225), - [anon_sym_PLUS_EQ] = ACTIONS(1221), - [anon_sym_LT] = ACTIONS(1225), - [anon_sym_GT] = ACTIONS(1225), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_DASH_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1221), - }, - [606] = { - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_EQ_TILDE] = ACTIONS(1223), - [anon_sym_EQ_EQ] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1225), - [anon_sym_PLUS_EQ] = ACTIONS(1221), - [anon_sym_LT] = ACTIONS(1225), - [anon_sym_GT] = ACTIONS(1225), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_DASH_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1221), - }, - [607] = { - [sym_string] = STATE(1103), - [sym_simple_expansion] = STATE(1103), - [sym_string_expansion] = STATE(1103), - [sym_expansion] = STATE(1103), - [sym_command_substitution] = STATE(1103), - [sym_process_substitution] = STATE(1103), - [sym__special_characters] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(415), - [sym_raw_string] = ACTIONS(2262), - [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(2262), - }, - [608] = { - [aux_sym_concatenation_repeat1] = STATE(1104), - [sym__concat] = ACTIONS(1195), - [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), - }, - [609] = { - [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), - }, - [610] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(2264), - [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), - }, - [611] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(455), - [anon_sym_DQUOTE] = ACTIONS(2264), - [anon_sym_DOLLAR] = ACTIONS(2266), - [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), - }, - [612] = { - [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), - }, - [613] = { - [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), - }, - [614] = { - [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), - }, - [615] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(2268), - [sym_comment] = ACTIONS(57), - }, - [616] = { - [sym_subscript] = STATE(1110), - [sym_variable_name] = ACTIONS(2270), - [anon_sym_DASH] = ACTIONS(2272), - [anon_sym_DOLLAR] = ACTIONS(2272), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2276), - [anon_sym_AT] = ACTIONS(2276), - [anon_sym_QMARK] = ACTIONS(2276), - [anon_sym_0] = ACTIONS(2274), - [anon_sym__] = ACTIONS(2274), - }, - [617] = { - [sym_concatenation] = STATE(1113), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1113), - [anon_sym_RBRACE] = ACTIONS(2278), - [anon_sym_EQ] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_COLON] = ACTIONS(2280), - [anon_sym_COLON_QMARK] = ACTIONS(2280), - [anon_sym_COLON_DASH] = ACTIONS(2280), - [anon_sym_PERCENT] = ACTIONS(2280), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [618] = { - [sym_concatenation] = STATE(1116), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1116), - [anon_sym_RBRACE] = ACTIONS(2286), - [anon_sym_EQ] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2292), - [anon_sym_COLON] = ACTIONS(2288), - [anon_sym_COLON_QMARK] = ACTIONS(2288), - [anon_sym_COLON_DASH] = ACTIONS(2288), - [anon_sym_PERCENT] = ACTIONS(2288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [619] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1119), - [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(2294), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2296), - [anon_sym_SEMI_SEMI] = ACTIONS(2298), - [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(2298), - [anon_sym_AMP] = ACTIONS(2294), - }, - [620] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1119), - [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(2294), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2296), - [anon_sym_SEMI_SEMI] = ACTIONS(2298), - [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(2298), - [anon_sym_AMP] = ACTIONS(2294), - }, - [621] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1120), - [sym_for_statement] = STATE(1120), - [sym_c_style_for_statement] = STATE(1120), - [sym_while_statement] = STATE(1120), - [sym_if_statement] = STATE(1120), - [sym_case_statement] = STATE(1120), - [sym_function_definition] = STATE(1120), - [sym_compound_statement] = STATE(1120), - [sym_subshell] = STATE(1120), - [sym_pipeline] = STATE(1120), - [sym_list] = STATE(1120), - [sym_negated_command] = STATE(1120), - [sym_test_command] = STATE(1120), - [sym_declaration_command] = STATE(1120), - [sym_unset_command] = STATE(1120), - [sym_command] = STATE(1120), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(1121), - [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), - }, - [622] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1123), - [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(2300), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2302), - [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(2296), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2302), - [anon_sym_AMP] = ACTIONS(2300), - }, - [623] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1123), - [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(2300), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2302), - [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(2296), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(2302), - [anon_sym_AMP] = ACTIONS(2300), - }, - [624] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1124), - [sym_for_statement] = STATE(1124), - [sym_c_style_for_statement] = STATE(1124), - [sym_while_statement] = STATE(1124), - [sym_if_statement] = STATE(1124), - [sym_case_statement] = STATE(1124), - [sym_function_definition] = STATE(1124), - [sym_compound_statement] = STATE(1124), - [sym_subshell] = STATE(1124), - [sym_pipeline] = STATE(1124), - [sym_list] = STATE(1124), - [sym_negated_command] = STATE(1124), - [sym_test_command] = STATE(1124), - [sym_declaration_command] = STATE(1124), - [sym_unset_command] = STATE(1124), - [sym_command] = STATE(1124), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(1125), - [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), - }, - [625] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1128), - [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(2304), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2306), - [anon_sym_SEMI_SEMI] = ACTIONS(2308), - [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(2308), - [anon_sym_AMP] = ACTIONS(2304), - }, - [626] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1128), - [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(2304), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2306), - [anon_sym_SEMI_SEMI] = ACTIONS(2308), - [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(2308), - [anon_sym_AMP] = ACTIONS(2304), - }, - [627] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1129), - [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_compound_statement] = 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(83), - [sym_variable_assignment] = STATE(1130), - [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), - }, - [628] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2310), - [anon_sym_EQ_TILDE] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2310), - [anon_sym_EQ] = ACTIONS(2312), - [anon_sym_PLUS_EQ] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_GT] = ACTIONS(2312), - [anon_sym_BANG_EQ] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_DASH_EQ] = ACTIONS(2310), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2310), - }, - [629] = { - [sym__expression] = STATE(1131), - [sym_binary_expression] = STATE(1131), - [sym_unary_expression] = STATE(1131), - [sym_postfix_expression] = STATE(1131), - [sym_parenthesized_expression] = STATE(1131), - [sym_concatenation] = STATE(1131), - [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), - }, - [630] = { - [sym__expression] = STATE(1131), - [sym_binary_expression] = STATE(1131), - [sym_unary_expression] = STATE(1131), - [sym_postfix_expression] = STATE(1131), - [sym_parenthesized_expression] = STATE(1131), - [sym_concatenation] = STATE(1131), - [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(2314), - [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), - }, - [631] = { - [anon_sym_RPAREN] = ACTIONS(1285), - [anon_sym_AMP_AMP] = ACTIONS(1285), - [anon_sym_PIPE_PIPE] = ACTIONS(1285), - [anon_sym_EQ_TILDE] = ACTIONS(1285), - [anon_sym_EQ_EQ] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1287), - [anon_sym_PLUS_EQ] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1287), - [anon_sym_GT] = ACTIONS(1287), - [anon_sym_BANG_EQ] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(1287), - [anon_sym_DASH_EQ] = ACTIONS(1285), - [anon_sym_LT_EQ] = ACTIONS(1285), - [anon_sym_GT_EQ] = ACTIONS(1285), - [anon_sym_PLUS_PLUS] = ACTIONS(1285), - [anon_sym_DASH_DASH] = ACTIONS(1285), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1285), - }, - [632] = { - [sym__concat] = ACTIONS(1730), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1730), - [anon_sym_EQ_TILDE] = ACTIONS(1730), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_PLUS_EQ] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_DASH_EQ] = ACTIONS(1730), - [anon_sym_LT_EQ] = ACTIONS(1730), - [anon_sym_GT_EQ] = ACTIONS(1730), - [anon_sym_PLUS_PLUS] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1730), - }, - [633] = { - [aux_sym_concatenation_repeat1] = STATE(633), - [sym__concat] = ACTIONS(2316), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_EQ_TILDE] = ACTIONS(1730), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_PLUS_EQ] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_DASH_EQ] = ACTIONS(1730), - [anon_sym_LT_EQ] = ACTIONS(1730), - [anon_sym_GT_EQ] = ACTIONS(1730), - [anon_sym_PLUS_PLUS] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1730), - }, - [634] = { - [sym__concat] = ACTIONS(1737), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1737), - [anon_sym_EQ_TILDE] = ACTIONS(1737), - [anon_sym_EQ_EQ] = ACTIONS(1737), - [anon_sym_EQ] = ACTIONS(1739), - [anon_sym_PLUS_EQ] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_BANG_EQ] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_DASH_EQ] = ACTIONS(1737), - [anon_sym_LT_EQ] = ACTIONS(1737), - [anon_sym_GT_EQ] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1737), - }, - [635] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(2319), - [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), - }, - [636] = { - [sym_concatenation] = STATE(1137), - [sym_string] = STATE(1136), - [sym_simple_expansion] = STATE(1136), - [sym_string_expansion] = STATE(1136), - [sym_expansion] = STATE(1136), - [sym_command_substitution] = STATE(1136), - [sym_process_substitution] = STATE(1136), - [anon_sym_RBRACE] = ACTIONS(2321), - [sym__special_characters] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(2325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2325), - }, - [637] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(2327), - [sym_comment] = ACTIONS(57), - }, - [638] = { - [sym_concatenation] = STATE(1141), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1141), - [anon_sym_RBRACE] = ACTIONS(2329), - [anon_sym_EQ] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2335), - [anon_sym_COLON] = ACTIONS(2331), - [anon_sym_COLON_QMARK] = ACTIONS(2331), - [anon_sym_COLON_DASH] = ACTIONS(2331), - [anon_sym_PERCENT] = ACTIONS(2331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [639] = { - [sym_concatenation] = STATE(1143), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1143), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2339), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2341), - [anon_sym_COLON] = ACTIONS(2337), - [anon_sym_COLON_QMARK] = ACTIONS(2337), - [anon_sym_COLON_DASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2337), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__concat] = ACTIONS(1838), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1838), - [anon_sym_AMP_AMP] = ACTIONS(1838), - [anon_sym_PIPE_PIPE] = ACTIONS(1838), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1838), - [anon_sym_EQ_TILDE] = ACTIONS(1838), - [anon_sym_EQ_EQ] = ACTIONS(1838), - [anon_sym_EQ] = ACTIONS(1840), - [anon_sym_PLUS_EQ] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_BANG_EQ] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1840), - [anon_sym_DASH_EQ] = ACTIONS(1838), - [anon_sym_LT_EQ] = ACTIONS(1838), - [anon_sym_GT_EQ] = ACTIONS(1838), - [anon_sym_PLUS_PLUS] = ACTIONS(1838), - [anon_sym_DASH_DASH] = ACTIONS(1838), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1838), - }, - [641] = { - [sym_concatenation] = STATE(1146), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1146), - [sym_regex] = ACTIONS(2343), - [anon_sym_RBRACE] = ACTIONS(2345), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(2347), - [anon_sym_COLON_QMARK] = ACTIONS(2347), - [anon_sym_COLON_DASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [642] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(2345), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__concat] = ACTIONS(1886), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1886), - [anon_sym_EQ_TILDE] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ] = ACTIONS(1888), - [anon_sym_PLUS_EQ] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_BANG_EQ] = ACTIONS(1886), - [anon_sym_PLUS] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1888), - [anon_sym_DASH_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1886), - [anon_sym_GT_EQ] = ACTIONS(1886), - [anon_sym_PLUS_PLUS] = ACTIONS(1886), - [anon_sym_DASH_DASH] = ACTIONS(1886), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1886), - }, - [644] = { - [sym_concatenation] = STATE(1143), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1143), - [sym_regex] = ACTIONS(2351), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2339), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(2337), - [anon_sym_COLON_QMARK] = ACTIONS(2337), - [anon_sym_COLON_DASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2337), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [645] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [646] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [647] = { - [sym__concat] = ACTIONS(1894), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1894), - [anon_sym_AMP_AMP] = ACTIONS(1894), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1894), - [anon_sym_EQ_TILDE] = ACTIONS(1894), - [anon_sym_EQ_EQ] = ACTIONS(1894), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_PLUS_EQ] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_BANG_EQ] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_DASH_EQ] = ACTIONS(1894), - [anon_sym_LT_EQ] = ACTIONS(1894), - [anon_sym_GT_EQ] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1894), - }, - [648] = { - [anon_sym_SEMI] = ACTIONS(2355), - [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_SEMI_SEMI] = ACTIONS(2357), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2357), - }, - [649] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1151), - [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(2359), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_SEMI_SEMI] = ACTIONS(2361), - [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(2361), - [anon_sym_AMP] = ACTIONS(2359), - }, - [650] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1151), - [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(2359), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_SEMI_SEMI] = ACTIONS(2361), - [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(2361), - [anon_sym_AMP] = ACTIONS(2359), - }, - [651] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(2353), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [652] = { - [anon_sym_SEMI] = ACTIONS(2363), - [anon_sym_SEMI_SEMI] = ACTIONS(2365), - [anon_sym_BQUOTE] = ACTIONS(2353), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2365), - [anon_sym_AMP] = ACTIONS(2365), - }, - [653] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1154), - [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(2367), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2369), - [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(2353), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2369), - [anon_sym_AMP] = ACTIONS(2367), - }, - [654] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1154), - [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(2367), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2369), - [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(2353), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(2369), - [anon_sym_AMP] = ACTIONS(2367), - }, - [655] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(2371), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [656] = { - [sym__concat] = ACTIONS(1928), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1928), - [anon_sym_EQ_TILDE] = ACTIONS(1928), - [anon_sym_EQ_EQ] = ACTIONS(1928), - [anon_sym_EQ] = ACTIONS(1930), - [anon_sym_PLUS_EQ] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1928), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_DASH_EQ] = ACTIONS(1928), - [anon_sym_LT_EQ] = ACTIONS(1928), - [anon_sym_GT_EQ] = ACTIONS(1928), - [anon_sym_PLUS_PLUS] = ACTIONS(1928), - [anon_sym_DASH_DASH] = ACTIONS(1928), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1928), - }, - [657] = { - [anon_sym_SEMI] = ACTIONS(2373), - [anon_sym_RPAREN] = ACTIONS(2371), - [anon_sym_SEMI_SEMI] = ACTIONS(2375), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - }, - [658] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1158), - [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(2377), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2371), - [anon_sym_SEMI_SEMI] = ACTIONS(2379), - [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(2379), - [anon_sym_AMP] = ACTIONS(2377), - }, - [659] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1158), - [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(2377), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2371), - [anon_sym_SEMI_SEMI] = ACTIONS(2379), - [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(2379), - [anon_sym_AMP] = ACTIONS(2377), - }, - [660] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(2381), - [anon_sym_AMP_AMP] = ACTIONS(2381), - [anon_sym_PIPE_PIPE] = ACTIONS(2381), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2381), - [anon_sym_EQ_TILDE] = ACTIONS(2381), - [anon_sym_EQ_EQ] = ACTIONS(2381), - [anon_sym_EQ] = ACTIONS(2383), - [anon_sym_PLUS_EQ] = ACTIONS(2381), - [anon_sym_LT] = ACTIONS(2383), - [anon_sym_GT] = ACTIONS(2383), - [anon_sym_BANG_EQ] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_DASH_EQ] = ACTIONS(2381), - [anon_sym_LT_EQ] = ACTIONS(2381), - [anon_sym_GT_EQ] = ACTIONS(2381), - [anon_sym_PLUS_PLUS] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(2381), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2381), - }, - [661] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(2381), - [anon_sym_AMP_AMP] = ACTIONS(2381), - [anon_sym_PIPE_PIPE] = ACTIONS(2381), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2381), - [anon_sym_EQ_TILDE] = ACTIONS(2381), - [anon_sym_EQ_EQ] = ACTIONS(2381), - [anon_sym_EQ] = ACTIONS(2383), - [anon_sym_PLUS_EQ] = ACTIONS(2381), - [anon_sym_LT] = ACTIONS(2383), - [anon_sym_GT] = ACTIONS(2383), - [anon_sym_BANG_EQ] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_DASH_EQ] = ACTIONS(2381), - [anon_sym_LT_EQ] = ACTIONS(2381), - [anon_sym_GT_EQ] = ACTIONS(2381), - [anon_sym_PLUS_PLUS] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(2381), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2381), - }, - [662] = { - [aux_sym_concatenation_repeat1] = STATE(1159), - [sym__simple_heredoc_body] = ACTIONS(1111), - [sym__heredoc_body_beginning] = ACTIONS(1111), - [sym_file_descriptor] = ACTIONS(1111), - [sym__concat] = ACTIONS(1113), - [sym_variable_name] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(1115), - [anon_sym_SEMI_SEMI] = ACTIONS(1111), - [anon_sym_PIPE_AMP] = ACTIONS(1111), - [anon_sym_AMP_AMP] = ACTIONS(1111), - [anon_sym_PIPE_PIPE] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1115), - [anon_sym_GT] = ACTIONS(1115), - [anon_sym_GT_GT] = ACTIONS(1111), - [anon_sym_AMP_GT] = ACTIONS(1115), - [anon_sym_AMP_GT_GT] = ACTIONS(1111), - [anon_sym_LT_AMP] = ACTIONS(1111), - [anon_sym_GT_AMP] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1115), - [anon_sym_LT_LT_DASH] = ACTIONS(1111), - [anon_sym_LT_LT_LT] = ACTIONS(1111), - [sym__special_characters] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(1115), - [sym_raw_string] = ACTIONS(1111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1111), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1111), - [anon_sym_BQUOTE] = ACTIONS(1111), - [anon_sym_LT_LPAREN] = ACTIONS(1111), - [anon_sym_GT_LPAREN] = ACTIONS(1111), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1115), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_AMP] = ACTIONS(1115), - }, - [663] = { - [aux_sym_concatenation_repeat1] = STATE(1159), - [sym__simple_heredoc_body] = ACTIONS(1089), - [sym__heredoc_body_beginning] = ACTIONS(1089), - [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(1113), - [sym_variable_name] = ACTIONS(1089), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_SEMI_SEMI] = ACTIONS(1089), - [anon_sym_PIPE_AMP] = ACTIONS(1089), - [anon_sym_AMP_AMP] = ACTIONS(1089), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1089), - [anon_sym_LT_AMP] = ACTIONS(1089), - [anon_sym_GT_AMP] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_LT_LT_DASH] = ACTIONS(1089), - [anon_sym_LT_LT_LT] = ACTIONS(1089), - [sym__special_characters] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_DOLLAR] = ACTIONS(1091), - [sym_raw_string] = ACTIONS(1089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1089), - [anon_sym_GT_LPAREN] = ACTIONS(1089), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1091), - [anon_sym_LF] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - }, - [664] = { - [sym_concatenation] = STATE(789), - [sym_string] = STATE(1161), - [sym_array] = STATE(789), - [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__empty_value] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1509), - [sym__special_characters] = ACTIONS(2385), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(2387), - [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(2387), - }, - [665] = { - [aux_sym_concatenation_repeat1] = STATE(1162), - [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), - }, - [666] = { - [sym_variable_assignment] = STATE(666), - [sym_subscript] = STATE(261), - [sym_concatenation] = STATE(666), - [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(666), - [sym__simple_heredoc_body] = ACTIONS(1563), - [sym__heredoc_body_beginning] = ACTIONS(1563), - [sym_file_descriptor] = ACTIONS(1563), - [sym_variable_name] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_SEMI_SEMI] = ACTIONS(1563), - [anon_sym_PIPE_AMP] = ACTIONS(1563), - [anon_sym_AMP_AMP] = ACTIONS(1563), - [anon_sym_PIPE_PIPE] = ACTIONS(1563), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_GT_GT] = ACTIONS(1563), - [anon_sym_AMP_GT] = ACTIONS(1568), - [anon_sym_AMP_GT_GT] = ACTIONS(1563), - [anon_sym_LT_AMP] = ACTIONS(1563), - [anon_sym_GT_AMP] = ACTIONS(1563), - [anon_sym_LT_LT] = ACTIONS(1568), - [anon_sym_LT_LT_DASH] = ACTIONS(1563), - [anon_sym_LT_LT_LT] = ACTIONS(1563), - [sym__special_characters] = ACTIONS(2392), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_DOLLAR] = ACTIONS(1576), - [sym_raw_string] = ACTIONS(2395), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1582), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1585), - [anon_sym_BQUOTE] = ACTIONS(1588), - [anon_sym_LT_LPAREN] = ACTIONS(1591), - [anon_sym_GT_LPAREN] = ACTIONS(1591), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2398), - [sym_word] = ACTIONS(2401), - [anon_sym_LF] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1568), - }, - [667] = { - [aux_sym_concatenation_repeat1] = STATE(1163), - [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), - }, - [668] = { - [sym_concatenation] = STATE(668), - [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(668), - [sym__simple_heredoc_body] = ACTIONS(1648), - [sym__heredoc_body_beginning] = ACTIONS(1648), - [sym_file_descriptor] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_SEMI_SEMI] = ACTIONS(1648), - [anon_sym_PIPE_AMP] = ACTIONS(1648), - [anon_sym_AMP_AMP] = ACTIONS(1648), - [anon_sym_PIPE_PIPE] = ACTIONS(1648), - [anon_sym_LT] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1650), - [anon_sym_GT_GT] = ACTIONS(1648), - [anon_sym_AMP_GT] = ACTIONS(1650), - [anon_sym_AMP_GT_GT] = ACTIONS(1648), - [anon_sym_LT_AMP] = ACTIONS(1648), - [anon_sym_GT_AMP] = ACTIONS(1648), - [anon_sym_LT_LT] = ACTIONS(1650), - [anon_sym_LT_LT_DASH] = ACTIONS(1648), - [anon_sym_LT_LT_LT] = ACTIONS(1648), - [sym__special_characters] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(1655), - [anon_sym_DOLLAR] = ACTIONS(1658), - [sym_raw_string] = ACTIONS(2407), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1667), - [anon_sym_BQUOTE] = ACTIONS(1670), - [anon_sym_LT_LPAREN] = ACTIONS(1673), - [anon_sym_GT_LPAREN] = ACTIONS(1673), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2410), - [sym_word] = ACTIONS(2413), - [anon_sym_LF] = ACTIONS(1648), - [anon_sym_AMP] = ACTIONS(1650), - }, - [669] = { - [aux_sym_concatenation_repeat1] = STATE(669), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_EQ_TILDE] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [670] = { - [sym__simple_heredoc_body] = ACTIONS(2416), - [sym__heredoc_body_beginning] = ACTIONS(2416), - [sym_file_descriptor] = ACTIONS(2416), - [ts_builtin_sym_end] = ACTIONS(2416), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_esac] = ACTIONS(2416), - [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(2418), - [anon_sym_GT] = ACTIONS(2418), - [anon_sym_GT_GT] = ACTIONS(2416), - [anon_sym_AMP_GT] = ACTIONS(2418), - [anon_sym_AMP_GT_GT] = ACTIONS(2416), - [anon_sym_LT_AMP] = ACTIONS(2416), - [anon_sym_GT_AMP] = ACTIONS(2416), - [anon_sym_LT_LT] = ACTIONS(2418), - [anon_sym_LT_LT_DASH] = ACTIONS(2416), - [anon_sym_LT_LT_LT] = ACTIONS(2416), - [anon_sym_BQUOTE] = ACTIONS(2416), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2418), - }, - [671] = { - [sym__terminated_statement] = STATE(1165), - [sym_redirected_statement] = STATE(526), - [sym_for_statement] = STATE(526), - [sym_c_style_for_statement] = STATE(526), - [sym_while_statement] = STATE(526), - [sym_if_statement] = STATE(526), - [sym_case_statement] = STATE(526), - [sym_function_definition] = STATE(526), - [sym_compound_statement] = STATE(526), - [sym_subshell] = STATE(526), - [sym_pipeline] = STATE(526), - [sym_list] = STATE(526), - [sym_negated_command] = STATE(526), - [sym_test_command] = STATE(526), - [sym_declaration_command] = STATE(526), - [sym_unset_command] = STATE(526), - [sym_command] = STATE(526), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(527), - [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_done] = ACTIONS(2420), - [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), - }, - [672] = { - [sym_concatenation] = STATE(983), - [sym_string] = STATE(1167), - [sym_simple_expansion] = STATE(1167), - [sym_string_expansion] = STATE(1167), - [sym_expansion] = STATE(1167), - [sym_command_substitution] = STATE(1167), - [sym_process_substitution] = STATE(1167), - [sym__special_characters] = ACTIONS(2422), - [anon_sym_DQUOTE] = ACTIONS(43), - [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(2424), - [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(2424), - }, - [673] = { - [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(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1968), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [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_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), - [sym_variable_name] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1968), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [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__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] = { - [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(1972), - [sym__heredoc_body_beginning] = ACTIONS(1972), - [sym_file_descriptor] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(503), - [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), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1974), - }, - [676] = { - [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(1972), - [sym__heredoc_body_beginning] = ACTIONS(1972), - [sym_file_descriptor] = ACTIONS(339), - [sym_variable_name] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(503), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [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(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1972), - [anon_sym_LT_LT_LT] = ACTIONS(1972), - [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(1972), - [anon_sym_AMP] = ACTIONS(1974), - }, - [677] = { - [aux_sym_concatenation_repeat1] = STATE(1168), - [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), - }, - [678] = { - [aux_sym_concatenation_repeat1] = STATE(1168), - [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), - }, - [679] = { - [aux_sym_concatenation_repeat1] = STATE(1168), - [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), - }, - [680] = { - [aux_sym_concatenation_repeat1] = STATE(1168), - [sym__simple_heredoc_body] = ACTIONS(1984), - [sym__heredoc_body_beginning] = ACTIONS(1984), - [sym_file_descriptor] = ACTIONS(1984), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_SEMI_SEMI] = ACTIONS(1984), - [anon_sym_PIPE_AMP] = ACTIONS(1984), - [anon_sym_AMP_AMP] = ACTIONS(1984), - [anon_sym_PIPE_PIPE] = ACTIONS(1984), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_GT] = ACTIONS(1986), - [anon_sym_GT_GT] = ACTIONS(1984), - [anon_sym_AMP_GT] = ACTIONS(1986), - [anon_sym_AMP_GT_GT] = ACTIONS(1984), - [anon_sym_LT_AMP] = ACTIONS(1984), - [anon_sym_GT_AMP] = ACTIONS(1984), - [anon_sym_LT_LT] = ACTIONS(1986), - [anon_sym_LT_LT_DASH] = ACTIONS(1984), - [anon_sym_LT_LT_LT] = ACTIONS(1984), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1986), - }, - [681] = { - [anon_sym_do] = ACTIONS(1988), - [anon_sym_then] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - }, - [682] = { - [sym_file_redirect] = STATE(682), - [sym_heredoc_redirect] = STATE(682), - [sym_herestring_redirect] = STATE(682), - [aux_sym_redirected_statement_repeat1] = STATE(682), - [sym__simple_heredoc_body] = ACTIONS(1994), - [sym__heredoc_body_beginning] = ACTIONS(1994), - [sym_file_descriptor] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(1999), - [anon_sym_PIPE] = ACTIONS(1999), - [anon_sym_SEMI_SEMI] = ACTIONS(1994), - [anon_sym_PIPE_AMP] = ACTIONS(1994), - [anon_sym_AMP_AMP] = ACTIONS(1994), - [anon_sym_PIPE_PIPE] = ACTIONS(1994), - [anon_sym_LT] = ACTIONS(2429), - [anon_sym_GT] = ACTIONS(2429), - [anon_sym_GT_GT] = ACTIONS(2432), - [anon_sym_AMP_GT] = ACTIONS(2429), - [anon_sym_AMP_GT_GT] = ACTIONS(2432), - [anon_sym_LT_AMP] = ACTIONS(2432), - [anon_sym_GT_AMP] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_LT_LT_DASH] = ACTIONS(2010), - [anon_sym_LT_LT_LT] = ACTIONS(2435), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1999), - }, - [683] = { - [aux_sym_concatenation_repeat1] = STATE(266), - [sym__simple_heredoc_body] = ACTIONS(2020), - [sym__heredoc_body_beginning] = ACTIONS(2020), - [sym_file_descriptor] = ACTIONS(2020), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_SEMI_SEMI] = ACTIONS(2020), - [anon_sym_PIPE_AMP] = ACTIONS(2020), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_EQ_TILDE] = ACTIONS(2022), - [anon_sym_EQ_EQ] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(2022), - [anon_sym_GT] = ACTIONS(2022), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_AMP_GT] = ACTIONS(2022), - [anon_sym_AMP_GT_GT] = ACTIONS(2020), - [anon_sym_LT_AMP] = ACTIONS(2020), - [anon_sym_GT_AMP] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2022), - [anon_sym_LT_LT_DASH] = ACTIONS(2020), - [anon_sym_LT_LT_LT] = ACTIONS(2020), - [sym__special_characters] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_DOLLAR] = ACTIONS(2022), - [sym_raw_string] = ACTIONS(2020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2020), - [anon_sym_BQUOTE] = ACTIONS(2020), - [anon_sym_LT_LPAREN] = ACTIONS(2020), - [anon_sym_GT_LPAREN] = ACTIONS(2020), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2022), - [anon_sym_LF] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2022), - }, - [684] = { - [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), - }, - [685] = { - [sym_concatenation] = STATE(685), - [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(685), - [sym__simple_heredoc_body] = ACTIONS(2016), - [sym__heredoc_body_beginning] = ACTIONS(2016), - [sym_file_descriptor] = 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(2438), - [anon_sym_EQ_EQ] = ACTIONS(2438), - [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(2441), - [anon_sym_DQUOTE] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(2033), - [sym_raw_string] = ACTIONS(2444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2042), - [anon_sym_BQUOTE] = ACTIONS(2045), - [anon_sym_LT_LPAREN] = ACTIONS(2048), - [anon_sym_GT_LPAREN] = ACTIONS(2048), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2447), - [anon_sym_LF] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2018), - }, - [686] = { - [sym_concatenation] = STATE(685), - [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(685), - [sym__simple_heredoc_body] = ACTIONS(2062), - [sym__heredoc_body_beginning] = ACTIONS(2062), - [sym_file_descriptor] = ACTIONS(2062), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_SEMI_SEMI] = ACTIONS(2062), - [anon_sym_PIPE_AMP] = ACTIONS(2062), - [anon_sym_AMP_AMP] = ACTIONS(2062), - [anon_sym_PIPE_PIPE] = ACTIONS(2062), - [anon_sym_EQ_TILDE] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_GT_GT] = ACTIONS(2062), - [anon_sym_AMP_GT] = ACTIONS(2064), - [anon_sym_AMP_GT_GT] = ACTIONS(2062), - [anon_sym_LT_AMP] = ACTIONS(2062), - [anon_sym_GT_AMP] = ACTIONS(2062), - [anon_sym_LT_LT] = ACTIONS(2064), - [anon_sym_LT_LT_DASH] = ACTIONS(2062), - [anon_sym_LT_LT_LT] = ACTIONS(2062), - [sym__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(2062), - [anon_sym_AMP] = ACTIONS(2064), - }, - [687] = { - [sym__simple_heredoc_body] = ACTIONS(2450), - [sym__heredoc_body_beginning] = ACTIONS(2450), - [sym_file_descriptor] = ACTIONS(2450), - [ts_builtin_sym_end] = ACTIONS(2450), - [anon_sym_SEMI] = ACTIONS(2452), - [anon_sym_esac] = ACTIONS(2450), - [anon_sym_PIPE] = ACTIONS(2452), - [anon_sym_RPAREN] = ACTIONS(2450), - [anon_sym_SEMI_SEMI] = ACTIONS(2450), - [anon_sym_PIPE_AMP] = ACTIONS(2450), - [anon_sym_AMP_AMP] = ACTIONS(2450), - [anon_sym_PIPE_PIPE] = ACTIONS(2450), - [anon_sym_LT] = ACTIONS(2452), - [anon_sym_GT] = ACTIONS(2452), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_AMP_GT] = ACTIONS(2452), - [anon_sym_AMP_GT_GT] = ACTIONS(2450), - [anon_sym_LT_AMP] = ACTIONS(2450), - [anon_sym_GT_AMP] = ACTIONS(2450), - [anon_sym_LT_LT] = ACTIONS(2452), - [anon_sym_LT_LT_DASH] = ACTIONS(2450), - [anon_sym_LT_LT_LT] = ACTIONS(2450), - [anon_sym_BQUOTE] = ACTIONS(2450), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2450), - [anon_sym_AMP] = ACTIONS(2452), - }, - [688] = { - [sym__terminated_statement] = STATE(1169), - [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), - }, - [689] = { - [sym__terminated_statement] = STATE(1170), - [sym_redirected_statement] = STATE(526), - [sym_for_statement] = STATE(526), - [sym_c_style_for_statement] = STATE(526), - [sym_while_statement] = STATE(526), - [sym_if_statement] = STATE(526), - [sym_case_statement] = STATE(526), - [sym_function_definition] = STATE(526), - [sym_compound_statement] = STATE(526), - [sym_subshell] = STATE(526), - [sym_pipeline] = STATE(526), - [sym_list] = STATE(526), - [sym_negated_command] = STATE(526), - [sym_test_command] = STATE(526), - [sym_declaration_command] = STATE(526), - [sym_unset_command] = STATE(526), - [sym_command] = STATE(526), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(527), - [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(1170), - [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_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] = { - [anon_sym_fi] = ACTIONS(2456), - [sym_comment] = ACTIONS(57), - }, - [691] = { - [sym__terminated_statement] = STATE(1173), - [sym_redirected_statement] = STATE(526), - [sym_for_statement] = STATE(526), - [sym_c_style_for_statement] = STATE(526), - [sym_while_statement] = STATE(526), - [sym_if_statement] = STATE(526), - [sym_elif_clause] = STATE(1174), - [sym_else_clause] = STATE(1172), - [sym_case_statement] = STATE(526), - [sym_function_definition] = STATE(526), - [sym_compound_statement] = STATE(526), - [sym_subshell] = STATE(526), - [sym_pipeline] = STATE(526), - [sym_list] = STATE(526), - [sym_negated_command] = STATE(526), - [sym_test_command] = STATE(526), - [sym_declaration_command] = STATE(526), - [sym_unset_command] = STATE(526), - [sym_command] = STATE(526), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(527), - [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(1173), - [aux_sym_if_statement_repeat1] = STATE(1174), - [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(2458), - [anon_sym_elif] = ACTIONS(1327), - [anon_sym_else] = ACTIONS(1329), - [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), - }, - [692] = { - [sym_elif_clause] = STATE(1175), - [sym_else_clause] = STATE(1172), - [aux_sym_if_statement_repeat1] = STATE(1175), - [anon_sym_fi] = ACTIONS(2456), - [anon_sym_elif] = ACTIONS(2460), - [anon_sym_else] = ACTIONS(2462), - [sym_comment] = ACTIONS(57), - }, - [693] = { - [sym__concat] = ACTIONS(1730), - [anon_sym_in] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1730), - }, - [694] = { - [sym_case_item] = STATE(1181), - [sym_last_case_item] = STATE(1179), - [sym_concatenation] = STATE(1180), - [sym_string] = STATE(1178), - [sym_simple_expansion] = STATE(1178), - [sym_string_expansion] = STATE(1178), - [sym_expansion] = STATE(1178), - [sym_command_substitution] = STATE(1178), - [sym_process_substitution] = STATE(1178), - [aux_sym_case_statement_repeat1] = STATE(1181), - [anon_sym_esac] = ACTIONS(2464), - [sym__special_characters] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(415), - [sym_raw_string] = ACTIONS(2468), - [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(2470), - }, - [695] = { - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_SEMI_SEMI] = ACTIONS(2474), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2474), - }, - [696] = { - [aux_sym_concatenation_repeat1] = STATE(696), - [sym__concat] = ACTIONS(2476), - [anon_sym_in] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1730), - }, - [697] = { - [sym__concat] = ACTIONS(1737), - [anon_sym_in] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_SEMI_SEMI] = ACTIONS(1737), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1737), - }, - [698] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(2479), - [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), - }, - [699] = { - [sym_case_item] = STATE(1186), - [sym_last_case_item] = STATE(1185), - [sym_concatenation] = STATE(1180), - [sym_string] = STATE(1178), - [sym_simple_expansion] = STATE(1178), - [sym_string_expansion] = STATE(1178), - [sym_expansion] = STATE(1178), - [sym_command_substitution] = STATE(1178), - [sym_process_substitution] = STATE(1178), - [aux_sym_case_statement_repeat1] = STATE(1186), - [anon_sym_esac] = ACTIONS(2481), - [sym__special_characters] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(415), - [sym_raw_string] = ACTIONS(2468), - [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(2470), - }, - [700] = { - [anon_sym_SEMI] = ACTIONS(2483), - [anon_sym_SEMI_SEMI] = ACTIONS(2485), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2485), - }, - [701] = { - [sym_concatenation] = STATE(1191), - [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), - [anon_sym_RBRACE] = ACTIONS(2487), - [sym__special_characters] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(2491), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2491), - }, - [702] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(2493), - [sym_comment] = ACTIONS(57), - }, - [703] = { - [sym_concatenation] = STATE(1195), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1195), - [anon_sym_RBRACE] = ACTIONS(2495), - [anon_sym_EQ] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2499), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2501), - [anon_sym_COLON] = ACTIONS(2497), - [anon_sym_COLON_QMARK] = ACTIONS(2497), - [anon_sym_COLON_DASH] = ACTIONS(2497), - [anon_sym_PERCENT] = ACTIONS(2497), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [704] = { - [sym_concatenation] = STATE(1197), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1197), - [anon_sym_RBRACE] = ACTIONS(2487), - [anon_sym_EQ] = ACTIONS(2503), - [anon_sym_DASH] = ACTIONS(2503), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2507), - [anon_sym_COLON] = ACTIONS(2503), - [anon_sym_COLON_QMARK] = ACTIONS(2503), - [anon_sym_COLON_DASH] = ACTIONS(2503), - [anon_sym_PERCENT] = ACTIONS(2503), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym__concat] = ACTIONS(1838), - [anon_sym_in] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_SEMI_SEMI] = ACTIONS(1838), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - }, - [706] = { - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1200), - [sym_regex] = ACTIONS(2509), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_EQ] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2515), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(2513), - [anon_sym_COLON_QMARK] = ACTIONS(2513), - [anon_sym_COLON_DASH] = ACTIONS(2513), - [anon_sym_PERCENT] = ACTIONS(2513), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [707] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1886), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1886), - }, - [709] = { - [sym_concatenation] = STATE(1197), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1197), - [sym_regex] = ACTIONS(2517), - [anon_sym_RBRACE] = ACTIONS(2487), - [anon_sym_EQ] = ACTIONS(2503), - [anon_sym_DASH] = ACTIONS(2503), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(2503), - [anon_sym_COLON_QMARK] = ACTIONS(2503), - [anon_sym_COLON_DASH] = ACTIONS(2503), - [anon_sym_PERCENT] = ACTIONS(2503), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [710] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(2487), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [711] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(2519), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [712] = { - [sym__concat] = ACTIONS(1894), - [anon_sym_in] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_SEMI_SEMI] = ACTIONS(1894), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1894), - }, - [713] = { - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_RPAREN] = ACTIONS(2519), - [anon_sym_SEMI_SEMI] = ACTIONS(2523), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2523), - }, - [714] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1205), - [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(2525), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2519), - [anon_sym_SEMI_SEMI] = ACTIONS(2527), - [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(2527), - [anon_sym_AMP] = ACTIONS(2525), - }, - [715] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1205), - [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(2525), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2519), - [anon_sym_SEMI_SEMI] = ACTIONS(2527), - [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(2527), - [anon_sym_AMP] = ACTIONS(2525), - }, - [716] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(2519), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [717] = { - [anon_sym_SEMI] = ACTIONS(2529), - [anon_sym_SEMI_SEMI] = ACTIONS(2531), - [anon_sym_BQUOTE] = ACTIONS(2519), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2531), - [anon_sym_AMP] = ACTIONS(2531), - }, - [718] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1208), - [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(2533), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2535), - [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(2519), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2535), - [anon_sym_AMP] = ACTIONS(2533), - }, - [719] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1208), - [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(2533), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2535), - [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(2519), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(2535), - [anon_sym_AMP] = ACTIONS(2533), - }, - [720] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(2537), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [721] = { - [sym__concat] = ACTIONS(1928), - [anon_sym_in] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1928), - }, - [722] = { - [anon_sym_SEMI] = ACTIONS(2539), - [anon_sym_RPAREN] = ACTIONS(2537), - [anon_sym_SEMI_SEMI] = ACTIONS(2541), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2541), - [anon_sym_AMP] = ACTIONS(2541), - }, - [723] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1212), - [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(2543), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2537), - [anon_sym_SEMI_SEMI] = ACTIONS(2545), - [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(2545), - [anon_sym_AMP] = ACTIONS(2543), - }, - [724] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1212), - [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(2543), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2537), - [anon_sym_SEMI_SEMI] = ACTIONS(2545), - [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(2545), - [anon_sym_AMP] = ACTIONS(2543), - }, - [725] = { - [sym_compound_statement] = STATE(1213), - [anon_sym_LBRACE] = ACTIONS(25), - [sym_comment] = ACTIONS(57), - }, - [726] = { - [aux_sym_concatenation_repeat1] = STATE(1214), - [sym__simple_heredoc_body] = ACTIONS(1111), - [sym__heredoc_body_beginning] = ACTIONS(1111), - [sym_file_descriptor] = ACTIONS(1111), - [sym__concat] = ACTIONS(1113), - [sym_variable_name] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(1111), - [anon_sym_SEMI_SEMI] = ACTIONS(1111), - [anon_sym_PIPE_AMP] = ACTIONS(1111), - [anon_sym_AMP_AMP] = ACTIONS(1111), - [anon_sym_PIPE_PIPE] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1115), - [anon_sym_GT] = ACTIONS(1115), - [anon_sym_GT_GT] = ACTIONS(1111), - [anon_sym_AMP_GT] = ACTIONS(1115), - [anon_sym_AMP_GT_GT] = ACTIONS(1111), - [anon_sym_LT_AMP] = ACTIONS(1111), - [anon_sym_GT_AMP] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1115), - [anon_sym_LT_LT_DASH] = ACTIONS(1111), - [anon_sym_LT_LT_LT] = ACTIONS(1111), - [sym__special_characters] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(1115), - [sym_raw_string] = ACTIONS(1111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1111), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1111), - [anon_sym_BQUOTE] = ACTIONS(1111), - [anon_sym_LT_LPAREN] = ACTIONS(1111), - [anon_sym_GT_LPAREN] = ACTIONS(1111), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1115), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_AMP] = ACTIONS(1115), - }, - [727] = { - [aux_sym_concatenation_repeat1] = STATE(1214), - [sym__simple_heredoc_body] = ACTIONS(1089), - [sym__heredoc_body_beginning] = ACTIONS(1089), - [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(1113), - [sym_variable_name] = ACTIONS(1089), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_RPAREN] = ACTIONS(1089), - [anon_sym_SEMI_SEMI] = ACTIONS(1089), - [anon_sym_PIPE_AMP] = ACTIONS(1089), - [anon_sym_AMP_AMP] = ACTIONS(1089), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1089), - [anon_sym_LT_AMP] = ACTIONS(1089), - [anon_sym_GT_AMP] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_LT_LT_DASH] = ACTIONS(1089), - [anon_sym_LT_LT_LT] = ACTIONS(1089), - [sym__special_characters] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_DOLLAR] = ACTIONS(1091), - [sym_raw_string] = ACTIONS(1089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1089), - [anon_sym_GT_LPAREN] = ACTIONS(1089), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1091), - [anon_sym_LF] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - }, - [728] = { - [sym_concatenation] = STATE(789), - [sym_string] = STATE(1216), - [sym_array] = STATE(789), - [sym_simple_expansion] = STATE(1216), - [sym_string_expansion] = STATE(1216), - [sym_expansion] = STATE(1216), - [sym_command_substitution] = STATE(1216), - [sym_process_substitution] = STATE(1216), - [sym__empty_value] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1509), - [sym__special_characters] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(2549), - [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(2549), - }, - [729] = { - [aux_sym_concatenation_repeat1] = STATE(1217), - [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), - }, - [730] = { - [sym_variable_assignment] = STATE(730), - [sym_subscript] = STATE(314), - [sym_concatenation] = STATE(730), - [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(730), - [sym__simple_heredoc_body] = ACTIONS(1563), - [sym__heredoc_body_beginning] = ACTIONS(1563), - [sym_file_descriptor] = ACTIONS(1563), - [sym_variable_name] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(1563), - [anon_sym_SEMI_SEMI] = ACTIONS(1563), - [anon_sym_PIPE_AMP] = ACTIONS(1563), - [anon_sym_AMP_AMP] = ACTIONS(1563), - [anon_sym_PIPE_PIPE] = ACTIONS(1563), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_GT_GT] = ACTIONS(1563), - [anon_sym_AMP_GT] = ACTIONS(1568), - [anon_sym_AMP_GT_GT] = ACTIONS(1563), - [anon_sym_LT_AMP] = ACTIONS(1563), - [anon_sym_GT_AMP] = ACTIONS(1563), - [anon_sym_LT_LT] = ACTIONS(1568), - [anon_sym_LT_LT_DASH] = ACTIONS(1563), - [anon_sym_LT_LT_LT] = ACTIONS(1563), - [sym__special_characters] = ACTIONS(2554), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_DOLLAR] = ACTIONS(1576), - [sym_raw_string] = ACTIONS(2557), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1582), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1585), - [anon_sym_BQUOTE] = ACTIONS(1588), - [anon_sym_LT_LPAREN] = ACTIONS(1591), - [anon_sym_GT_LPAREN] = ACTIONS(1591), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2560), - [sym_word] = ACTIONS(2563), - [anon_sym_LF] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1568), - }, - [731] = { - [aux_sym_concatenation_repeat1] = STATE(1218), - [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), - }, - [732] = { - [sym_concatenation] = STATE(732), - [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(732), - [sym__simple_heredoc_body] = ACTIONS(1648), - [sym__heredoc_body_beginning] = ACTIONS(1648), - [sym_file_descriptor] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_RPAREN] = ACTIONS(1648), - [anon_sym_SEMI_SEMI] = ACTIONS(1648), - [anon_sym_PIPE_AMP] = ACTIONS(1648), - [anon_sym_AMP_AMP] = ACTIONS(1648), - [anon_sym_PIPE_PIPE] = ACTIONS(1648), - [anon_sym_LT] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1650), - [anon_sym_GT_GT] = ACTIONS(1648), - [anon_sym_AMP_GT] = ACTIONS(1650), - [anon_sym_AMP_GT_GT] = ACTIONS(1648), - [anon_sym_LT_AMP] = ACTIONS(1648), - [anon_sym_GT_AMP] = ACTIONS(1648), - [anon_sym_LT_LT] = ACTIONS(1650), - [anon_sym_LT_LT_DASH] = ACTIONS(1648), - [anon_sym_LT_LT_LT] = ACTIONS(1648), - [sym__special_characters] = ACTIONS(2566), - [anon_sym_DQUOTE] = ACTIONS(1655), - [anon_sym_DOLLAR] = ACTIONS(1658), - [sym_raw_string] = ACTIONS(2569), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1667), - [anon_sym_BQUOTE] = ACTIONS(1670), - [anon_sym_LT_LPAREN] = ACTIONS(1673), - [anon_sym_GT_LPAREN] = ACTIONS(1673), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2572), - [sym_word] = ACTIONS(2575), - [anon_sym_LF] = ACTIONS(1648), - [anon_sym_AMP] = ACTIONS(1650), - }, - [733] = { - [aux_sym_concatenation_repeat1] = STATE(733), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1730), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_EQ_TILDE] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [734] = { - [sym_concatenation] = STATE(983), - [sym_string] = STATE(1220), - [sym_simple_expansion] = STATE(1220), - [sym_string_expansion] = STATE(1220), - [sym_expansion] = STATE(1220), - [sym_command_substitution] = STATE(1220), - [sym_process_substitution] = STATE(1220), - [sym__special_characters] = ACTIONS(2578), - [anon_sym_DQUOTE] = ACTIONS(43), - [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(2580), - [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(2580), - }, - [735] = { - [sym__simple_heredoc_body] = ACTIONS(2582), - [sym__heredoc_body_beginning] = ACTIONS(2582), - [sym_file_descriptor] = ACTIONS(2582), - [ts_builtin_sym_end] = ACTIONS(2582), - [anon_sym_SEMI] = ACTIONS(2584), - [anon_sym_esac] = ACTIONS(2582), - [anon_sym_PIPE] = ACTIONS(2584), - [anon_sym_RPAREN] = ACTIONS(2582), - [anon_sym_SEMI_SEMI] = ACTIONS(2582), - [anon_sym_PIPE_AMP] = ACTIONS(2582), - [anon_sym_AMP_AMP] = ACTIONS(2582), - [anon_sym_PIPE_PIPE] = ACTIONS(2582), - [anon_sym_LT] = ACTIONS(2584), - [anon_sym_GT] = ACTIONS(2584), - [anon_sym_GT_GT] = ACTIONS(2582), - [anon_sym_AMP_GT] = ACTIONS(2584), - [anon_sym_AMP_GT_GT] = ACTIONS(2582), - [anon_sym_LT_AMP] = ACTIONS(2582), - [anon_sym_GT_AMP] = ACTIONS(2582), - [anon_sym_LT_LT] = ACTIONS(2584), - [anon_sym_LT_LT_DASH] = ACTIONS(2582), - [anon_sym_LT_LT_LT] = ACTIONS(2582), - [anon_sym_BQUOTE] = ACTIONS(2582), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2582), - [anon_sym_AMP] = ACTIONS(2584), - }, - [736] = { - [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(1970), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_SEMI_SEMI] = ACTIONS(1968), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [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_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), - [sym_variable_name] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_SEMI_SEMI] = ACTIONS(1968), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [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__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_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(1972), - [sym__heredoc_body_beginning] = ACTIONS(1972), - [sym_file_descriptor] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(593), - [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), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1974), - }, - [739] = { - [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(1972), - [sym__heredoc_body_beginning] = ACTIONS(1972), - [sym_file_descriptor] = ACTIONS(339), - [sym_variable_name] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(593), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [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(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1972), - [anon_sym_LT_LT_LT] = ACTIONS(1972), - [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(1972), - [anon_sym_AMP] = ACTIONS(1974), - }, - [740] = { - [aux_sym_concatenation_repeat1] = STATE(1221), - [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), - }, - [741] = { - [aux_sym_concatenation_repeat1] = STATE(1221), - [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), - }, - [742] = { - [aux_sym_concatenation_repeat1] = STATE(1221), - [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), - }, - [743] = { - [aux_sym_concatenation_repeat1] = STATE(1221), - [sym__simple_heredoc_body] = ACTIONS(1984), - [sym__heredoc_body_beginning] = ACTIONS(1984), - [sym_file_descriptor] = ACTIONS(1984), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_RPAREN] = ACTIONS(1984), - [anon_sym_SEMI_SEMI] = ACTIONS(1984), - [anon_sym_PIPE_AMP] = ACTIONS(1984), - [anon_sym_AMP_AMP] = ACTIONS(1984), - [anon_sym_PIPE_PIPE] = ACTIONS(1984), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_GT] = ACTIONS(1986), - [anon_sym_GT_GT] = ACTIONS(1984), - [anon_sym_AMP_GT] = ACTIONS(1986), - [anon_sym_AMP_GT_GT] = ACTIONS(1984), - [anon_sym_LT_AMP] = ACTIONS(1984), - [anon_sym_GT_AMP] = ACTIONS(1984), - [anon_sym_LT_LT] = ACTIONS(1986), - [anon_sym_LT_LT_DASH] = ACTIONS(1984), - [anon_sym_LT_LT_LT] = ACTIONS(1984), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1986), - }, - [744] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(2586), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [745] = { - [sym_file_redirect] = STATE(745), - [sym_heredoc_redirect] = STATE(745), - [sym_herestring_redirect] = STATE(745), - [aux_sym_redirected_statement_repeat1] = STATE(745), - [sym__simple_heredoc_body] = ACTIONS(1994), - [sym__heredoc_body_beginning] = ACTIONS(1994), - [sym_file_descriptor] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(1999), - [anon_sym_PIPE] = ACTIONS(1999), - [anon_sym_RPAREN] = ACTIONS(1994), - [anon_sym_SEMI_SEMI] = ACTIONS(1994), - [anon_sym_PIPE_AMP] = ACTIONS(1994), - [anon_sym_AMP_AMP] = ACTIONS(1994), - [anon_sym_PIPE_PIPE] = ACTIONS(1994), - [anon_sym_LT] = ACTIONS(2591), - [anon_sym_GT] = ACTIONS(2591), - [anon_sym_GT_GT] = ACTIONS(2594), - [anon_sym_AMP_GT] = ACTIONS(2591), - [anon_sym_AMP_GT_GT] = ACTIONS(2594), - [anon_sym_LT_AMP] = ACTIONS(2594), - [anon_sym_GT_AMP] = ACTIONS(2594), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_LT_LT_DASH] = ACTIONS(2010), - [anon_sym_LT_LT_LT] = ACTIONS(2597), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1999), - }, - [746] = { - [aux_sym_concatenation_repeat1] = STATE(319), - [sym__simple_heredoc_body] = ACTIONS(2020), - [sym__heredoc_body_beginning] = ACTIONS(2020), - [sym_file_descriptor] = ACTIONS(2020), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_RPAREN] = ACTIONS(2020), - [anon_sym_SEMI_SEMI] = ACTIONS(2020), - [anon_sym_PIPE_AMP] = ACTIONS(2020), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_EQ_TILDE] = ACTIONS(2022), - [anon_sym_EQ_EQ] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(2022), - [anon_sym_GT] = ACTIONS(2022), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_AMP_GT] = ACTIONS(2022), - [anon_sym_AMP_GT_GT] = ACTIONS(2020), - [anon_sym_LT_AMP] = ACTIONS(2020), - [anon_sym_GT_AMP] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2022), - [anon_sym_LT_LT_DASH] = ACTIONS(2020), - [anon_sym_LT_LT_LT] = ACTIONS(2020), - [sym__special_characters] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_DOLLAR] = ACTIONS(2022), - [sym_raw_string] = ACTIONS(2020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2020), - [anon_sym_BQUOTE] = ACTIONS(2020), - [anon_sym_LT_LPAREN] = ACTIONS(2020), - [anon_sym_GT_LPAREN] = ACTIONS(2020), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2022), - [anon_sym_LF] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2022), - }, - [747] = { - [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), - }, - [748] = { - [sym_concatenation] = STATE(748), - [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(748), - [sym__simple_heredoc_body] = ACTIONS(2016), - [sym__heredoc_body_beginning] = ACTIONS(2016), - [sym_file_descriptor] = ACTIONS(2016), - [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(2600), - [anon_sym_EQ_EQ] = ACTIONS(2600), - [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(2603), - [anon_sym_DQUOTE] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(2033), - [sym_raw_string] = ACTIONS(2606), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2042), - [anon_sym_BQUOTE] = ACTIONS(2045), - [anon_sym_LT_LPAREN] = ACTIONS(2048), - [anon_sym_GT_LPAREN] = ACTIONS(2048), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2609), - [anon_sym_LF] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2018), - }, - [749] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(2586), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [750] = { - [anon_sym_SEMI] = ACTIONS(2612), - [anon_sym_RPAREN] = ACTIONS(2586), - [anon_sym_SEMI_SEMI] = ACTIONS(2614), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2614), - }, - [751] = { - [sym_concatenation] = STATE(748), - [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(748), - [sym__simple_heredoc_body] = ACTIONS(2062), - [sym__heredoc_body_beginning] = ACTIONS(2062), - [sym_file_descriptor] = ACTIONS(2062), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_RPAREN] = ACTIONS(2062), - [anon_sym_SEMI_SEMI] = ACTIONS(2062), - [anon_sym_PIPE_AMP] = ACTIONS(2062), - [anon_sym_AMP_AMP] = ACTIONS(2062), - [anon_sym_PIPE_PIPE] = ACTIONS(2062), - [anon_sym_EQ_TILDE] = ACTIONS(603), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_GT_GT] = ACTIONS(2062), - [anon_sym_AMP_GT] = ACTIONS(2064), - [anon_sym_AMP_GT_GT] = ACTIONS(2062), - [anon_sym_LT_AMP] = ACTIONS(2062), - [anon_sym_GT_AMP] = ACTIONS(2062), - [anon_sym_LT_LT] = ACTIONS(2064), - [anon_sym_LT_LT_DASH] = ACTIONS(2062), - [anon_sym_LT_LT_LT] = ACTIONS(2062), - [sym__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(2062), - [anon_sym_AMP] = ACTIONS(2064), - }, - [752] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_RBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [753] = { - [sym_file_descriptor] = ACTIONS(1089), - [sym_variable_name] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1089), - [anon_sym_LT_AMP] = ACTIONS(1089), - [anon_sym_GT_AMP] = ACTIONS(1089), - [sym__special_characters] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_DOLLAR] = ACTIONS(1091), - [sym_raw_string] = ACTIONS(1089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1089), - [anon_sym_GT_LPAREN] = ACTIONS(1089), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1089), - }, - [754] = { - [sym_concatenation] = STATE(1225), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [aux_sym_for_statement_repeat1] = STATE(1225), - [anon_sym_RPAREN] = ACTIONS(2616), - [sym__special_characters] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_DOLLAR] = ACTIONS(1099), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1109), - [anon_sym_GT_LPAREN] = ACTIONS(1109), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1101), - }, - [755] = { - [aux_sym_concatenation_repeat1] = STATE(417), - [sym_file_descriptor] = ACTIONS(1111), - [sym__concat] = ACTIONS(747), - [sym_variable_name] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1115), - [anon_sym_GT] = ACTIONS(1115), - [anon_sym_GT_GT] = ACTIONS(1111), - [anon_sym_AMP_GT] = ACTIONS(1115), - [anon_sym_AMP_GT_GT] = ACTIONS(1111), - [anon_sym_LT_AMP] = ACTIONS(1111), - [anon_sym_GT_AMP] = ACTIONS(1111), - [sym__special_characters] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(1115), - [sym_raw_string] = ACTIONS(1111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1111), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1111), - [anon_sym_BQUOTE] = ACTIONS(1111), - [anon_sym_LT_LPAREN] = ACTIONS(1111), - [anon_sym_GT_LPAREN] = ACTIONS(1111), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1111), - }, - [756] = { - [aux_sym_concatenation_repeat1] = STATE(417), - [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(747), - [sym_variable_name] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1089), - [anon_sym_LT_AMP] = ACTIONS(1089), - [anon_sym_GT_AMP] = ACTIONS(1089), - [sym__special_characters] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_DOLLAR] = ACTIONS(1091), - [sym_raw_string] = ACTIONS(1089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1089), - [anon_sym_GT_LPAREN] = ACTIONS(1089), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1089), - }, - [757] = { - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_RBRACK] = ACTIONS(2310), - [anon_sym_EQ_TILDE] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2310), - [anon_sym_EQ] = ACTIONS(2312), - [anon_sym_PLUS_EQ] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_GT] = ACTIONS(2312), - [anon_sym_BANG_EQ] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_DASH_EQ] = ACTIONS(2310), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2310), - }, - [758] = { - [sym__concat] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_RBRACK] = ACTIONS(1730), - [anon_sym_EQ_TILDE] = ACTIONS(1730), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_PLUS_EQ] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_DASH_EQ] = ACTIONS(1730), - [anon_sym_LT_EQ] = ACTIONS(1730), - [anon_sym_GT_EQ] = ACTIONS(1730), - [anon_sym_PLUS_PLUS] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1730), - }, - [759] = { - [aux_sym_concatenation_repeat1] = STATE(759), - [sym__concat] = ACTIONS(2618), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_RBRACK] = ACTIONS(1730), - [anon_sym_EQ_TILDE] = ACTIONS(1730), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_PLUS_EQ] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_DASH_EQ] = ACTIONS(1730), - [anon_sym_LT_EQ] = ACTIONS(1730), - [anon_sym_GT_EQ] = ACTIONS(1730), - [anon_sym_PLUS_PLUS] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1730), - }, - [760] = { - [sym__concat] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_RBRACK] = ACTIONS(1737), - [anon_sym_EQ_TILDE] = ACTIONS(1737), - [anon_sym_EQ_EQ] = ACTIONS(1737), - [anon_sym_EQ] = ACTIONS(1739), - [anon_sym_PLUS_EQ] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_BANG_EQ] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_DASH_EQ] = ACTIONS(1737), - [anon_sym_LT_EQ] = ACTIONS(1737), - [anon_sym_GT_EQ] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1737), - }, - [761] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(2621), - [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), - }, - [762] = { - [sym_concatenation] = STATE(1230), - [sym_string] = STATE(1229), - [sym_simple_expansion] = STATE(1229), - [sym_string_expansion] = STATE(1229), - [sym_expansion] = STATE(1229), - [sym_command_substitution] = STATE(1229), - [sym_process_substitution] = STATE(1229), - [anon_sym_RBRACE] = ACTIONS(2623), - [sym__special_characters] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(2627), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2627), - }, - [763] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(2629), - [sym_comment] = ACTIONS(57), - }, - [764] = { - [sym_concatenation] = STATE(1234), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1234), - [anon_sym_RBRACE] = ACTIONS(2631), - [anon_sym_EQ] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2635), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2637), - [anon_sym_COLON] = ACTIONS(2633), - [anon_sym_COLON_QMARK] = ACTIONS(2633), - [anon_sym_COLON_DASH] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [765] = { - [sym_concatenation] = STATE(1236), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1236), - [anon_sym_RBRACE] = ACTIONS(2623), - [anon_sym_EQ] = ACTIONS(2639), - [anon_sym_DASH] = ACTIONS(2639), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2641), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_COLON] = ACTIONS(2639), - [anon_sym_COLON_QMARK] = ACTIONS(2639), - [anon_sym_COLON_DASH] = ACTIONS(2639), - [anon_sym_PERCENT] = ACTIONS(2639), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__concat] = ACTIONS(1838), - [anon_sym_AMP_AMP] = ACTIONS(1838), - [anon_sym_PIPE_PIPE] = ACTIONS(1838), - [anon_sym_RBRACK] = ACTIONS(1838), - [anon_sym_EQ_TILDE] = ACTIONS(1838), - [anon_sym_EQ_EQ] = ACTIONS(1838), - [anon_sym_EQ] = ACTIONS(1840), - [anon_sym_PLUS_EQ] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_BANG_EQ] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1840), - [anon_sym_DASH_EQ] = ACTIONS(1838), - [anon_sym_LT_EQ] = ACTIONS(1838), - [anon_sym_GT_EQ] = ACTIONS(1838), - [anon_sym_PLUS_PLUS] = ACTIONS(1838), - [anon_sym_DASH_DASH] = ACTIONS(1838), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1838), - }, - [767] = { - [sym_concatenation] = STATE(1239), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1239), - [sym_regex] = ACTIONS(2645), - [anon_sym_RBRACE] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2651), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(2649), - [anon_sym_COLON_QMARK] = ACTIONS(2649), - [anon_sym_COLON_DASH] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [768] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__concat] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_RBRACK] = ACTIONS(1886), - [anon_sym_EQ_TILDE] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ] = ACTIONS(1888), - [anon_sym_PLUS_EQ] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_BANG_EQ] = ACTIONS(1886), - [anon_sym_PLUS] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1888), - [anon_sym_DASH_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1886), - [anon_sym_GT_EQ] = ACTIONS(1886), - [anon_sym_PLUS_PLUS] = ACTIONS(1886), - [anon_sym_DASH_DASH] = ACTIONS(1886), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1886), - }, - [770] = { - [sym_concatenation] = STATE(1236), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1236), - [sym_regex] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2623), - [anon_sym_EQ] = ACTIONS(2639), - [anon_sym_DASH] = ACTIONS(2639), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2641), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(2639), - [anon_sym_COLON_QMARK] = ACTIONS(2639), - [anon_sym_COLON_DASH] = ACTIONS(2639), - [anon_sym_PERCENT] = ACTIONS(2639), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [771] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(2623), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [772] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(2655), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [773] = { - [sym__concat] = ACTIONS(1894), - [anon_sym_AMP_AMP] = ACTIONS(1894), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_RBRACK] = ACTIONS(1894), - [anon_sym_EQ_TILDE] = ACTIONS(1894), - [anon_sym_EQ_EQ] = ACTIONS(1894), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_PLUS_EQ] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_BANG_EQ] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_DASH_EQ] = ACTIONS(1894), - [anon_sym_LT_EQ] = ACTIONS(1894), - [anon_sym_GT_EQ] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1894), - }, - [774] = { - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym_RPAREN] = ACTIONS(2655), - [anon_sym_SEMI_SEMI] = ACTIONS(2659), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2659), - }, - [775] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1244), - [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(2661), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2655), - [anon_sym_SEMI_SEMI] = ACTIONS(2663), - [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(2663), - [anon_sym_AMP] = ACTIONS(2661), - }, - [776] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1244), - [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(2661), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2655), - [anon_sym_SEMI_SEMI] = ACTIONS(2663), - [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(2663), - [anon_sym_AMP] = ACTIONS(2661), - }, - [777] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(2655), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [778] = { - [anon_sym_SEMI] = ACTIONS(2665), - [anon_sym_SEMI_SEMI] = ACTIONS(2667), - [anon_sym_BQUOTE] = ACTIONS(2655), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - }, - [779] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1247), - [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(2669), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2671), - [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(2655), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2669), - }, - [780] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1247), - [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(2669), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2671), - [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(2655), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2669), - }, - [781] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [782] = { - [sym__concat] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_RBRACK] = ACTIONS(1928), - [anon_sym_EQ_TILDE] = ACTIONS(1928), - [anon_sym_EQ_EQ] = ACTIONS(1928), - [anon_sym_EQ] = ACTIONS(1930), - [anon_sym_PLUS_EQ] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1928), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_DASH_EQ] = ACTIONS(1928), - [anon_sym_LT_EQ] = ACTIONS(1928), - [anon_sym_GT_EQ] = ACTIONS(1928), - [anon_sym_PLUS_PLUS] = ACTIONS(1928), - [anon_sym_DASH_DASH] = ACTIONS(1928), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1928), - }, - [783] = { - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym_RPAREN] = ACTIONS(2673), - [anon_sym_SEMI_SEMI] = ACTIONS(2677), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2677), - }, - [784] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1251), - [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(2679), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2673), - [anon_sym_SEMI_SEMI] = ACTIONS(2681), - [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(2681), - [anon_sym_AMP] = ACTIONS(2679), - }, - [785] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1251), - [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(2679), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2673), - [anon_sym_SEMI_SEMI] = ACTIONS(2681), - [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(2681), - [anon_sym_AMP] = ACTIONS(2679), - }, - [786] = { - [anon_sym_AMP_AMP] = ACTIONS(2381), - [anon_sym_PIPE_PIPE] = ACTIONS(2381), - [anon_sym_RBRACK] = ACTIONS(2381), - [anon_sym_EQ_TILDE] = ACTIONS(2381), - [anon_sym_EQ_EQ] = ACTIONS(2381), - [anon_sym_EQ] = ACTIONS(2383), - [anon_sym_PLUS_EQ] = ACTIONS(2381), - [anon_sym_LT] = ACTIONS(2383), - [anon_sym_GT] = ACTIONS(2383), - [anon_sym_BANG_EQ] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_DASH_EQ] = ACTIONS(2381), - [anon_sym_LT_EQ] = ACTIONS(2381), - [anon_sym_GT_EQ] = ACTIONS(2381), - [anon_sym_PLUS_PLUS] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(2381), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2381), - }, - [787] = { - [anon_sym_AMP_AMP] = ACTIONS(2381), - [anon_sym_PIPE_PIPE] = ACTIONS(2381), - [anon_sym_RBRACK] = ACTIONS(2381), - [anon_sym_EQ_TILDE] = ACTIONS(2381), - [anon_sym_EQ_EQ] = ACTIONS(2381), - [anon_sym_EQ] = ACTIONS(2383), - [anon_sym_PLUS_EQ] = ACTIONS(2381), - [anon_sym_LT] = ACTIONS(2383), - [anon_sym_GT] = ACTIONS(2383), - [anon_sym_BANG_EQ] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_DASH_EQ] = ACTIONS(2381), - [anon_sym_LT_EQ] = ACTIONS(2381), - [anon_sym_GT_EQ] = ACTIONS(2381), - [anon_sym_PLUS_PLUS] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(2381), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2381), - }, - [788] = { - [aux_sym_concatenation_repeat1] = STATE(788), - [sym__concat] = ACTIONS(2316), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1730), - [anon_sym_EQ_TILDE] = ACTIONS(1730), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_PLUS_EQ] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_DASH_EQ] = ACTIONS(1730), - [anon_sym_LT_EQ] = ACTIONS(1730), - [anon_sym_GT_EQ] = ACTIONS(1730), - [anon_sym_PLUS_PLUS] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1730), - }, - [789] = { - [sym__simple_heredoc_body] = ACTIONS(1089), - [sym__heredoc_body_beginning] = ACTIONS(1089), - [sym_file_descriptor] = ACTIONS(1089), - [sym_variable_name] = ACTIONS(1089), - [ts_builtin_sym_end] = ACTIONS(1089), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_RPAREN] = ACTIONS(1089), - [anon_sym_SEMI_SEMI] = ACTIONS(1089), - [anon_sym_PIPE_AMP] = ACTIONS(1089), - [anon_sym_AMP_AMP] = ACTIONS(1089), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1089), - [anon_sym_LT_AMP] = ACTIONS(1089), - [anon_sym_GT_AMP] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_LT_LT_DASH] = ACTIONS(1089), - [anon_sym_LT_LT_LT] = ACTIONS(1089), - [sym__special_characters] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_DOLLAR] = ACTIONS(1091), - [sym_raw_string] = ACTIONS(1089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1089), - [anon_sym_GT_LPAREN] = ACTIONS(1089), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1091), - [sym_word] = ACTIONS(1091), - [anon_sym_LF] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - }, - [790] = { - [sym_concatenation] = STATE(1253), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [aux_sym_for_statement_repeat1] = STATE(1253), - [anon_sym_RPAREN] = ACTIONS(2683), - [sym__special_characters] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_DOLLAR] = ACTIONS(1099), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1109), - [anon_sym_GT_LPAREN] = ACTIONS(1109), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1101), - }, - [791] = { - [aux_sym_concatenation_repeat1] = STATE(373), - [sym__simple_heredoc_body] = ACTIONS(1111), - [sym__heredoc_body_beginning] = ACTIONS(1111), - [sym_file_descriptor] = ACTIONS(1111), - [sym__concat] = ACTIONS(671), - [sym_variable_name] = ACTIONS(1111), - [ts_builtin_sym_end] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(1115), - [anon_sym_SEMI_SEMI] = ACTIONS(1111), - [anon_sym_PIPE_AMP] = ACTIONS(1111), - [anon_sym_AMP_AMP] = ACTIONS(1111), - [anon_sym_PIPE_PIPE] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1115), - [anon_sym_GT] = ACTIONS(1115), - [anon_sym_GT_GT] = ACTIONS(1111), - [anon_sym_AMP_GT] = ACTIONS(1115), - [anon_sym_AMP_GT_GT] = ACTIONS(1111), - [anon_sym_LT_AMP] = ACTIONS(1111), - [anon_sym_GT_AMP] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1115), - [anon_sym_LT_LT_DASH] = ACTIONS(1111), - [anon_sym_LT_LT_LT] = ACTIONS(1111), - [sym__special_characters] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(1115), - [sym_raw_string] = ACTIONS(1111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1111), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1111), - [anon_sym_BQUOTE] = ACTIONS(1111), - [anon_sym_LT_LPAREN] = ACTIONS(1111), - [anon_sym_GT_LPAREN] = ACTIONS(1111), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1115), - [sym_word] = ACTIONS(1115), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_AMP] = ACTIONS(1115), - }, - [792] = { - [aux_sym_concatenation_repeat1] = STATE(373), - [sym__simple_heredoc_body] = ACTIONS(1089), - [sym__heredoc_body_beginning] = ACTIONS(1089), - [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(671), - [sym_variable_name] = ACTIONS(1089), - [ts_builtin_sym_end] = ACTIONS(1089), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_SEMI_SEMI] = ACTIONS(1089), - [anon_sym_PIPE_AMP] = ACTIONS(1089), - [anon_sym_AMP_AMP] = ACTIONS(1089), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1089), - [anon_sym_LT_AMP] = ACTIONS(1089), - [anon_sym_GT_AMP] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_LT_LT_DASH] = ACTIONS(1089), - [anon_sym_LT_LT_LT] = ACTIONS(1089), - [sym__special_characters] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_DOLLAR] = ACTIONS(1091), - [sym_raw_string] = ACTIONS(1089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1089), - [anon_sym_GT_LPAREN] = ACTIONS(1089), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1091), - [sym_word] = ACTIONS(1091), - [anon_sym_LF] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - }, - [793] = { - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(1730), - [sym_variable_name] = ACTIONS(1730), - [ts_builtin_sym_end] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1730), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1732), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [794] = { - [aux_sym_concatenation_repeat1] = STATE(794), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(2685), - [sym_variable_name] = ACTIONS(1730), - [ts_builtin_sym_end] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1732), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [795] = { - [sym__simple_heredoc_body] = ACTIONS(1737), - [sym__heredoc_body_beginning] = ACTIONS(1737), - [sym_file_descriptor] = ACTIONS(1737), - [sym__concat] = ACTIONS(1737), - [sym_variable_name] = ACTIONS(1737), - [ts_builtin_sym_end] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_RPAREN] = ACTIONS(1737), - [anon_sym_SEMI_SEMI] = ACTIONS(1737), - [anon_sym_PIPE_AMP] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1737), - [anon_sym_AMP_GT] = ACTIONS(1739), - [anon_sym_AMP_GT_GT] = ACTIONS(1737), - [anon_sym_LT_AMP] = ACTIONS(1737), - [anon_sym_GT_AMP] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_LT_LT_DASH] = ACTIONS(1737), - [anon_sym_LT_LT_LT] = ACTIONS(1737), - [sym__special_characters] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1739), - [sym_raw_string] = ACTIONS(1737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1737), - [anon_sym_BQUOTE] = ACTIONS(1737), - [anon_sym_LT_LPAREN] = ACTIONS(1737), - [anon_sym_GT_LPAREN] = ACTIONS(1737), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1739), - [sym_word] = ACTIONS(1739), - [anon_sym_LF] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1739), - }, - [796] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(2688), - [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), - }, - [797] = { - [sym_concatenation] = STATE(1258), - [sym_string] = STATE(1257), - [sym_simple_expansion] = STATE(1257), - [sym_string_expansion] = STATE(1257), - [sym_expansion] = STATE(1257), - [sym_command_substitution] = STATE(1257), - [sym_process_substitution] = STATE(1257), - [anon_sym_RBRACE] = ACTIONS(2690), - [sym__special_characters] = ACTIONS(2692), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(2694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2694), - }, - [798] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(2696), - [sym_comment] = ACTIONS(57), - }, - [799] = { - [sym_concatenation] = STATE(1262), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1262), - [anon_sym_RBRACE] = ACTIONS(2698), - [anon_sym_EQ] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_COLON] = ACTIONS(2700), - [anon_sym_COLON_QMARK] = ACTIONS(2700), - [anon_sym_COLON_DASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [800] = { - [sym_concatenation] = STATE(1264), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1264), - [anon_sym_RBRACE] = ACTIONS(2690), - [anon_sym_EQ] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2710), - [anon_sym_COLON] = ACTIONS(2706), - [anon_sym_COLON_QMARK] = ACTIONS(2706), - [anon_sym_COLON_DASH] = ACTIONS(2706), - [anon_sym_PERCENT] = ACTIONS(2706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__simple_heredoc_body] = ACTIONS(1838), - [sym__heredoc_body_beginning] = ACTIONS(1838), - [sym_file_descriptor] = ACTIONS(1838), - [sym__concat] = ACTIONS(1838), - [sym_variable_name] = ACTIONS(1838), - [ts_builtin_sym_end] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1840), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_SEMI_SEMI] = ACTIONS(1838), - [anon_sym_PIPE_AMP] = ACTIONS(1838), - [anon_sym_AMP_AMP] = ACTIONS(1838), - [anon_sym_PIPE_PIPE] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_GT_GT] = ACTIONS(1838), - [anon_sym_AMP_GT] = ACTIONS(1840), - [anon_sym_AMP_GT_GT] = ACTIONS(1838), - [anon_sym_LT_AMP] = ACTIONS(1838), - [anon_sym_GT_AMP] = ACTIONS(1838), - [anon_sym_LT_LT] = ACTIONS(1840), - [anon_sym_LT_LT_DASH] = ACTIONS(1838), - [anon_sym_LT_LT_LT] = ACTIONS(1838), - [sym__special_characters] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1840), - [sym_raw_string] = ACTIONS(1838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_LT_LPAREN] = ACTIONS(1838), - [anon_sym_GT_LPAREN] = ACTIONS(1838), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1840), - [sym_word] = ACTIONS(1840), - [anon_sym_LF] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1840), - }, - [802] = { - [sym_concatenation] = STATE(1267), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1267), - [sym_regex] = ACTIONS(2712), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_EQ] = ACTIONS(2716), - [anon_sym_DASH] = ACTIONS(2716), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(2716), - [anon_sym_COLON_QMARK] = ACTIONS(2716), - [anon_sym_COLON_DASH] = ACTIONS(2716), - [anon_sym_PERCENT] = ACTIONS(2716), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [803] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__simple_heredoc_body] = ACTIONS(1886), - [sym__heredoc_body_beginning] = ACTIONS(1886), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1886), - [ts_builtin_sym_end] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_SEMI_SEMI] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1886), - [anon_sym_LT_LT_LT] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), - [sym_word] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1888), - }, - [805] = { - [sym_concatenation] = STATE(1264), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1264), - [sym_regex] = ACTIONS(2720), - [anon_sym_RBRACE] = ACTIONS(2690), - [anon_sym_EQ] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(2706), - [anon_sym_COLON_QMARK] = ACTIONS(2706), - [anon_sym_COLON_DASH] = ACTIONS(2706), - [anon_sym_PERCENT] = ACTIONS(2706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [806] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(2690), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [807] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [808] = { - [sym__simple_heredoc_body] = ACTIONS(1894), - [sym__heredoc_body_beginning] = ACTIONS(1894), - [sym_file_descriptor] = ACTIONS(1894), - [sym__concat] = ACTIONS(1894), - [sym_variable_name] = ACTIONS(1894), - [ts_builtin_sym_end] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1894), - [anon_sym_SEMI_SEMI] = ACTIONS(1894), - [anon_sym_PIPE_AMP] = ACTIONS(1894), - [anon_sym_AMP_AMP] = ACTIONS(1894), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_GT_GT] = ACTIONS(1894), - [anon_sym_AMP_GT] = ACTIONS(1896), - [anon_sym_AMP_GT_GT] = ACTIONS(1894), - [anon_sym_LT_AMP] = ACTIONS(1894), - [anon_sym_GT_AMP] = ACTIONS(1894), - [anon_sym_LT_LT] = ACTIONS(1896), - [anon_sym_LT_LT_DASH] = ACTIONS(1894), - [anon_sym_LT_LT_LT] = ACTIONS(1894), - [sym__special_characters] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1896), - [sym_raw_string] = ACTIONS(1894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), - [anon_sym_BQUOTE] = ACTIONS(1894), - [anon_sym_LT_LPAREN] = ACTIONS(1894), - [anon_sym_GT_LPAREN] = ACTIONS(1894), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1896), - [sym_word] = ACTIONS(1896), - [anon_sym_LF] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1896), - }, - [809] = { - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_SEMI_SEMI] = ACTIONS(2726), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2726), - [anon_sym_AMP] = ACTIONS(2726), - }, - [810] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1272), - [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(2728), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_SEMI_SEMI] = ACTIONS(2730), - [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(2730), - [anon_sym_AMP] = ACTIONS(2728), - }, - [811] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1272), - [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(2728), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_SEMI_SEMI] = ACTIONS(2730), - [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(2730), - [anon_sym_AMP] = ACTIONS(2728), - }, - [812] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(2722), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [813] = { - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_SEMI_SEMI] = ACTIONS(2734), - [anon_sym_BQUOTE] = ACTIONS(2722), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2734), - }, - [814] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1275), - [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(2736), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2738), - [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(2722), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2736), - }, - [815] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1275), - [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(2736), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2738), - [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(2722), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2736), - }, - [816] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [817] = { - [sym__simple_heredoc_body] = ACTIONS(1928), - [sym__heredoc_body_beginning] = ACTIONS(1928), - [sym_file_descriptor] = ACTIONS(1928), - [sym__concat] = ACTIONS(1928), - [sym_variable_name] = ACTIONS(1928), - [ts_builtin_sym_end] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1928), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_GT_GT] = ACTIONS(1928), - [anon_sym_AMP_GT] = ACTIONS(1930), - [anon_sym_AMP_GT_GT] = ACTIONS(1928), - [anon_sym_LT_AMP] = ACTIONS(1928), - [anon_sym_GT_AMP] = ACTIONS(1928), - [anon_sym_LT_LT] = ACTIONS(1930), - [anon_sym_LT_LT_DASH] = ACTIONS(1928), - [anon_sym_LT_LT_LT] = ACTIONS(1928), - [sym__special_characters] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1928), - [anon_sym_DOLLAR] = ACTIONS(1930), - [sym_raw_string] = ACTIONS(1928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), - [anon_sym_BQUOTE] = ACTIONS(1928), - [anon_sym_LT_LPAREN] = ACTIONS(1928), - [anon_sym_GT_LPAREN] = ACTIONS(1928), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1930), - [sym_word] = ACTIONS(1930), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), - }, - [818] = { - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_SEMI_SEMI] = ACTIONS(2744), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2744), - }, - [819] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1279), - [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(2746), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_SEMI_SEMI] = ACTIONS(2748), - [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(2748), - [anon_sym_AMP] = ACTIONS(2746), - }, - [820] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1279), - [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(2746), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_SEMI_SEMI] = ACTIONS(2748), - [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(2748), - [anon_sym_AMP] = ACTIONS(2746), - }, - [821] = { - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(1730), - [ts_builtin_sym_end] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1730), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1732), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [822] = { - [aux_sym_concatenation_repeat1] = STATE(822), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(2750), - [ts_builtin_sym_end] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1732), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [823] = { - [sym__simple_heredoc_body] = ACTIONS(1737), - [sym__heredoc_body_beginning] = ACTIONS(1737), - [sym_file_descriptor] = ACTIONS(1737), - [sym__concat] = ACTIONS(1737), - [ts_builtin_sym_end] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_RPAREN] = ACTIONS(1737), - [anon_sym_SEMI_SEMI] = ACTIONS(1737), - [anon_sym_PIPE_AMP] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1737), - [anon_sym_AMP_GT] = ACTIONS(1739), - [anon_sym_AMP_GT_GT] = ACTIONS(1737), - [anon_sym_LT_AMP] = ACTIONS(1737), - [anon_sym_GT_AMP] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_LT_LT_DASH] = ACTIONS(1737), - [anon_sym_LT_LT_LT] = ACTIONS(1737), - [sym__special_characters] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1739), - [sym_raw_string] = ACTIONS(1737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1737), - [anon_sym_BQUOTE] = ACTIONS(1737), - [anon_sym_LT_LPAREN] = ACTIONS(1737), - [anon_sym_GT_LPAREN] = ACTIONS(1737), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1739), - [sym_word] = ACTIONS(1739), - [anon_sym_LF] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1739), - }, - [824] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(2753), - [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), - }, - [825] = { - [sym_concatenation] = STATE(1284), - [sym_string] = STATE(1283), - [sym_simple_expansion] = STATE(1283), - [sym_string_expansion] = STATE(1283), - [sym_expansion] = STATE(1283), - [sym_command_substitution] = STATE(1283), - [sym_process_substitution] = STATE(1283), - [anon_sym_RBRACE] = ACTIONS(2755), - [sym__special_characters] = ACTIONS(2757), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(2759), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2759), - }, - [826] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(2761), - [sym_comment] = ACTIONS(57), - }, - [827] = { - [sym_concatenation] = STATE(1288), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1288), - [anon_sym_RBRACE] = ACTIONS(2763), - [anon_sym_EQ] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2765), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2767), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2769), - [anon_sym_COLON] = ACTIONS(2765), - [anon_sym_COLON_QMARK] = ACTIONS(2765), - [anon_sym_COLON_DASH] = ACTIONS(2765), - [anon_sym_PERCENT] = ACTIONS(2765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [828] = { - [sym_concatenation] = STATE(1290), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1290), - [anon_sym_RBRACE] = ACTIONS(2755), - [anon_sym_EQ] = ACTIONS(2771), - [anon_sym_DASH] = ACTIONS(2771), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2773), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2775), - [anon_sym_COLON] = ACTIONS(2771), - [anon_sym_COLON_QMARK] = ACTIONS(2771), - [anon_sym_COLON_DASH] = ACTIONS(2771), - [anon_sym_PERCENT] = ACTIONS(2771), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__simple_heredoc_body] = ACTIONS(1838), - [sym__heredoc_body_beginning] = ACTIONS(1838), - [sym_file_descriptor] = ACTIONS(1838), - [sym__concat] = ACTIONS(1838), - [ts_builtin_sym_end] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1840), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_SEMI_SEMI] = ACTIONS(1838), - [anon_sym_PIPE_AMP] = ACTIONS(1838), - [anon_sym_AMP_AMP] = ACTIONS(1838), - [anon_sym_PIPE_PIPE] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_GT_GT] = ACTIONS(1838), - [anon_sym_AMP_GT] = ACTIONS(1840), - [anon_sym_AMP_GT_GT] = ACTIONS(1838), - [anon_sym_LT_AMP] = ACTIONS(1838), - [anon_sym_GT_AMP] = ACTIONS(1838), - [anon_sym_LT_LT] = ACTIONS(1840), - [anon_sym_LT_LT_DASH] = ACTIONS(1838), - [anon_sym_LT_LT_LT] = ACTIONS(1838), - [sym__special_characters] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1840), - [sym_raw_string] = ACTIONS(1838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_LT_LPAREN] = ACTIONS(1838), - [anon_sym_GT_LPAREN] = ACTIONS(1838), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1840), - [sym_word] = ACTIONS(1840), - [anon_sym_LF] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1840), - }, - [830] = { - [sym_concatenation] = STATE(1293), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1293), - [sym_regex] = ACTIONS(2777), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_EQ] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2781), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2783), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(2781), - [anon_sym_COLON_QMARK] = ACTIONS(2781), - [anon_sym_COLON_DASH] = ACTIONS(2781), - [anon_sym_PERCENT] = ACTIONS(2781), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [831] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__simple_heredoc_body] = ACTIONS(1886), - [sym__heredoc_body_beginning] = ACTIONS(1886), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [ts_builtin_sym_end] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_SEMI_SEMI] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1886), - [anon_sym_LT_LT_LT] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), - [sym_word] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1888), - }, - [833] = { - [sym_concatenation] = STATE(1290), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1290), - [sym_regex] = ACTIONS(2785), - [anon_sym_RBRACE] = ACTIONS(2755), - [anon_sym_EQ] = ACTIONS(2771), - [anon_sym_DASH] = ACTIONS(2771), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2773), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(2771), - [anon_sym_COLON_QMARK] = ACTIONS(2771), - [anon_sym_COLON_DASH] = ACTIONS(2771), - [anon_sym_PERCENT] = ACTIONS(2771), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [834] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(2755), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [835] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(2787), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [836] = { - [sym__simple_heredoc_body] = ACTIONS(1894), - [sym__heredoc_body_beginning] = ACTIONS(1894), - [sym_file_descriptor] = ACTIONS(1894), - [sym__concat] = ACTIONS(1894), - [ts_builtin_sym_end] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1894), - [anon_sym_SEMI_SEMI] = ACTIONS(1894), - [anon_sym_PIPE_AMP] = ACTIONS(1894), - [anon_sym_AMP_AMP] = ACTIONS(1894), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_GT_GT] = ACTIONS(1894), - [anon_sym_AMP_GT] = ACTIONS(1896), - [anon_sym_AMP_GT_GT] = ACTIONS(1894), - [anon_sym_LT_AMP] = ACTIONS(1894), - [anon_sym_GT_AMP] = ACTIONS(1894), - [anon_sym_LT_LT] = ACTIONS(1896), - [anon_sym_LT_LT_DASH] = ACTIONS(1894), - [anon_sym_LT_LT_LT] = ACTIONS(1894), - [sym__special_characters] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1896), - [sym_raw_string] = ACTIONS(1894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), - [anon_sym_BQUOTE] = ACTIONS(1894), - [anon_sym_LT_LPAREN] = ACTIONS(1894), - [anon_sym_GT_LPAREN] = ACTIONS(1894), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1896), - [sym_word] = ACTIONS(1896), - [anon_sym_LF] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1896), - }, - [837] = { - [anon_sym_SEMI] = ACTIONS(2789), - [anon_sym_RPAREN] = ACTIONS(2787), - [anon_sym_SEMI_SEMI] = ACTIONS(2791), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2791), - }, - [838] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1298), - [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(2793), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2787), - [anon_sym_SEMI_SEMI] = ACTIONS(2795), - [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(2795), - [anon_sym_AMP] = ACTIONS(2793), - }, - [839] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1298), - [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(2793), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2787), - [anon_sym_SEMI_SEMI] = ACTIONS(2795), - [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(2795), - [anon_sym_AMP] = ACTIONS(2793), - }, - [840] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(2787), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [841] = { - [anon_sym_SEMI] = ACTIONS(2797), - [anon_sym_SEMI_SEMI] = ACTIONS(2799), - [anon_sym_BQUOTE] = ACTIONS(2787), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2799), - [anon_sym_AMP] = ACTIONS(2799), - }, - [842] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1301), - [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(2801), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2803), - [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(2787), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2803), - [anon_sym_AMP] = ACTIONS(2801), - }, - [843] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1301), - [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(2801), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2803), - [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(2787), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(2803), - [anon_sym_AMP] = ACTIONS(2801), - }, - [844] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(2805), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [845] = { - [sym__simple_heredoc_body] = ACTIONS(1928), - [sym__heredoc_body_beginning] = ACTIONS(1928), - [sym_file_descriptor] = ACTIONS(1928), - [sym__concat] = ACTIONS(1928), - [ts_builtin_sym_end] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1928), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_GT_GT] = ACTIONS(1928), - [anon_sym_AMP_GT] = ACTIONS(1930), - [anon_sym_AMP_GT_GT] = ACTIONS(1928), - [anon_sym_LT_AMP] = ACTIONS(1928), - [anon_sym_GT_AMP] = ACTIONS(1928), - [anon_sym_LT_LT] = ACTIONS(1930), - [anon_sym_LT_LT_DASH] = ACTIONS(1928), - [anon_sym_LT_LT_LT] = ACTIONS(1928), - [sym__special_characters] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1928), - [anon_sym_DOLLAR] = ACTIONS(1930), - [sym_raw_string] = ACTIONS(1928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), - [anon_sym_BQUOTE] = ACTIONS(1928), - [anon_sym_LT_LPAREN] = ACTIONS(1928), - [anon_sym_GT_LPAREN] = ACTIONS(1928), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1930), - [sym_word] = ACTIONS(1930), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), - }, - [846] = { - [anon_sym_SEMI] = ACTIONS(2807), - [anon_sym_RPAREN] = ACTIONS(2805), - [anon_sym_SEMI_SEMI] = ACTIONS(2809), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2809), - [anon_sym_AMP] = ACTIONS(2809), - }, - [847] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1305), - [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(2811), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2805), - [anon_sym_SEMI_SEMI] = ACTIONS(2813), - [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(2813), - [anon_sym_AMP] = ACTIONS(2811), - }, - [848] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1305), - [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(2811), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2805), - [anon_sym_SEMI_SEMI] = ACTIONS(2813), - [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(2813), - [anon_sym_AMP] = ACTIONS(2811), - }, - [849] = { - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(1730), - [sym_variable_name] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1730), - }, - [850] = { - [aux_sym_concatenation_repeat1] = STATE(850), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(2815), - [sym_variable_name] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1730), - }, - [851] = { - [sym_file_descriptor] = ACTIONS(1737), - [sym__concat] = ACTIONS(1737), - [sym_variable_name] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1737), - [anon_sym_AMP_GT] = ACTIONS(1739), - [anon_sym_AMP_GT_GT] = ACTIONS(1737), - [anon_sym_LT_AMP] = ACTIONS(1737), - [anon_sym_GT_AMP] = ACTIONS(1737), - [sym__special_characters] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1739), - [sym_raw_string] = ACTIONS(1737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1737), - [anon_sym_BQUOTE] = ACTIONS(1737), - [anon_sym_LT_LPAREN] = ACTIONS(1737), - [anon_sym_GT_LPAREN] = ACTIONS(1737), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1737), - }, - [852] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(2818), - [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), - }, - [853] = { - [sym_concatenation] = STATE(1310), - [sym_string] = STATE(1309), - [sym_simple_expansion] = STATE(1309), - [sym_string_expansion] = STATE(1309), - [sym_expansion] = STATE(1309), - [sym_command_substitution] = STATE(1309), - [sym_process_substitution] = STATE(1309), - [anon_sym_RBRACE] = ACTIONS(2820), - [sym__special_characters] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(2824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2824), - }, - [854] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(2826), - [sym_comment] = ACTIONS(57), - }, - [855] = { - [sym_concatenation] = STATE(1314), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1314), - [anon_sym_RBRACE] = ACTIONS(2828), - [anon_sym_EQ] = ACTIONS(2830), - [anon_sym_DASH] = ACTIONS(2830), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2834), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_COLON_QMARK] = ACTIONS(2830), - [anon_sym_COLON_DASH] = ACTIONS(2830), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [856] = { - [sym_concatenation] = STATE(1316), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1316), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_EQ] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2840), - [anon_sym_COLON] = ACTIONS(2836), - [anon_sym_COLON_QMARK] = ACTIONS(2836), - [anon_sym_COLON_DASH] = ACTIONS(2836), - [anon_sym_PERCENT] = ACTIONS(2836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_file_descriptor] = ACTIONS(1838), - [sym__concat] = ACTIONS(1838), - [sym_variable_name] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_GT_GT] = ACTIONS(1838), - [anon_sym_AMP_GT] = ACTIONS(1840), - [anon_sym_AMP_GT_GT] = ACTIONS(1838), - [anon_sym_LT_AMP] = ACTIONS(1838), - [anon_sym_GT_AMP] = ACTIONS(1838), - [sym__special_characters] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1840), - [sym_raw_string] = ACTIONS(1838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_LT_LPAREN] = ACTIONS(1838), - [anon_sym_GT_LPAREN] = ACTIONS(1838), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1838), - }, - [858] = { - [sym_concatenation] = STATE(1319), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1319), - [sym_regex] = ACTIONS(2842), - [anon_sym_RBRACE] = ACTIONS(2844), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2848), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(2846), - [anon_sym_COLON_QMARK] = ACTIONS(2846), - [anon_sym_COLON_DASH] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [859] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(2844), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1886), - }, - [861] = { - [sym_concatenation] = STATE(1316), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1316), - [sym_regex] = ACTIONS(2850), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_EQ] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(2836), - [anon_sym_COLON_QMARK] = ACTIONS(2836), - [anon_sym_COLON_DASH] = ACTIONS(2836), - [anon_sym_PERCENT] = ACTIONS(2836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [862] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [863] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(2852), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [864] = { - [sym_file_descriptor] = ACTIONS(1894), - [sym__concat] = ACTIONS(1894), - [sym_variable_name] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_GT_GT] = ACTIONS(1894), - [anon_sym_AMP_GT] = ACTIONS(1896), - [anon_sym_AMP_GT_GT] = ACTIONS(1894), - [anon_sym_LT_AMP] = ACTIONS(1894), - [anon_sym_GT_AMP] = ACTIONS(1894), - [sym__special_characters] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1896), - [sym_raw_string] = ACTIONS(1894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), - [anon_sym_BQUOTE] = ACTIONS(1894), - [anon_sym_LT_LPAREN] = ACTIONS(1894), - [anon_sym_GT_LPAREN] = ACTIONS(1894), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1894), - }, - [865] = { - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_RPAREN] = ACTIONS(2852), - [anon_sym_SEMI_SEMI] = ACTIONS(2856), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2856), - }, - [866] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1324), - [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(2858), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2852), - [anon_sym_SEMI_SEMI] = ACTIONS(2860), - [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(2860), - [anon_sym_AMP] = ACTIONS(2858), - }, - [867] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1324), - [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(2858), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2852), - [anon_sym_SEMI_SEMI] = ACTIONS(2860), - [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(2860), - [anon_sym_AMP] = ACTIONS(2858), - }, - [868] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(2852), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [869] = { - [anon_sym_SEMI] = ACTIONS(2862), - [anon_sym_SEMI_SEMI] = ACTIONS(2864), - [anon_sym_BQUOTE] = ACTIONS(2852), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2864), - }, - [870] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1327), - [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(2866), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2868), - [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(2852), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2866), - }, - [871] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1327), - [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(2866), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2868), - [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(2852), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2866), - }, - [872] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(2870), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [873] = { - [sym_file_descriptor] = ACTIONS(1928), - [sym__concat] = ACTIONS(1928), - [sym_variable_name] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_GT_GT] = ACTIONS(1928), - [anon_sym_AMP_GT] = ACTIONS(1930), - [anon_sym_AMP_GT_GT] = ACTIONS(1928), - [anon_sym_LT_AMP] = ACTIONS(1928), - [anon_sym_GT_AMP] = ACTIONS(1928), - [sym__special_characters] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1928), - [anon_sym_DOLLAR] = ACTIONS(1930), - [sym_raw_string] = ACTIONS(1928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), - [anon_sym_BQUOTE] = ACTIONS(1928), - [anon_sym_LT_LPAREN] = ACTIONS(1928), - [anon_sym_GT_LPAREN] = ACTIONS(1928), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1928), - }, - [874] = { - [anon_sym_SEMI] = ACTIONS(2872), - [anon_sym_RPAREN] = ACTIONS(2870), - [anon_sym_SEMI_SEMI] = ACTIONS(2874), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2874), - }, - [875] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1331), - [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(2876), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2870), - [anon_sym_SEMI_SEMI] = ACTIONS(2878), - [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(2878), - [anon_sym_AMP] = ACTIONS(2876), - }, - [876] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1331), - [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(2876), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2870), - [anon_sym_SEMI_SEMI] = ACTIONS(2878), - [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(2878), - [anon_sym_AMP] = ACTIONS(2876), - }, - [877] = { - [anon_sym_DQUOTE] = ACTIONS(2880), - [anon_sym_DOLLAR] = ACTIONS(2880), - [sym__string_content] = ACTIONS(2882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2880), - [anon_sym_BQUOTE] = ACTIONS(2880), - [sym_comment] = ACTIONS(265), - }, - [878] = { - [sym_concatenation] = STATE(1335), - [sym_string] = STATE(1334), - [sym_simple_expansion] = STATE(1334), - [sym_string_expansion] = STATE(1334), - [sym_expansion] = STATE(1334), - [sym_command_substitution] = STATE(1334), - [sym_process_substitution] = STATE(1334), - [anon_sym_RBRACE] = ACTIONS(2884), - [sym__special_characters] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(2888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2888), - }, - [879] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(2890), - [sym_comment] = ACTIONS(57), - }, - [880] = { - [sym_concatenation] = STATE(1339), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1339), - [anon_sym_RBRACE] = ACTIONS(2892), - [anon_sym_EQ] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2898), - [anon_sym_COLON] = ACTIONS(2894), - [anon_sym_COLON_QMARK] = ACTIONS(2894), - [anon_sym_COLON_DASH] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [881] = { - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1341), - [anon_sym_RBRACE] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2902), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2904), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_DASH] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__concat] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1840), - [anon_sym_DOLLAR] = ACTIONS(1840), - [sym__string_content] = ACTIONS(1838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1840), - [sym_comment] = ACTIONS(265), - }, - [883] = { - [sym_concatenation] = STATE(1344), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1344), - [sym_regex] = ACTIONS(2906), - [anon_sym_RBRACE] = ACTIONS(2908), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2912), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(2910), - [anon_sym_COLON_QMARK] = ACTIONS(2910), - [anon_sym_COLON_DASH] = ACTIONS(2910), - [anon_sym_PERCENT] = ACTIONS(2910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [884] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(2908), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__concat] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym__string_content] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [sym_comment] = ACTIONS(265), - }, - [886] = { - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1341), - [sym_regex] = ACTIONS(2914), - [anon_sym_RBRACE] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2902), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_DASH] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [887] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [888] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(2916), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [889] = { - [sym__concat] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1896), - [sym__string_content] = ACTIONS(1894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1896), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1896), - [anon_sym_BQUOTE] = ACTIONS(1896), - [sym_comment] = ACTIONS(265), - }, - [890] = { - [anon_sym_SEMI] = ACTIONS(2918), - [anon_sym_RPAREN] = ACTIONS(2916), - [anon_sym_SEMI_SEMI] = ACTIONS(2920), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2920), - }, - [891] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1349), - [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(2922), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2916), - [anon_sym_SEMI_SEMI] = ACTIONS(2924), - [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(2924), - [anon_sym_AMP] = ACTIONS(2922), - }, - [892] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1349), - [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(2922), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2916), - [anon_sym_SEMI_SEMI] = ACTIONS(2924), - [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(2924), - [anon_sym_AMP] = ACTIONS(2922), - }, - [893] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(2916), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [894] = { - [anon_sym_SEMI] = ACTIONS(2926), - [anon_sym_SEMI_SEMI] = ACTIONS(2928), - [anon_sym_BQUOTE] = ACTIONS(2916), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - }, - [895] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1352), - [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(2930), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2932), - [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(2916), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2932), - [anon_sym_AMP] = ACTIONS(2930), - }, - [896] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1352), - [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(2930), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(2932), - [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(2916), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(2932), - [anon_sym_AMP] = ACTIONS(2930), - }, - [897] = { - [sym__simple_heredoc_body] = ACTIONS(2934), - [sym__heredoc_body_beginning] = ACTIONS(2934), - [sym_file_descriptor] = ACTIONS(2934), - [sym__concat] = ACTIONS(2934), - [ts_builtin_sym_end] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_SEMI_SEMI] = ACTIONS(2934), - [anon_sym_PIPE_AMP] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_EQ_TILDE] = ACTIONS(2936), - [anon_sym_EQ_EQ] = ACTIONS(2936), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_AMP_GT] = ACTIONS(2936), - [anon_sym_AMP_GT_GT] = ACTIONS(2934), - [anon_sym_LT_AMP] = ACTIONS(2934), - [anon_sym_GT_AMP] = ACTIONS(2934), - [anon_sym_LT_LT] = ACTIONS(2936), - [anon_sym_LT_LT_DASH] = ACTIONS(2934), - [anon_sym_LT_LT_LT] = ACTIONS(2934), - [sym__special_characters] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_LT_LPAREN] = ACTIONS(2934), - [anon_sym_GT_LPAREN] = ACTIONS(2934), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2936), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), - }, - [898] = { - [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), - }, - [899] = { - [aux_sym_concatenation_repeat1] = STATE(531), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACK] = ACTIONS(2940), - [sym_comment] = ACTIONS(57), - }, - [900] = { - [aux_sym_concatenation_repeat1] = STATE(531), - [sym__concat] = ACTIONS(2942), - [anon_sym_RBRACK] = ACTIONS(2944), - [sym_comment] = ACTIONS(57), - }, - [901] = { - [sym__concat] = ACTIONS(2946), - [anon_sym_RBRACK] = ACTIONS(2944), - [sym_comment] = ACTIONS(57), - }, - [902] = { - [sym__simple_heredoc_body] = ACTIONS(2948), - [sym__heredoc_body_beginning] = ACTIONS(2948), - [sym_file_descriptor] = ACTIONS(2948), - [sym__concat] = ACTIONS(2948), - [ts_builtin_sym_end] = ACTIONS(2948), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_RPAREN] = ACTIONS(2948), - [anon_sym_SEMI_SEMI] = ACTIONS(2948), - [anon_sym_PIPE_AMP] = ACTIONS(2948), - [anon_sym_AMP_AMP] = ACTIONS(2948), - [anon_sym_PIPE_PIPE] = ACTIONS(2948), - [anon_sym_EQ_TILDE] = ACTIONS(2950), - [anon_sym_EQ_EQ] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_GT_GT] = ACTIONS(2948), - [anon_sym_AMP_GT] = ACTIONS(2950), - [anon_sym_AMP_GT_GT] = ACTIONS(2948), - [anon_sym_LT_AMP] = ACTIONS(2948), - [anon_sym_GT_AMP] = ACTIONS(2948), - [anon_sym_LT_LT] = ACTIONS(2950), - [anon_sym_LT_LT_DASH] = ACTIONS(2948), - [anon_sym_LT_LT_LT] = ACTIONS(2948), - [sym__special_characters] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2948), - [anon_sym_BQUOTE] = ACTIONS(2948), - [anon_sym_LT_LPAREN] = ACTIONS(2948), - [anon_sym_GT_LPAREN] = ACTIONS(2948), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - }, - [903] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(2954), - [sym_comment] = ACTIONS(57), - }, - [904] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(1363), - [anon_sym_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2958), - [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), - }, - [905] = { - [sym_string] = STATE(1365), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(2960), - [sym_raw_string] = ACTIONS(2962), - [anon_sym_POUND] = ACTIONS(2960), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2964), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_AT] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_0] = ACTIONS(2964), - [anon_sym__] = ACTIONS(2964), - }, - [906] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(2968), - [sym_comment] = ACTIONS(57), - }, - [907] = { - [sym_subscript] = STATE(1371), - [sym_variable_name] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2972), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_DOLLAR] = ACTIONS(2974), - [anon_sym_POUND] = ACTIONS(2972), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2976), - [anon_sym_STAR] = ACTIONS(2978), - [anon_sym_AT] = ACTIONS(2978), - [anon_sym_QMARK] = ACTIONS(2978), - [anon_sym_0] = ACTIONS(2976), - [anon_sym__] = ACTIONS(2976), - }, - [908] = { - [sym__terminated_statement] = STATE(1374), - [sym_redirected_statement] = STATE(1372), - [sym_for_statement] = STATE(1372), - [sym_c_style_for_statement] = STATE(1372), - [sym_while_statement] = STATE(1372), - [sym_if_statement] = STATE(1372), - [sym_case_statement] = STATE(1372), - [sym_function_definition] = STATE(1372), - [sym_compound_statement] = STATE(1372), - [sym_subshell] = STATE(1372), - [sym_pipeline] = STATE(1372), - [sym_list] = STATE(1372), - [sym_negated_command] = STATE(1372), - [sym_test_command] = STATE(1372), - [sym_declaration_command] = STATE(1372), - [sym_unset_command] = STATE(1372), - [sym_command] = STATE(1372), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(1373), - [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(1374), - [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__terminated_statement] = STATE(1377), - [sym_redirected_statement] = STATE(1375), - [sym_for_statement] = STATE(1375), - [sym_c_style_for_statement] = STATE(1375), - [sym_while_statement] = STATE(1375), - [sym_if_statement] = STATE(1375), - [sym_case_statement] = STATE(1375), - [sym_function_definition] = STATE(1375), - [sym_compound_statement] = STATE(1375), - [sym_subshell] = STATE(1375), - [sym_pipeline] = STATE(1375), - [sym_list] = STATE(1375), - [sym_negated_command] = STATE(1375), - [sym_test_command] = STATE(1375), - [sym_declaration_command] = STATE(1375), - [sym_unset_command] = STATE(1375), - [sym_command] = STATE(1375), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(1376), - [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(1377), - [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), - }, - [910] = { - [sym__terminated_statement] = STATE(1380), - [sym_redirected_statement] = STATE(1378), - [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_compound_statement] = 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(83), - [sym_variable_assignment] = STATE(1379), - [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(1380), - [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), - }, - [911] = { - [anon_sym_RBRACE] = ACTIONS(2968), - [sym_comment] = ACTIONS(57), - }, - [912] = { - [sym_concatenation] = STATE(1383), - [sym_string] = STATE(1382), - [sym_simple_expansion] = STATE(1382), - [sym_string_expansion] = STATE(1382), - [sym_expansion] = STATE(1382), - [sym_command_substitution] = STATE(1382), - [sym_process_substitution] = STATE(1382), - [anon_sym_RBRACE] = ACTIONS(2968), - [sym__special_characters] = ACTIONS(2980), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(2982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2982), - }, - [913] = { - [sym__simple_heredoc_body] = ACTIONS(2984), - [sym__heredoc_body_beginning] = ACTIONS(2984), - [sym_file_descriptor] = ACTIONS(2984), - [sym__concat] = ACTIONS(2984), - [ts_builtin_sym_end] = ACTIONS(2984), - [anon_sym_SEMI] = ACTIONS(2986), - [anon_sym_PIPE] = ACTIONS(2986), - [anon_sym_RPAREN] = ACTIONS(2984), - [anon_sym_SEMI_SEMI] = ACTIONS(2984), - [anon_sym_PIPE_AMP] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_EQ_TILDE] = ACTIONS(2986), - [anon_sym_EQ_EQ] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_GT] = ACTIONS(2986), - [anon_sym_GT_GT] = ACTIONS(2984), - [anon_sym_AMP_GT] = ACTIONS(2986), - [anon_sym_AMP_GT_GT] = ACTIONS(2984), - [anon_sym_LT_AMP] = ACTIONS(2984), - [anon_sym_GT_AMP] = ACTIONS(2984), - [anon_sym_LT_LT] = ACTIONS(2986), - [anon_sym_LT_LT_DASH] = ACTIONS(2984), - [anon_sym_LT_LT_LT] = ACTIONS(2984), - [sym__special_characters] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [sym_raw_string] = ACTIONS(2984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2984), - [anon_sym_BQUOTE] = ACTIONS(2984), - [anon_sym_LT_LPAREN] = ACTIONS(2984), - [anon_sym_GT_LPAREN] = ACTIONS(2984), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), - }, - [914] = { - [sym_concatenation] = STATE(1386), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1386), - [sym_regex] = ACTIONS(2988), - [anon_sym_RBRACE] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(2994), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(2992), - [anon_sym_COLON_QMARK] = ACTIONS(2992), - [anon_sym_COLON_DASH] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym_concatenation] = STATE(1388), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1388), - [sym_regex] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3000), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(2998), - [anon_sym_COLON_QMARK] = ACTIONS(2998), - [anon_sym_COLON_DASH] = ACTIONS(2998), - [anon_sym_PERCENT] = ACTIONS(2998), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [917] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [918] = { - [sym_string] = STATE(1389), - [sym_simple_expansion] = STATE(1389), - [sym_string_expansion] = STATE(1389), - [sym_expansion] = STATE(1389), - [sym_command_substitution] = STATE(1389), - [sym_process_substitution] = STATE(1389), - [sym__special_characters] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(3002), - [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(3002), - }, - [919] = { - [aux_sym_concatenation_repeat1] = STATE(1390), - [sym__concat] = ACTIONS(1842), - [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), - }, - [920] = { - [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), - }, - [921] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(3004), - [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), - }, - [922] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(455), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_DOLLAR] = ACTIONS(3006), - [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), - }, - [923] = { - [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), - }, - [924] = { - [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), - }, - [925] = { - [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), - }, - [926] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(3008), - [sym_comment] = ACTIONS(57), - }, - [927] = { - [sym_subscript] = STATE(1396), - [sym_variable_name] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3012), - [anon_sym_DOLLAR] = ACTIONS(3012), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3014), - [anon_sym_STAR] = ACTIONS(3016), - [anon_sym_AT] = ACTIONS(3016), - [anon_sym_QMARK] = ACTIONS(3016), - [anon_sym_0] = ACTIONS(3014), - [anon_sym__] = ACTIONS(3014), - }, - [928] = { - [sym_concatenation] = STATE(1399), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1399), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_EQ] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(3024), - [anon_sym_COLON] = ACTIONS(3020), - [anon_sym_COLON_QMARK] = ACTIONS(3020), - [anon_sym_COLON_DASH] = ACTIONS(3020), - [anon_sym_PERCENT] = ACTIONS(3020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym_concatenation] = STATE(1402), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1402), - [anon_sym_RBRACE] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3030), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(3032), - [anon_sym_COLON] = ACTIONS(3028), - [anon_sym_COLON_QMARK] = ACTIONS(3028), - [anon_sym_COLON_DASH] = ACTIONS(3028), - [anon_sym_PERCENT] = ACTIONS(3028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [930] = { - [sym_concatenation] = STATE(1404), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1404), - [anon_sym_RBRACE] = ACTIONS(3034), - [anon_sym_EQ] = ACTIONS(3036), - [anon_sym_DASH] = ACTIONS(3036), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3036), - [anon_sym_COLON_QMARK] = ACTIONS(3036), - [anon_sym_COLON_DASH] = ACTIONS(3036), - [anon_sym_PERCENT] = ACTIONS(3036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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(3040), - [sym__heredoc_body_beginning] = ACTIONS(3040), - [sym_file_descriptor] = ACTIONS(3040), - [sym__concat] = ACTIONS(3040), - [ts_builtin_sym_end] = ACTIONS(3040), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_RPAREN] = ACTIONS(3040), - [anon_sym_SEMI_SEMI] = ACTIONS(3040), - [anon_sym_PIPE_AMP] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_EQ_TILDE] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_GT_GT] = ACTIONS(3040), - [anon_sym_AMP_GT] = ACTIONS(3042), - [anon_sym_AMP_GT_GT] = ACTIONS(3040), - [anon_sym_LT_AMP] = ACTIONS(3040), - [anon_sym_GT_AMP] = ACTIONS(3040), - [anon_sym_LT_LT] = ACTIONS(3042), - [anon_sym_LT_LT_DASH] = ACTIONS(3040), - [anon_sym_LT_LT_LT] = ACTIONS(3040), - [sym__special_characters] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [sym_raw_string] = ACTIONS(3040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), - [anon_sym_BQUOTE] = ACTIONS(3040), - [anon_sym_LT_LPAREN] = ACTIONS(3040), - [anon_sym_GT_LPAREN] = ACTIONS(3040), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3042), - [anon_sym_LF] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - }, - [932] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3034), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [933] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1407), - [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(3044), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3046), - [anon_sym_SEMI_SEMI] = ACTIONS(3048), - [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(3048), - [anon_sym_AMP] = ACTIONS(3044), - }, - [934] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1407), - [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(3044), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3046), - [anon_sym_SEMI_SEMI] = ACTIONS(3048), - [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(3048), - [anon_sym_AMP] = ACTIONS(3044), - }, - [935] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1408), - [sym_for_statement] = STATE(1408), - [sym_c_style_for_statement] = STATE(1408), - [sym_while_statement] = STATE(1408), - [sym_if_statement] = STATE(1408), - [sym_case_statement] = STATE(1408), - [sym_function_definition] = STATE(1408), - [sym_compound_statement] = STATE(1408), - [sym_subshell] = STATE(1408), - [sym_pipeline] = STATE(1408), - [sym_list] = STATE(1408), - [sym_negated_command] = STATE(1408), - [sym_test_command] = STATE(1408), - [sym_declaration_command] = STATE(1408), - [sym_unset_command] = STATE(1408), - [sym_command] = STATE(1408), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(1409), - [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), - }, - [936] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1411), - [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(3050), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(3052), - [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(3046), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3050), - }, - [937] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1411), - [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(3050), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(3052), - [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(3046), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3050), - }, - [938] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1412), - [sym_for_statement] = STATE(1412), - [sym_c_style_for_statement] = STATE(1412), - [sym_while_statement] = STATE(1412), - [sym_if_statement] = STATE(1412), - [sym_case_statement] = STATE(1412), - [sym_function_definition] = STATE(1412), - [sym_compound_statement] = STATE(1412), - [sym_subshell] = STATE(1412), - [sym_pipeline] = STATE(1412), - [sym_list] = STATE(1412), - [sym_negated_command] = STATE(1412), - [sym_test_command] = STATE(1412), - [sym_declaration_command] = STATE(1412), - [sym_unset_command] = STATE(1412), - [sym_command] = STATE(1412), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(1413), - [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), - }, - [939] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1416), - [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(3054), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3056), - [anon_sym_SEMI_SEMI] = ACTIONS(3058), - [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(3058), - [anon_sym_AMP] = ACTIONS(3054), - }, - [940] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1416), - [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(3054), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3056), - [anon_sym_SEMI_SEMI] = ACTIONS(3058), - [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(3058), - [anon_sym_AMP] = ACTIONS(3054), - }, - [941] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1417), - [sym_for_statement] = STATE(1417), - [sym_c_style_for_statement] = STATE(1417), - [sym_while_statement] = STATE(1417), - [sym_if_statement] = STATE(1417), - [sym_case_statement] = STATE(1417), - [sym_function_definition] = STATE(1417), - [sym_compound_statement] = STATE(1417), - [sym_subshell] = STATE(1417), - [sym_pipeline] = STATE(1417), - [sym_list] = STATE(1417), - [sym_negated_command] = STATE(1417), - [sym_test_command] = STATE(1417), - [sym_declaration_command] = STATE(1417), - [sym_unset_command] = STATE(1417), - [sym_command] = STATE(1417), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(1418), - [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), - }, - [942] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3060), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [sym__special_characters] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(3074), - [anon_sym_POUND] = ACTIONS(3077), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3080), - [anon_sym_COLON] = ACTIONS(3062), - [anon_sym_COLON_QMARK] = ACTIONS(3062), - [anon_sym_COLON_DASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3083), - [anon_sym_BQUOTE] = ACTIONS(3086), - [anon_sym_LT_LPAREN] = ACTIONS(3089), - [anon_sym_GT_LPAREN] = ACTIONS(3089), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(3092), - }, - [943] = { - [sym_concatenation] = STATE(1388), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1388), - [anon_sym_RBRACE] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3000), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(2998), - [anon_sym_COLON_QMARK] = ACTIONS(2998), - [anon_sym_COLON_DASH] = ACTIONS(2998), - [anon_sym_PERCENT] = ACTIONS(2998), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [944] = { - [sym__simple_heredoc_body] = ACTIONS(3095), - [sym__heredoc_body_beginning] = ACTIONS(3095), - [sym_file_descriptor] = ACTIONS(3095), - [sym__concat] = ACTIONS(3095), - [ts_builtin_sym_end] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_EQ_TILDE] = ACTIONS(3097), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_AMP_GT] = ACTIONS(3097), - [anon_sym_AMP_GT_GT] = ACTIONS(3095), - [anon_sym_LT_AMP] = ACTIONS(3095), - [anon_sym_GT_AMP] = ACTIONS(3095), - [anon_sym_LT_LT] = ACTIONS(3097), - [anon_sym_LT_LT_DASH] = ACTIONS(3095), - [anon_sym_LT_LT_LT] = ACTIONS(3095), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [sym_raw_string] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), - [anon_sym_BQUOTE] = ACTIONS(3095), - [anon_sym_LT_LPAREN] = ACTIONS(3095), - [anon_sym_GT_LPAREN] = ACTIONS(3095), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3097), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - }, - [945] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [946] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [947] = { - [anon_sym_SEMI] = ACTIONS(3101), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_SEMI_SEMI] = ACTIONS(3103), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - }, - [948] = { - [sym_concatenation] = STATE(983), - [sym_string] = STATE(1422), - [sym_simple_expansion] = STATE(1422), - [sym_string_expansion] = STATE(1422), - [sym_expansion] = STATE(1422), - [sym_command_substitution] = STATE(1422), - [sym_process_substitution] = STATE(1422), - [sym__special_characters] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(43), - [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(3107), - [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(3107), - }, - [949] = { - [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(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1968), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [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_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), - [sym_variable_name] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1968), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [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__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(1968), - [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] = { - [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(1972), - [sym__heredoc_body_beginning] = ACTIONS(1972), - [sym_file_descriptor] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(893), - [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), - }, - [952] = { - [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(1972), - [sym__heredoc_body_beginning] = ACTIONS(1972), - [sym_file_descriptor] = ACTIONS(339), - [sym_variable_name] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(893), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [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(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1972), - [anon_sym_LT_LT_LT] = ACTIONS(1972), - [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(1972), - [anon_sym_AMP] = ACTIONS(1974), - }, - [953] = { - [aux_sym_concatenation_repeat1] = STATE(1423), - [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), - }, - [954] = { - [aux_sym_concatenation_repeat1] = STATE(1423), - [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), - }, - [955] = { - [aux_sym_concatenation_repeat1] = STATE(1423), - [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), - }, - [956] = { - [aux_sym_concatenation_repeat1] = STATE(1423), - [sym__simple_heredoc_body] = ACTIONS(1984), - [sym__heredoc_body_beginning] = ACTIONS(1984), - [sym_file_descriptor] = ACTIONS(1984), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_SEMI_SEMI] = ACTIONS(1984), - [anon_sym_PIPE_AMP] = ACTIONS(1984), - [anon_sym_AMP_AMP] = ACTIONS(1984), - [anon_sym_PIPE_PIPE] = ACTIONS(1984), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_GT] = ACTIONS(1986), - [anon_sym_GT_GT] = ACTIONS(1984), - [anon_sym_AMP_GT] = ACTIONS(1986), - [anon_sym_AMP_GT_GT] = ACTIONS(1984), - [anon_sym_LT_AMP] = ACTIONS(1984), - [anon_sym_GT_AMP] = ACTIONS(1984), - [anon_sym_LT_LT] = ACTIONS(1986), - [anon_sym_LT_LT_DASH] = ACTIONS(1984), - [anon_sym_LT_LT_LT] = ACTIONS(1984), - [anon_sym_BQUOTE] = ACTIONS(1984), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1986), - }, - [957] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(3099), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [958] = { - [sym_file_redirect] = STATE(958), - [sym_heredoc_redirect] = STATE(958), - [sym_herestring_redirect] = STATE(958), - [aux_sym_redirected_statement_repeat1] = STATE(958), - [sym__simple_heredoc_body] = ACTIONS(1994), - [sym__heredoc_body_beginning] = ACTIONS(1994), - [sym_file_descriptor] = ACTIONS(3109), - [anon_sym_SEMI] = ACTIONS(1999), - [anon_sym_PIPE] = ACTIONS(1999), - [anon_sym_SEMI_SEMI] = ACTIONS(1994), - [anon_sym_PIPE_AMP] = ACTIONS(1994), - [anon_sym_AMP_AMP] = ACTIONS(1994), - [anon_sym_PIPE_PIPE] = ACTIONS(1994), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_GT_GT] = ACTIONS(3115), - [anon_sym_AMP_GT] = ACTIONS(3112), - [anon_sym_AMP_GT_GT] = ACTIONS(3115), - [anon_sym_LT_AMP] = ACTIONS(3115), - [anon_sym_GT_AMP] = ACTIONS(3115), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_LT_LT_DASH] = ACTIONS(2010), - [anon_sym_LT_LT_LT] = ACTIONS(3118), - [anon_sym_BQUOTE] = ACTIONS(1994), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1999), - }, - [959] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(3099), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [960] = { - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym_SEMI_SEMI] = ACTIONS(3123), - [anon_sym_BQUOTE] = ACTIONS(3099), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3123), - }, - [961] = { - [sym_concatenation] = STATE(685), - [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(685), - [sym__simple_heredoc_body] = ACTIONS(2062), - [sym__heredoc_body_beginning] = ACTIONS(2062), - [sym_file_descriptor] = ACTIONS(2062), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_SEMI_SEMI] = ACTIONS(2062), - [anon_sym_PIPE_AMP] = ACTIONS(2062), - [anon_sym_AMP_AMP] = ACTIONS(2062), - [anon_sym_PIPE_PIPE] = ACTIONS(2062), - [anon_sym_EQ_TILDE] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_GT_GT] = ACTIONS(2062), - [anon_sym_AMP_GT] = ACTIONS(2064), - [anon_sym_AMP_GT_GT] = ACTIONS(2062), - [anon_sym_LT_AMP] = ACTIONS(2062), - [anon_sym_GT_AMP] = ACTIONS(2062), - [anon_sym_LT_LT] = ACTIONS(2064), - [anon_sym_LT_LT_DASH] = ACTIONS(2062), - [anon_sym_LT_LT_LT] = ACTIONS(2062), - [sym__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(2062), - [anon_sym_LT_LPAREN] = ACTIONS(55), - [anon_sym_GT_LPAREN] = ACTIONS(55), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(519), - [anon_sym_LF] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2064), - }, - [962] = { - [sym__simple_heredoc_body] = ACTIONS(3125), - [sym__heredoc_body_beginning] = ACTIONS(3125), - [sym_file_descriptor] = ACTIONS(3125), - [sym__concat] = ACTIONS(3125), - [ts_builtin_sym_end] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_RPAREN] = ACTIONS(3125), - [anon_sym_SEMI_SEMI] = ACTIONS(3125), - [anon_sym_PIPE_AMP] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_EQ_TILDE] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_AMP_GT] = ACTIONS(3127), - [anon_sym_AMP_GT_GT] = ACTIONS(3125), - [anon_sym_LT_AMP] = ACTIONS(3125), - [anon_sym_GT_AMP] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_LT_LT_DASH] = ACTIONS(3125), - [anon_sym_LT_LT_LT] = ACTIONS(3125), - [sym__special_characters] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [anon_sym_DOLLAR] = ACTIONS(3127), - [sym_raw_string] = ACTIONS(3125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3125), - [anon_sym_BQUOTE] = ACTIONS(3125), - [anon_sym_LT_LPAREN] = ACTIONS(3125), - [anon_sym_GT_LPAREN] = ACTIONS(3125), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3127), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - }, - [963] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(3129), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [964] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3129), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [965] = { - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_RPAREN] = ACTIONS(3129), - [anon_sym_SEMI_SEMI] = ACTIONS(3133), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - }, - [966] = { - [sym__simple_heredoc_body] = ACTIONS(3135), - [sym__heredoc_body_beginning] = ACTIONS(3135), - [sym_file_descriptor] = ACTIONS(3135), - [ts_builtin_sym_end] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym_esac] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_SEMI_SEMI] = ACTIONS(3135), - [anon_sym_PIPE_AMP] = ACTIONS(3135), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_GT_GT] = ACTIONS(3135), - [anon_sym_AMP_GT] = ACTIONS(3137), - [anon_sym_AMP_GT_GT] = ACTIONS(3135), - [anon_sym_LT_AMP] = ACTIONS(3135), - [anon_sym_GT_AMP] = ACTIONS(3135), - [anon_sym_LT_LT] = ACTIONS(3137), - [anon_sym_LT_LT_DASH] = ACTIONS(3135), - [anon_sym_LT_LT_LT] = ACTIONS(3135), - [anon_sym_BQUOTE] = ACTIONS(3135), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3137), - }, - [967] = { - [sym__heredoc_body_middle] = ACTIONS(817), - [sym__heredoc_body_end] = ACTIONS(817), - [anon_sym_DOLLAR] = ACTIONS(819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), - [anon_sym_BQUOTE] = ACTIONS(817), - [sym_comment] = ACTIONS(57), - }, - [968] = { - [sym__heredoc_body_middle] = ACTIONS(825), - [sym__heredoc_body_end] = ACTIONS(825), - [anon_sym_DOLLAR] = ACTIONS(827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(825), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(825), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_comment] = ACTIONS(57), - }, - [969] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(3139), - [sym_comment] = ACTIONS(57), - }, - [970] = { - [sym_subscript] = STATE(1430), - [sym_variable_name] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_DOLLAR] = ACTIONS(3143), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_AT] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_0] = ACTIONS(3145), - [anon_sym__] = ACTIONS(3145), - }, - [971] = { - [sym_concatenation] = STATE(1433), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1433), - [anon_sym_RBRACE] = ACTIONS(3149), - [anon_sym_EQ] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3151), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3153), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(3155), - [anon_sym_COLON] = ACTIONS(3151), - [anon_sym_COLON_QMARK] = ACTIONS(3151), - [anon_sym_COLON_DASH] = ACTIONS(3151), - [anon_sym_PERCENT] = ACTIONS(3151), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [972] = { - [sym_concatenation] = STATE(1436), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1436), - [anon_sym_RBRACE] = ACTIONS(3157), - [anon_sym_EQ] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3161), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_COLON] = ACTIONS(3159), - [anon_sym_COLON_QMARK] = ACTIONS(3159), - [anon_sym_COLON_DASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [973] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1439), - [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(3165), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3167), - [anon_sym_SEMI_SEMI] = ACTIONS(3169), - [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(3169), - [anon_sym_AMP] = ACTIONS(3165), - }, - [974] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1439), - [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(3165), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3167), - [anon_sym_SEMI_SEMI] = ACTIONS(3169), - [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(3169), - [anon_sym_AMP] = ACTIONS(3165), - }, - [975] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1440), - [sym_for_statement] = STATE(1440), - [sym_c_style_for_statement] = STATE(1440), - [sym_while_statement] = STATE(1440), - [sym_if_statement] = STATE(1440), - [sym_case_statement] = STATE(1440), - [sym_function_definition] = STATE(1440), - [sym_compound_statement] = STATE(1440), - [sym_subshell] = STATE(1440), - [sym_pipeline] = STATE(1440), - [sym_list] = STATE(1440), - [sym_negated_command] = STATE(1440), - [sym_test_command] = STATE(1440), - [sym_declaration_command] = STATE(1440), - [sym_unset_command] = STATE(1440), - [sym_command] = STATE(1440), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(1441), - [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), - }, - [976] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1443), - [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(3171), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(3173), - [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(3167), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3171), - }, - [977] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1443), - [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(3171), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(3173), - [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(3167), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3171), - }, - [978] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1444), - [sym_for_statement] = STATE(1444), - [sym_c_style_for_statement] = STATE(1444), - [sym_while_statement] = STATE(1444), - [sym_if_statement] = STATE(1444), - [sym_case_statement] = STATE(1444), - [sym_function_definition] = STATE(1444), - [sym_compound_statement] = STATE(1444), - [sym_subshell] = STATE(1444), - [sym_pipeline] = STATE(1444), - [sym_list] = STATE(1444), - [sym_negated_command] = STATE(1444), - [sym_test_command] = STATE(1444), - [sym_declaration_command] = STATE(1444), - [sym_unset_command] = STATE(1444), - [sym_command] = STATE(1444), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(1445), - [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), - }, - [979] = { - [ts_builtin_sym_end] = ACTIONS(3175), - [anon_sym_SEMI] = ACTIONS(3177), - [anon_sym_RPAREN] = ACTIONS(3175), - [anon_sym_SEMI_SEMI] = ACTIONS(3175), - [anon_sym_BQUOTE] = ACTIONS(3175), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3175), - }, - [980] = { - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [aux_sym_heredoc_body_repeat1] = STATE(980), - [sym__heredoc_body_middle] = ACTIONS(3179), - [sym__heredoc_body_end] = ACTIONS(3182), - [anon_sym_DOLLAR] = ACTIONS(3184), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3187), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3190), - [anon_sym_BQUOTE] = ACTIONS(3193), - [sym_comment] = ACTIONS(57), - }, - [981] = { - [aux_sym_concatenation_repeat1] = STATE(984), - [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), - }, - [982] = { - [aux_sym_concatenation_repeat1] = STATE(984), - [sym__simple_heredoc_body] = ACTIONS(1075), - [sym__heredoc_body_beginning] = ACTIONS(1075), - [sym_file_descriptor] = ACTIONS(1075), - [sym__concat] = ACTIONS(249), - [ts_builtin_sym_end] = ACTIONS(1075), - [anon_sym_SEMI] = ACTIONS(1077), - [anon_sym_PIPE] = ACTIONS(1077), - [anon_sym_SEMI_SEMI] = ACTIONS(1075), - [anon_sym_PIPE_AMP] = ACTIONS(1075), - [anon_sym_AMP_AMP] = ACTIONS(1075), - [anon_sym_PIPE_PIPE] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1077), - [anon_sym_GT] = ACTIONS(1077), - [anon_sym_GT_GT] = ACTIONS(1075), - [anon_sym_AMP_GT] = ACTIONS(1077), - [anon_sym_AMP_GT_GT] = ACTIONS(1075), - [anon_sym_LT_AMP] = ACTIONS(1075), - [anon_sym_GT_AMP] = ACTIONS(1075), - [anon_sym_LT_LT] = ACTIONS(1077), - [anon_sym_LT_LT_DASH] = ACTIONS(1075), - [anon_sym_LT_LT_LT] = ACTIONS(1075), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1077), - }, - [983] = { - [sym__simple_heredoc_body] = ACTIONS(1075), - [sym__heredoc_body_beginning] = ACTIONS(1075), - [sym_file_descriptor] = ACTIONS(1075), - [ts_builtin_sym_end] = ACTIONS(1075), - [anon_sym_SEMI] = ACTIONS(1077), - [anon_sym_esac] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(1077), - [anon_sym_RPAREN] = ACTIONS(1075), - [anon_sym_SEMI_SEMI] = ACTIONS(1075), - [anon_sym_PIPE_AMP] = ACTIONS(1075), - [anon_sym_AMP_AMP] = ACTIONS(1075), - [anon_sym_PIPE_PIPE] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1077), - [anon_sym_GT] = ACTIONS(1077), - [anon_sym_GT_GT] = ACTIONS(1075), - [anon_sym_AMP_GT] = ACTIONS(1077), - [anon_sym_AMP_GT_GT] = ACTIONS(1075), - [anon_sym_LT_AMP] = ACTIONS(1075), - [anon_sym_GT_AMP] = ACTIONS(1075), - [anon_sym_LT_LT] = ACTIONS(1077), - [anon_sym_LT_LT_DASH] = ACTIONS(1075), - [anon_sym_LT_LT_LT] = ACTIONS(1075), - [anon_sym_BQUOTE] = ACTIONS(1075), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1077), - }, - [984] = { - [aux_sym_concatenation_repeat1] = STATE(1446), - [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), - }, - [985] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [ts_builtin_sym_end] = ACTIONS(3196), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [986] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_done] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_fi] = ACTIONS(935), - [anon_sym_elif] = ACTIONS(935), - [anon_sym_else] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [987] = { - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_SEMI_SEMI] = ACTIONS(3200), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3200), - [anon_sym_AMP] = ACTIONS(3200), - }, - [988] = { - [sym__concat] = ACTIONS(3202), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_PLUS_EQ] = ACTIONS(3204), - [sym_comment] = ACTIONS(57), - }, - [989] = { - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_PLUS_EQ] = ACTIONS(3204), - [sym_comment] = ACTIONS(57), - }, - [990] = { - [aux_sym_concatenation_repeat1] = STATE(990), - [sym__concat] = ACTIONS(2618), - [anon_sym_RBRACK] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - }, - [991] = { - [sym__concat] = ACTIONS(3206), - [anon_sym_EQ] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [sym_comment] = ACTIONS(57), - }, - [992] = { - [anon_sym_EQ] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [sym_comment] = ACTIONS(57), - }, - [993] = { - [sym_string] = STATE(1450), - [sym_simple_expansion] = STATE(1450), - [sym_string_expansion] = STATE(1450), - [sym_expansion] = STATE(1450), - [sym_command_substitution] = STATE(1450), - [sym_process_substitution] = STATE(1450), - [sym__special_characters] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_DOLLAR] = ACTIONS(1099), - [sym_raw_string] = ACTIONS(3210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1109), - [anon_sym_GT_LPAREN] = ACTIONS(1109), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3210), - }, - [994] = { - [aux_sym_concatenation_repeat1] = STATE(1451), - [sym__concat] = ACTIONS(2084), - [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), - }, - [995] = { - [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), - }, - [996] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(3212), - [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), - }, - [997] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(455), - [anon_sym_DQUOTE] = ACTIONS(3212), - [anon_sym_DOLLAR] = ACTIONS(3214), - [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), - }, - [998] = { - [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), - }, - [999] = { - [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), - }, - [1000] = { - [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), - }, - [1001] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(3216), - [sym_comment] = ACTIONS(57), - }, - [1002] = { - [sym_subscript] = STATE(1457), - [sym_variable_name] = ACTIONS(3218), - [anon_sym_DASH] = ACTIONS(3220), - [anon_sym_DOLLAR] = ACTIONS(3220), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3222), - [anon_sym_STAR] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3224), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_0] = ACTIONS(3222), - [anon_sym__] = ACTIONS(3222), - }, - [1003] = { - [sym_concatenation] = STATE(1460), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1460), - [anon_sym_RBRACE] = ACTIONS(3226), - [anon_sym_EQ] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(3228), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(3232), - [anon_sym_COLON] = ACTIONS(3228), - [anon_sym_COLON_QMARK] = ACTIONS(3228), - [anon_sym_COLON_DASH] = ACTIONS(3228), - [anon_sym_PERCENT] = ACTIONS(3228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1004] = { - [sym_concatenation] = STATE(1463), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1463), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_EQ] = ACTIONS(3236), - [anon_sym_DASH] = ACTIONS(3236), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(3240), - [anon_sym_COLON] = ACTIONS(3236), - [anon_sym_COLON_QMARK] = ACTIONS(3236), - [anon_sym_COLON_DASH] = ACTIONS(3236), - [anon_sym_PERCENT] = ACTIONS(3236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1005] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1466), - [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(3242), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3244), - [anon_sym_SEMI_SEMI] = ACTIONS(3246), - [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(3246), - [anon_sym_AMP] = ACTIONS(3242), - }, - [1006] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1466), - [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(3242), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3244), - [anon_sym_SEMI_SEMI] = ACTIONS(3246), - [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(3246), - [anon_sym_AMP] = ACTIONS(3242), - }, - [1007] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1467), - [sym_for_statement] = STATE(1467), - [sym_c_style_for_statement] = STATE(1467), - [sym_while_statement] = STATE(1467), - [sym_if_statement] = STATE(1467), - [sym_case_statement] = STATE(1467), - [sym_function_definition] = STATE(1467), - [sym_compound_statement] = STATE(1467), - [sym_subshell] = STATE(1467), - [sym_pipeline] = STATE(1467), - [sym_list] = STATE(1467), - [sym_negated_command] = STATE(1467), - [sym_test_command] = STATE(1467), - [sym_declaration_command] = STATE(1467), - [sym_unset_command] = STATE(1467), - [sym_command] = STATE(1467), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(1468), - [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), - }, - [1008] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1470), - [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(3248), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(3250), - [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(3244), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3250), - [anon_sym_AMP] = ACTIONS(3248), - }, - [1009] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1470), - [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(3248), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(3250), - [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(3244), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(3250), - [anon_sym_AMP] = ACTIONS(3248), - }, - [1010] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1471), - [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_compound_statement] = 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(162), - [sym_variable_assignment] = STATE(1472), - [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), - }, - [1011] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1475), - [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(3252), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3254), - [anon_sym_SEMI_SEMI] = ACTIONS(3256), - [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(3256), - [anon_sym_AMP] = ACTIONS(3252), - }, - [1012] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1475), - [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(3252), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3254), - [anon_sym_SEMI_SEMI] = ACTIONS(3256), - [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(3256), - [anon_sym_AMP] = ACTIONS(3252), - }, - [1013] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1476), - [sym_for_statement] = STATE(1476), - [sym_c_style_for_statement] = STATE(1476), - [sym_while_statement] = STATE(1476), - [sym_if_statement] = STATE(1476), - [sym_case_statement] = STATE(1476), - [sym_function_definition] = STATE(1476), - [sym_compound_statement] = STATE(1476), - [sym_subshell] = STATE(1476), - [sym_pipeline] = STATE(1476), - [sym_list] = STATE(1476), - [sym_negated_command] = STATE(1476), - [sym_test_command] = STATE(1476), - [sym_declaration_command] = STATE(1476), - [sym_unset_command] = STATE(1476), - [sym_command] = STATE(1476), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(1477), - [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), - }, - [1014] = { - [sym__simple_heredoc_body] = ACTIONS(3258), - [sym__heredoc_body_beginning] = ACTIONS(3258), - [sym_file_descriptor] = ACTIONS(3258), - [sym_variable_name] = ACTIONS(3258), - [ts_builtin_sym_end] = ACTIONS(3258), - [anon_sym_SEMI] = ACTIONS(3260), - [anon_sym_PIPE] = ACTIONS(3260), - [anon_sym_RPAREN] = ACTIONS(3258), - [anon_sym_SEMI_SEMI] = ACTIONS(3258), - [anon_sym_PIPE_AMP] = ACTIONS(3258), - [anon_sym_AMP_AMP] = ACTIONS(3258), - [anon_sym_PIPE_PIPE] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_GT] = ACTIONS(3260), - [anon_sym_GT_GT] = ACTIONS(3258), - [anon_sym_AMP_GT] = ACTIONS(3260), - [anon_sym_AMP_GT_GT] = ACTIONS(3258), - [anon_sym_LT_AMP] = ACTIONS(3258), - [anon_sym_GT_AMP] = ACTIONS(3258), - [anon_sym_LT_LT] = ACTIONS(3260), - [anon_sym_LT_LT_DASH] = ACTIONS(3258), - [anon_sym_LT_LT_LT] = ACTIONS(3258), - [sym__special_characters] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_DOLLAR] = ACTIONS(3260), - [sym_raw_string] = ACTIONS(3258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3258), - [anon_sym_BQUOTE] = ACTIONS(3258), - [anon_sym_LT_LPAREN] = ACTIONS(3258), - [anon_sym_GT_LPAREN] = ACTIONS(3258), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3260), - [anon_sym_LF] = ACTIONS(3258), - [anon_sym_AMP] = ACTIONS(3260), - }, - [1015] = { - [sym_concatenation] = STATE(1015), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [aux_sym_for_statement_repeat1] = STATE(1015), - [anon_sym_RPAREN] = ACTIONS(3262), - [sym__special_characters] = ACTIONS(3264), - [anon_sym_DQUOTE] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3270), - [sym_raw_string] = ACTIONS(3273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3279), - [anon_sym_BQUOTE] = ACTIONS(3282), - [anon_sym_LT_LPAREN] = ACTIONS(3285), - [anon_sym_GT_LPAREN] = ACTIONS(3285), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3273), - }, - [1016] = { - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(1730), - [sym_variable_name] = ACTIONS(1730), - [ts_builtin_sym_end] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1730), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [1017] = { - [aux_sym_concatenation_repeat1] = STATE(1017), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(3288), - [sym_variable_name] = ACTIONS(1730), - [ts_builtin_sym_end] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [1018] = { - [sym__simple_heredoc_body] = ACTIONS(1737), - [sym__heredoc_body_beginning] = ACTIONS(1737), - [sym_file_descriptor] = ACTIONS(1737), - [sym__concat] = ACTIONS(1737), - [sym_variable_name] = ACTIONS(1737), - [ts_builtin_sym_end] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_RPAREN] = ACTIONS(1737), - [anon_sym_SEMI_SEMI] = ACTIONS(1737), - [anon_sym_PIPE_AMP] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1737), - [anon_sym_AMP_GT] = ACTIONS(1739), - [anon_sym_AMP_GT_GT] = ACTIONS(1737), - [anon_sym_LT_AMP] = ACTIONS(1737), - [anon_sym_GT_AMP] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_LT_LT_DASH] = ACTIONS(1737), - [anon_sym_LT_LT_LT] = ACTIONS(1737), - [sym__special_characters] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1739), - [sym_raw_string] = ACTIONS(1737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1737), - [anon_sym_BQUOTE] = ACTIONS(1737), - [anon_sym_LT_LPAREN] = ACTIONS(1737), - [anon_sym_GT_LPAREN] = ACTIONS(1737), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1739), - [anon_sym_LF] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1739), - }, - [1019] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(3291), - [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), - }, - [1020] = { - [sym_concatenation] = STATE(1482), - [sym_string] = STATE(1481), - [sym_simple_expansion] = STATE(1481), - [sym_string_expansion] = STATE(1481), - [sym_expansion] = STATE(1481), - [sym_command_substitution] = STATE(1481), - [sym_process_substitution] = STATE(1481), - [anon_sym_RBRACE] = ACTIONS(3293), - [sym__special_characters] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(3297), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3297), - }, - [1021] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(3299), - [sym_comment] = ACTIONS(57), - }, - [1022] = { - [sym_concatenation] = STATE(1486), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1486), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_EQ] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3305), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_COLON] = ACTIONS(3303), - [anon_sym_COLON_QMARK] = ACTIONS(3303), - [anon_sym_COLON_DASH] = ACTIONS(3303), - [anon_sym_PERCENT] = ACTIONS(3303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1023] = { - [sym_concatenation] = STATE(1488), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1488), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_EQ] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3311), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(3313), - [anon_sym_COLON] = ACTIONS(3309), - [anon_sym_COLON_QMARK] = ACTIONS(3309), - [anon_sym_COLON_DASH] = ACTIONS(3309), - [anon_sym_PERCENT] = ACTIONS(3309), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1024] = { - [sym__simple_heredoc_body] = ACTIONS(1838), - [sym__heredoc_body_beginning] = ACTIONS(1838), - [sym_file_descriptor] = ACTIONS(1838), - [sym__concat] = ACTIONS(1838), - [sym_variable_name] = ACTIONS(1838), - [ts_builtin_sym_end] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1840), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_SEMI_SEMI] = ACTIONS(1838), - [anon_sym_PIPE_AMP] = ACTIONS(1838), - [anon_sym_AMP_AMP] = ACTIONS(1838), - [anon_sym_PIPE_PIPE] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_GT_GT] = ACTIONS(1838), - [anon_sym_AMP_GT] = ACTIONS(1840), - [anon_sym_AMP_GT_GT] = ACTIONS(1838), - [anon_sym_LT_AMP] = ACTIONS(1838), - [anon_sym_GT_AMP] = ACTIONS(1838), - [anon_sym_LT_LT] = ACTIONS(1840), - [anon_sym_LT_LT_DASH] = ACTIONS(1838), - [anon_sym_LT_LT_LT] = ACTIONS(1838), - [sym__special_characters] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1840), - [sym_raw_string] = ACTIONS(1838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_LT_LPAREN] = ACTIONS(1838), - [anon_sym_GT_LPAREN] = ACTIONS(1838), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1840), - [anon_sym_LF] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1840), - }, - [1025] = { - [sym_concatenation] = STATE(1491), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1491), - [sym_regex] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_EQ] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3319), - [anon_sym_COLON_QMARK] = ACTIONS(3319), - [anon_sym_COLON_DASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1026] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1027] = { - [sym__simple_heredoc_body] = ACTIONS(1886), - [sym__heredoc_body_beginning] = ACTIONS(1886), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1886), - [ts_builtin_sym_end] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_SEMI_SEMI] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1886), - [anon_sym_LT_LT_LT] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1888), - }, - [1028] = { - [sym_concatenation] = STATE(1488), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1488), - [sym_regex] = ACTIONS(3323), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_EQ] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3311), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3309), - [anon_sym_COLON_QMARK] = ACTIONS(3309), - [anon_sym_COLON_DASH] = ACTIONS(3309), - [anon_sym_PERCENT] = ACTIONS(3309), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1029] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1030] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3325), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1031] = { - [sym__simple_heredoc_body] = ACTIONS(1894), - [sym__heredoc_body_beginning] = ACTIONS(1894), - [sym_file_descriptor] = ACTIONS(1894), - [sym__concat] = ACTIONS(1894), - [sym_variable_name] = ACTIONS(1894), - [ts_builtin_sym_end] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1894), - [anon_sym_SEMI_SEMI] = ACTIONS(1894), - [anon_sym_PIPE_AMP] = ACTIONS(1894), - [anon_sym_AMP_AMP] = ACTIONS(1894), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_GT_GT] = ACTIONS(1894), - [anon_sym_AMP_GT] = ACTIONS(1896), - [anon_sym_AMP_GT_GT] = ACTIONS(1894), - [anon_sym_LT_AMP] = ACTIONS(1894), - [anon_sym_GT_AMP] = ACTIONS(1894), - [anon_sym_LT_LT] = ACTIONS(1896), - [anon_sym_LT_LT_DASH] = ACTIONS(1894), - [anon_sym_LT_LT_LT] = ACTIONS(1894), - [sym__special_characters] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1896), - [sym_raw_string] = ACTIONS(1894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), - [anon_sym_BQUOTE] = ACTIONS(1894), - [anon_sym_LT_LPAREN] = ACTIONS(1894), - [anon_sym_GT_LPAREN] = ACTIONS(1894), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1896), - [anon_sym_LF] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1896), - }, - [1032] = { - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_RPAREN] = ACTIONS(3325), - [anon_sym_SEMI_SEMI] = ACTIONS(3329), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3329), - [anon_sym_AMP] = ACTIONS(3329), - }, - [1033] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1496), - [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(3331), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3325), - [anon_sym_SEMI_SEMI] = ACTIONS(3333), - [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(3333), - [anon_sym_AMP] = ACTIONS(3331), - }, - [1034] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1496), - [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(3331), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3325), - [anon_sym_SEMI_SEMI] = ACTIONS(3333), - [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(3333), - [anon_sym_AMP] = ACTIONS(3331), - }, - [1035] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(3325), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1036] = { - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym_SEMI_SEMI] = ACTIONS(3337), - [anon_sym_BQUOTE] = ACTIONS(3325), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3337), - [anon_sym_AMP] = ACTIONS(3337), - }, - [1037] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1499), - [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(3339), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(3341), - [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(3325), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3339), - }, - [1038] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1499), - [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(3339), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(3341), - [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(3325), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3339), - }, - [1039] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1040] = { - [sym__simple_heredoc_body] = ACTIONS(1928), - [sym__heredoc_body_beginning] = ACTIONS(1928), - [sym_file_descriptor] = ACTIONS(1928), - [sym__concat] = ACTIONS(1928), - [sym_variable_name] = ACTIONS(1928), - [ts_builtin_sym_end] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1928), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_GT_GT] = ACTIONS(1928), - [anon_sym_AMP_GT] = ACTIONS(1930), - [anon_sym_AMP_GT_GT] = ACTIONS(1928), - [anon_sym_LT_AMP] = ACTIONS(1928), - [anon_sym_GT_AMP] = ACTIONS(1928), - [anon_sym_LT_LT] = ACTIONS(1930), - [anon_sym_LT_LT_DASH] = ACTIONS(1928), - [anon_sym_LT_LT_LT] = ACTIONS(1928), - [sym__special_characters] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1928), - [anon_sym_DOLLAR] = ACTIONS(1930), - [sym_raw_string] = ACTIONS(1928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), - [anon_sym_BQUOTE] = ACTIONS(1928), - [anon_sym_LT_LPAREN] = ACTIONS(1928), - [anon_sym_GT_LPAREN] = ACTIONS(1928), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1930), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), - }, - [1041] = { - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_RPAREN] = ACTIONS(3343), - [anon_sym_SEMI_SEMI] = ACTIONS(3347), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3347), - [anon_sym_AMP] = ACTIONS(3347), - }, - [1042] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1503), - [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(3349), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3343), - [anon_sym_SEMI_SEMI] = ACTIONS(3351), - [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(3351), - [anon_sym_AMP] = ACTIONS(3349), - }, - [1043] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1503), - [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(3349), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3343), - [anon_sym_SEMI_SEMI] = ACTIONS(3351), - [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(3351), - [anon_sym_AMP] = ACTIONS(3349), - }, - [1044] = { - [sym_do_group] = STATE(1505), - [sym_compound_statement] = STATE(1505), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_do] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(25), - [sym_comment] = ACTIONS(57), - }, - [1045] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(3355), - [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), - }, - [1046] = { - [sym__expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_unary_expression] = STATE(1507), - [sym_postfix_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_concatenation] = STATE(1507), - [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(3355), - [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), - }, - [1047] = { - [anon_sym_SEMI] = ACTIONS(2312), - [anon_sym_SEMI_SEMI] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_EQ_TILDE] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2310), - [anon_sym_EQ] = ACTIONS(2312), - [anon_sym_PLUS_EQ] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_GT] = ACTIONS(2312), - [anon_sym_BANG_EQ] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_DASH_EQ] = ACTIONS(2310), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2310), - [anon_sym_LF] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2312), - }, - [1048] = { - [sym__concat] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_EQ_TILDE] = ACTIONS(1730), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_PLUS_EQ] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_DASH_EQ] = ACTIONS(1730), - [anon_sym_LT_EQ] = ACTIONS(1730), - [anon_sym_GT_EQ] = ACTIONS(1730), - [anon_sym_PLUS_PLUS] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1730), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [1049] = { - [aux_sym_concatenation_repeat1] = STATE(1049), - [sym__concat] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_EQ_TILDE] = ACTIONS(1730), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_PLUS_EQ] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_DASH_EQ] = ACTIONS(1730), - [anon_sym_LT_EQ] = ACTIONS(1730), - [anon_sym_GT_EQ] = ACTIONS(1730), - [anon_sym_PLUS_PLUS] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1730), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [1050] = { - [sym__concat] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_SEMI_SEMI] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_EQ_TILDE] = ACTIONS(1737), - [anon_sym_EQ_EQ] = ACTIONS(1737), - [anon_sym_EQ] = ACTIONS(1739), - [anon_sym_PLUS_EQ] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_BANG_EQ] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_DASH_EQ] = ACTIONS(1737), - [anon_sym_LT_EQ] = ACTIONS(1737), - [anon_sym_GT_EQ] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1737), - [anon_sym_LF] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1739), - }, - [1051] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(3360), - [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), - }, - [1052] = { - [sym_concatenation] = STATE(1512), - [sym_string] = STATE(1511), - [sym_simple_expansion] = STATE(1511), - [sym_string_expansion] = STATE(1511), - [sym_expansion] = STATE(1511), - [sym_command_substitution] = STATE(1511), - [sym_process_substitution] = STATE(1511), - [anon_sym_RBRACE] = ACTIONS(3362), - [sym__special_characters] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(3366), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3366), - }, - [1053] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(3368), - [sym_comment] = ACTIONS(57), - }, - [1054] = { - [sym_concatenation] = STATE(1516), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1516), - [anon_sym_RBRACE] = ACTIONS(3370), - [anon_sym_EQ] = ACTIONS(3372), - [anon_sym_DASH] = ACTIONS(3372), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3374), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(3376), - [anon_sym_COLON] = ACTIONS(3372), - [anon_sym_COLON_QMARK] = ACTIONS(3372), - [anon_sym_COLON_DASH] = ACTIONS(3372), - [anon_sym_PERCENT] = ACTIONS(3372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1055] = { - [sym_concatenation] = STATE(1518), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1518), - [anon_sym_RBRACE] = ACTIONS(3362), - [anon_sym_EQ] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(3382), - [anon_sym_COLON] = ACTIONS(3378), - [anon_sym_COLON_QMARK] = ACTIONS(3378), - [anon_sym_COLON_DASH] = ACTIONS(3378), - [anon_sym_PERCENT] = ACTIONS(3378), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1056] = { - [sym__concat] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_SEMI_SEMI] = ACTIONS(1838), - [anon_sym_AMP_AMP] = ACTIONS(1838), - [anon_sym_PIPE_PIPE] = ACTIONS(1838), - [anon_sym_EQ_TILDE] = ACTIONS(1838), - [anon_sym_EQ_EQ] = ACTIONS(1838), - [anon_sym_EQ] = ACTIONS(1840), - [anon_sym_PLUS_EQ] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_BANG_EQ] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1840), - [anon_sym_DASH_EQ] = ACTIONS(1838), - [anon_sym_LT_EQ] = ACTIONS(1838), - [anon_sym_GT_EQ] = ACTIONS(1838), - [anon_sym_PLUS_PLUS] = ACTIONS(1838), - [anon_sym_DASH_DASH] = ACTIONS(1838), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1838), - [anon_sym_LF] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1840), - }, - [1057] = { - [sym_concatenation] = STATE(1521), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1521), - [sym_regex] = ACTIONS(3384), - [anon_sym_RBRACE] = ACTIONS(3386), - [anon_sym_EQ] = ACTIONS(3388), - [anon_sym_DASH] = ACTIONS(3388), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3390), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3388), - [anon_sym_COLON_QMARK] = ACTIONS(3388), - [anon_sym_COLON_DASH] = ACTIONS(3388), - [anon_sym_PERCENT] = ACTIONS(3388), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1058] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3386), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1059] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_EQ_TILDE] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ] = ACTIONS(1888), - [anon_sym_PLUS_EQ] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_BANG_EQ] = ACTIONS(1886), - [anon_sym_PLUS] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1888), - [anon_sym_DASH_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1886), - [anon_sym_GT_EQ] = ACTIONS(1886), - [anon_sym_PLUS_PLUS] = ACTIONS(1886), - [anon_sym_DASH_DASH] = ACTIONS(1886), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1886), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1888), - }, - [1060] = { - [sym_concatenation] = STATE(1518), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1518), - [sym_regex] = ACTIONS(3392), - [anon_sym_RBRACE] = ACTIONS(3362), - [anon_sym_EQ] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3378), - [anon_sym_COLON_QMARK] = ACTIONS(3378), - [anon_sym_COLON_DASH] = ACTIONS(3378), - [anon_sym_PERCENT] = ACTIONS(3378), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1061] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3362), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1062] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3394), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1063] = { - [sym__concat] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_SEMI_SEMI] = ACTIONS(1894), - [anon_sym_AMP_AMP] = ACTIONS(1894), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_EQ_TILDE] = ACTIONS(1894), - [anon_sym_EQ_EQ] = ACTIONS(1894), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_PLUS_EQ] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_BANG_EQ] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_DASH_EQ] = ACTIONS(1894), - [anon_sym_LT_EQ] = ACTIONS(1894), - [anon_sym_GT_EQ] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1894), - [anon_sym_LF] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1896), - }, - [1064] = { - [anon_sym_SEMI] = ACTIONS(3396), - [anon_sym_RPAREN] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3398), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3398), - }, - [1065] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1526), - [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(3400), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [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(3402), - [anon_sym_AMP] = ACTIONS(3400), - }, - [1066] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1526), - [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(3400), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [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(3402), - [anon_sym_AMP] = ACTIONS(3400), - }, - [1067] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(3394), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1068] = { - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3406), - [anon_sym_BQUOTE] = ACTIONS(3394), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3406), - [anon_sym_AMP] = ACTIONS(3406), - }, - [1069] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1529), - [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(3408), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(3410), - [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(3394), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3410), - [anon_sym_AMP] = ACTIONS(3408), - }, - [1070] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1529), - [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(3408), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(3410), - [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(3394), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(3410), - [anon_sym_AMP] = ACTIONS(3408), - }, - [1071] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1072] = { - [sym__concat] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_EQ_TILDE] = ACTIONS(1928), - [anon_sym_EQ_EQ] = ACTIONS(1928), - [anon_sym_EQ] = ACTIONS(1930), - [anon_sym_PLUS_EQ] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1928), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_DASH_EQ] = ACTIONS(1928), - [anon_sym_LT_EQ] = ACTIONS(1928), - [anon_sym_GT_EQ] = ACTIONS(1928), - [anon_sym_PLUS_PLUS] = ACTIONS(1928), - [anon_sym_DASH_DASH] = ACTIONS(1928), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1928), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), - }, - [1073] = { - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3416), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3416), - }, - [1074] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1533), - [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(3418), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3420), - [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(3420), - [anon_sym_AMP] = ACTIONS(3418), - }, - [1075] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1533), - [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(3418), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3420), - [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(3420), - [anon_sym_AMP] = ACTIONS(3418), - }, - [1076] = { - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(1171), - [anon_sym_PIPE_PIPE] = ACTIONS(1171), - [anon_sym_EQ_TILDE] = ACTIONS(1173), - [anon_sym_EQ_EQ] = ACTIONS(1173), - [anon_sym_EQ] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1171), - [anon_sym_LT] = ACTIONS(1175), - [anon_sym_GT] = ACTIONS(1175), - [anon_sym_BANG_EQ] = ACTIONS(1171), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_DASH_EQ] = ACTIONS(1171), - [anon_sym_LT_EQ] = ACTIONS(1171), - [anon_sym_GT_EQ] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1177), - [anon_sym_DASH_DASH] = ACTIONS(1177), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1171), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3422), - }, - [1077] = { - [anon_sym_SEMI] = ACTIONS(2383), - [anon_sym_SEMI_SEMI] = ACTIONS(2381), - [anon_sym_AMP_AMP] = ACTIONS(2381), - [anon_sym_PIPE_PIPE] = ACTIONS(2381), - [anon_sym_EQ_TILDE] = ACTIONS(2381), - [anon_sym_EQ_EQ] = ACTIONS(2381), - [anon_sym_EQ] = ACTIONS(2383), - [anon_sym_PLUS_EQ] = ACTIONS(2381), - [anon_sym_LT] = ACTIONS(2383), - [anon_sym_GT] = ACTIONS(2383), - [anon_sym_BANG_EQ] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_DASH_EQ] = ACTIONS(2381), - [anon_sym_LT_EQ] = ACTIONS(2381), - [anon_sym_GT_EQ] = ACTIONS(2381), - [anon_sym_PLUS_PLUS] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(2381), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2381), - [anon_sym_LF] = ACTIONS(2381), - [anon_sym_AMP] = ACTIONS(2383), - }, - [1078] = { - [anon_sym_SEMI] = ACTIONS(2383), - [anon_sym_SEMI_SEMI] = ACTIONS(2381), - [anon_sym_AMP_AMP] = ACTIONS(2381), - [anon_sym_PIPE_PIPE] = ACTIONS(2381), - [anon_sym_EQ_TILDE] = ACTIONS(2381), - [anon_sym_EQ_EQ] = ACTIONS(2381), - [anon_sym_EQ] = ACTIONS(2383), - [anon_sym_PLUS_EQ] = ACTIONS(2381), - [anon_sym_LT] = ACTIONS(2383), - [anon_sym_GT] = ACTIONS(2383), - [anon_sym_BANG_EQ] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_DASH_EQ] = ACTIONS(2381), - [anon_sym_LT_EQ] = ACTIONS(2381), - [anon_sym_GT_EQ] = ACTIONS(2381), - [anon_sym_PLUS_PLUS] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(2381), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2381), - [anon_sym_LF] = ACTIONS(2381), - [anon_sym_AMP] = ACTIONS(2383), - }, - [1079] = { - [sym_string] = STATE(1535), - [sym_simple_expansion] = STATE(1535), - [sym_string_expansion] = STATE(1535), - [sym_expansion] = STATE(1535), - [sym_command_substitution] = STATE(1535), - [sym_process_substitution] = STATE(1535), - [sym__special_characters] = ACTIONS(3426), - [anon_sym_DQUOTE] = ACTIONS(1181), - [anon_sym_DOLLAR] = ACTIONS(1183), - [sym_raw_string] = ACTIONS(3426), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1187), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1189), - [anon_sym_BQUOTE] = ACTIONS(1191), - [anon_sym_LT_LPAREN] = ACTIONS(1193), - [anon_sym_GT_LPAREN] = ACTIONS(1193), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3426), - }, - [1080] = { - [aux_sym_concatenation_repeat1] = STATE(1536), - [sym__concat] = ACTIONS(2226), - [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), - }, - [1081] = { - [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), - }, - [1082] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(3428), - [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), - }, - [1083] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(455), - [anon_sym_DQUOTE] = ACTIONS(3428), - [anon_sym_DOLLAR] = ACTIONS(3430), - [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), - }, - [1084] = { - [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), - }, - [1085] = { - [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), - }, - [1086] = { - [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), - }, - [1087] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(3432), - [sym_comment] = ACTIONS(57), - }, - [1088] = { - [sym_subscript] = STATE(1542), - [sym_variable_name] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_DOLLAR] = ACTIONS(3436), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(3440), - [anon_sym_AT] = ACTIONS(3440), - [anon_sym_QMARK] = ACTIONS(3440), - [anon_sym_0] = ACTIONS(3438), - [anon_sym__] = ACTIONS(3438), - }, - [1089] = { - [sym_concatenation] = STATE(1545), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1545), - [anon_sym_RBRACE] = ACTIONS(3442), - [anon_sym_EQ] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3446), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(3448), - [anon_sym_COLON] = ACTIONS(3444), - [anon_sym_COLON_QMARK] = ACTIONS(3444), - [anon_sym_COLON_DASH] = ACTIONS(3444), - [anon_sym_PERCENT] = ACTIONS(3444), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1090] = { - [sym_concatenation] = STATE(1548), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1548), - [anon_sym_RBRACE] = ACTIONS(3450), - [anon_sym_EQ] = ACTIONS(3452), - [anon_sym_DASH] = ACTIONS(3452), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(3456), - [anon_sym_COLON] = ACTIONS(3452), - [anon_sym_COLON_QMARK] = ACTIONS(3452), - [anon_sym_COLON_DASH] = ACTIONS(3452), - [anon_sym_PERCENT] = ACTIONS(3452), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1091] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1551), - [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(3458), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3460), - [anon_sym_SEMI_SEMI] = ACTIONS(3462), - [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(3462), - [anon_sym_AMP] = ACTIONS(3458), - }, - [1092] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1551), - [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(3458), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3460), - [anon_sym_SEMI_SEMI] = ACTIONS(3462), - [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(3462), - [anon_sym_AMP] = ACTIONS(3458), - }, - [1093] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1552), - [sym_for_statement] = STATE(1552), - [sym_c_style_for_statement] = STATE(1552), - [sym_while_statement] = STATE(1552), - [sym_if_statement] = STATE(1552), - [sym_case_statement] = STATE(1552), - [sym_function_definition] = STATE(1552), - [sym_compound_statement] = STATE(1552), - [sym_subshell] = STATE(1552), - [sym_pipeline] = STATE(1552), - [sym_list] = STATE(1552), - [sym_negated_command] = STATE(1552), - [sym_test_command] = STATE(1552), - [sym_declaration_command] = STATE(1552), - [sym_unset_command] = STATE(1552), - [sym_command] = STATE(1552), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(1553), - [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), - }, - [1094] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1555), - [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(3464), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(3466), - [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(3460), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3466), - [anon_sym_AMP] = ACTIONS(3464), - }, - [1095] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1555), - [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(3464), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(3466), - [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(3460), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(3466), - [anon_sym_AMP] = ACTIONS(3464), - }, - [1096] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1556), - [sym_for_statement] = STATE(1556), - [sym_c_style_for_statement] = STATE(1556), - [sym_while_statement] = STATE(1556), - [sym_if_statement] = STATE(1556), - [sym_case_statement] = STATE(1556), - [sym_function_definition] = STATE(1556), - [sym_compound_statement] = STATE(1556), - [sym_subshell] = STATE(1556), - [sym_pipeline] = STATE(1556), - [sym_list] = STATE(1556), - [sym_negated_command] = STATE(1556), - [sym_test_command] = STATE(1556), - [sym_declaration_command] = STATE(1556), - [sym_unset_command] = STATE(1556), - [sym_command] = STATE(1556), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(1557), - [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), - }, - [1097] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1560), - [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(3468), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3470), - [anon_sym_SEMI_SEMI] = ACTIONS(3472), - [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(3472), - [anon_sym_AMP] = ACTIONS(3468), - }, - [1098] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1560), - [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(3468), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3470), - [anon_sym_SEMI_SEMI] = ACTIONS(3472), - [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(3472), - [anon_sym_AMP] = ACTIONS(3468), - }, - [1099] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1561), - [sym_for_statement] = STATE(1561), - [sym_c_style_for_statement] = STATE(1561), - [sym_while_statement] = STATE(1561), - [sym_if_statement] = STATE(1561), - [sym_case_statement] = STATE(1561), - [sym_function_definition] = STATE(1561), - [sym_compound_statement] = STATE(1561), - [sym_subshell] = STATE(1561), - [sym_pipeline] = STATE(1561), - [sym_list] = STATE(1561), - [sym_negated_command] = STATE(1561), - [sym_test_command] = STATE(1561), - [sym_declaration_command] = STATE(1561), - [sym_unset_command] = STATE(1561), - [sym_command] = STATE(1561), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(1562), - [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), - }, - [1100] = { - [sym_do_group] = STATE(1563), - [anon_sym_do] = ACTIONS(493), - [sym_comment] = ACTIONS(57), - }, - [1101] = { - [sym_concatenation] = STATE(1101), - [sym_string] = STATE(598), - [sym_simple_expansion] = STATE(598), - [sym_string_expansion] = STATE(598), - [sym_expansion] = STATE(598), - [sym_command_substitution] = STATE(598), - [sym_process_substitution] = STATE(598), - [aux_sym_for_statement_repeat1] = STATE(1101), - [anon_sym_SEMI] = ACTIONS(3474), - [anon_sym_SEMI_SEMI] = ACTIONS(3262), - [sym__special_characters] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR] = ACTIONS(3482), - [sym_raw_string] = ACTIONS(3485), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3488), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3491), - [anon_sym_BQUOTE] = ACTIONS(3494), - [anon_sym_LT_LPAREN] = ACTIONS(3497), - [anon_sym_GT_LPAREN] = ACTIONS(3497), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3500), - [anon_sym_LF] = ACTIONS(3262), - [anon_sym_AMP] = ACTIONS(3262), - }, - [1102] = { - [anon_sym_RPAREN] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_EQ_TILDE] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2310), - [anon_sym_EQ] = ACTIONS(2312), - [anon_sym_PLUS_EQ] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_GT] = ACTIONS(2312), - [anon_sym_BANG_EQ] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_DASH_EQ] = ACTIONS(2310), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2310), - }, - [1103] = { - [sym__concat] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_EQ_TILDE] = ACTIONS(1730), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_PLUS_EQ] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_DASH_EQ] = ACTIONS(1730), - [anon_sym_LT_EQ] = ACTIONS(1730), - [anon_sym_GT_EQ] = ACTIONS(1730), - [anon_sym_PLUS_PLUS] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1730), - }, - [1104] = { - [aux_sym_concatenation_repeat1] = STATE(1104), - [sym__concat] = ACTIONS(3503), - [anon_sym_RPAREN] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_EQ_TILDE] = ACTIONS(1730), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_PLUS_EQ] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_DASH_EQ] = ACTIONS(1730), - [anon_sym_LT_EQ] = ACTIONS(1730), - [anon_sym_GT_EQ] = ACTIONS(1730), - [anon_sym_PLUS_PLUS] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1730), - }, - [1105] = { - [sym__concat] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_RPAREN] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_EQ_TILDE] = ACTIONS(1737), - [anon_sym_EQ_EQ] = ACTIONS(1737), - [anon_sym_EQ] = ACTIONS(1739), - [anon_sym_PLUS_EQ] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_BANG_EQ] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_DASH_EQ] = ACTIONS(1737), - [anon_sym_LT_EQ] = ACTIONS(1737), - [anon_sym_GT_EQ] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1737), - }, - [1106] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(3506), - [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), - }, - [1107] = { - [sym_concatenation] = STATE(1568), - [sym_string] = STATE(1567), - [sym_simple_expansion] = STATE(1567), - [sym_string_expansion] = STATE(1567), - [sym_expansion] = STATE(1567), - [sym_command_substitution] = STATE(1567), - [sym_process_substitution] = STATE(1567), - [anon_sym_RBRACE] = ACTIONS(3508), - [sym__special_characters] = ACTIONS(3510), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(3512), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3512), - }, - [1108] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(3514), - [sym_comment] = ACTIONS(57), - }, - [1109] = { - [sym_concatenation] = STATE(1572), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1572), - [anon_sym_RBRACE] = ACTIONS(3516), - [anon_sym_EQ] = ACTIONS(3518), - [anon_sym_DASH] = ACTIONS(3518), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3520), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(3522), - [anon_sym_COLON] = ACTIONS(3518), - [anon_sym_COLON_QMARK] = ACTIONS(3518), - [anon_sym_COLON_DASH] = ACTIONS(3518), - [anon_sym_PERCENT] = ACTIONS(3518), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1110] = { - [sym_concatenation] = STATE(1574), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1574), - [anon_sym_RBRACE] = ACTIONS(3508), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3526), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(3528), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_COLON_QMARK] = ACTIONS(3524), - [anon_sym_COLON_DASH] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1111] = { - [sym__concat] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1840), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_AMP_AMP] = ACTIONS(1838), - [anon_sym_PIPE_PIPE] = ACTIONS(1838), - [anon_sym_EQ_TILDE] = ACTIONS(1838), - [anon_sym_EQ_EQ] = ACTIONS(1838), - [anon_sym_EQ] = ACTIONS(1840), - [anon_sym_PLUS_EQ] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_BANG_EQ] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1840), - [anon_sym_DASH_EQ] = ACTIONS(1838), - [anon_sym_LT_EQ] = ACTIONS(1838), - [anon_sym_GT_EQ] = ACTIONS(1838), - [anon_sym_PLUS_PLUS] = ACTIONS(1838), - [anon_sym_DASH_DASH] = ACTIONS(1838), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1838), - }, - [1112] = { - [sym_concatenation] = STATE(1577), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1577), - [sym_regex] = ACTIONS(3530), - [anon_sym_RBRACE] = ACTIONS(3532), - [anon_sym_EQ] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3536), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3534), - [anon_sym_COLON_QMARK] = ACTIONS(3534), - [anon_sym_COLON_DASH] = ACTIONS(3534), - [anon_sym_PERCENT] = ACTIONS(3534), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1113] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3532), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1114] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_EQ_TILDE] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ] = ACTIONS(1888), - [anon_sym_PLUS_EQ] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_BANG_EQ] = ACTIONS(1886), - [anon_sym_PLUS] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1888), - [anon_sym_DASH_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1886), - [anon_sym_GT_EQ] = ACTIONS(1886), - [anon_sym_PLUS_PLUS] = ACTIONS(1886), - [anon_sym_DASH_DASH] = ACTIONS(1886), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1886), - }, - [1115] = { - [sym_concatenation] = STATE(1574), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1574), - [sym_regex] = ACTIONS(3538), - [anon_sym_RBRACE] = ACTIONS(3508), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3526), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_COLON_QMARK] = ACTIONS(3524), - [anon_sym_COLON_DASH] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1116] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3508), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1117] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3540), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1118] = { - [sym__concat] = ACTIONS(1894), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1894), - [anon_sym_AMP_AMP] = ACTIONS(1894), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_EQ_TILDE] = ACTIONS(1894), - [anon_sym_EQ_EQ] = ACTIONS(1894), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_PLUS_EQ] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_BANG_EQ] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_DASH_EQ] = ACTIONS(1894), - [anon_sym_LT_EQ] = ACTIONS(1894), - [anon_sym_GT_EQ] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1894), - }, - [1119] = { - [anon_sym_SEMI] = ACTIONS(3542), - [anon_sym_RPAREN] = ACTIONS(3540), - [anon_sym_SEMI_SEMI] = ACTIONS(3544), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3544), - [anon_sym_AMP] = ACTIONS(3544), - }, - [1120] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1582), - [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(3546), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3540), - [anon_sym_SEMI_SEMI] = ACTIONS(3548), - [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(3548), - [anon_sym_AMP] = ACTIONS(3546), - }, - [1121] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1582), - [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(3546), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3540), - [anon_sym_SEMI_SEMI] = ACTIONS(3548), - [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(3548), - [anon_sym_AMP] = ACTIONS(3546), - }, - [1122] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(3540), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1123] = { - [anon_sym_SEMI] = ACTIONS(3550), - [anon_sym_SEMI_SEMI] = ACTIONS(3552), - [anon_sym_BQUOTE] = ACTIONS(3540), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3552), - [anon_sym_AMP] = ACTIONS(3552), - }, - [1124] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1585), - [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(3554), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(3556), - [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(3540), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3556), - [anon_sym_AMP] = ACTIONS(3554), - }, - [1125] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1585), - [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(3554), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(3556), - [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(3540), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(3556), - [anon_sym_AMP] = ACTIONS(3554), - }, - [1126] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3558), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1127] = { - [sym__concat] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_EQ_TILDE] = ACTIONS(1928), - [anon_sym_EQ_EQ] = ACTIONS(1928), - [anon_sym_EQ] = ACTIONS(1930), - [anon_sym_PLUS_EQ] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1928), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_DASH_EQ] = ACTIONS(1928), - [anon_sym_LT_EQ] = ACTIONS(1928), - [anon_sym_GT_EQ] = ACTIONS(1928), - [anon_sym_PLUS_PLUS] = ACTIONS(1928), - [anon_sym_DASH_DASH] = ACTIONS(1928), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(1928), - }, - [1128] = { - [anon_sym_SEMI] = ACTIONS(3560), - [anon_sym_RPAREN] = ACTIONS(3558), - [anon_sym_SEMI_SEMI] = ACTIONS(3562), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3562), - [anon_sym_AMP] = ACTIONS(3562), - }, - [1129] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1589), - [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(3564), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3558), - [anon_sym_SEMI_SEMI] = ACTIONS(3566), - [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(3566), - [anon_sym_AMP] = ACTIONS(3564), - }, - [1130] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1589), - [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(3564), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3558), - [anon_sym_SEMI_SEMI] = ACTIONS(3566), - [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(3566), - [anon_sym_AMP] = ACTIONS(3564), - }, - [1131] = { - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_AMP_AMP] = ACTIONS(2381), - [anon_sym_PIPE_PIPE] = ACTIONS(2381), - [anon_sym_EQ_TILDE] = ACTIONS(2381), - [anon_sym_EQ_EQ] = ACTIONS(2381), - [anon_sym_EQ] = ACTIONS(2383), - [anon_sym_PLUS_EQ] = ACTIONS(2381), - [anon_sym_LT] = ACTIONS(2383), - [anon_sym_GT] = ACTIONS(2383), - [anon_sym_BANG_EQ] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_DASH_EQ] = ACTIONS(2381), - [anon_sym_LT_EQ] = ACTIONS(2381), - [anon_sym_GT_EQ] = ACTIONS(2381), - [anon_sym_PLUS_PLUS] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(2381), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2381), - }, - [1132] = { - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_AMP_AMP] = ACTIONS(2381), - [anon_sym_PIPE_PIPE] = ACTIONS(2381), - [anon_sym_EQ_TILDE] = ACTIONS(2381), - [anon_sym_EQ_EQ] = ACTIONS(2381), - [anon_sym_EQ] = ACTIONS(2383), - [anon_sym_PLUS_EQ] = ACTIONS(2381), - [anon_sym_LT] = ACTIONS(2383), - [anon_sym_GT] = ACTIONS(2383), - [anon_sym_BANG_EQ] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_DASH_EQ] = ACTIONS(2381), - [anon_sym_LT_EQ] = ACTIONS(2381), - [anon_sym_GT_EQ] = ACTIONS(2381), - [anon_sym_PLUS_PLUS] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(2381), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2381), - }, - [1133] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2934), - [anon_sym_EQ_TILDE] = ACTIONS(2934), - [anon_sym_EQ_EQ] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2936), - [anon_sym_PLUS_EQ] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_BANG_EQ] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2936), - [anon_sym_DASH] = ACTIONS(2936), - [anon_sym_DASH_EQ] = ACTIONS(2934), - [anon_sym_LT_EQ] = ACTIONS(2934), - [anon_sym_GT_EQ] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2934), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2934), - }, - [1134] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2948), - [anon_sym_AMP_AMP] = ACTIONS(2948), - [anon_sym_PIPE_PIPE] = ACTIONS(2948), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2948), - [anon_sym_EQ_TILDE] = ACTIONS(2948), - [anon_sym_EQ_EQ] = ACTIONS(2948), - [anon_sym_EQ] = ACTIONS(2950), - [anon_sym_PLUS_EQ] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_DASH_EQ] = ACTIONS(2948), - [anon_sym_LT_EQ] = ACTIONS(2948), - [anon_sym_GT_EQ] = ACTIONS(2948), - [anon_sym_PLUS_PLUS] = ACTIONS(2948), - [anon_sym_DASH_DASH] = ACTIONS(2948), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2948), - }, - [1135] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(3568), - [sym_comment] = ACTIONS(57), - }, - [1136] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(3570), - [sym_comment] = ACTIONS(57), - }, - [1137] = { - [anon_sym_RBRACE] = ACTIONS(3570), - [sym_comment] = ACTIONS(57), - }, - [1138] = { - [sym_concatenation] = STATE(1594), - [sym_string] = STATE(1593), - [sym_simple_expansion] = STATE(1593), - [sym_string_expansion] = STATE(1593), - [sym_expansion] = STATE(1593), - [sym_command_substitution] = STATE(1593), - [sym_process_substitution] = STATE(1593), - [anon_sym_RBRACE] = ACTIONS(3570), - [sym__special_characters] = ACTIONS(3572), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(3574), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3574), - }, - [1139] = { - [sym__concat] = ACTIONS(2984), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2984), - [anon_sym_EQ_TILDE] = ACTIONS(2984), - [anon_sym_EQ_EQ] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2986), - [anon_sym_PLUS_EQ] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_GT] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_DASH_EQ] = ACTIONS(2984), - [anon_sym_LT_EQ] = ACTIONS(2984), - [anon_sym_GT_EQ] = ACTIONS(2984), - [anon_sym_PLUS_PLUS] = ACTIONS(2984), - [anon_sym_DASH_DASH] = ACTIONS(2984), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2984), - }, - [1140] = { - [sym_concatenation] = STATE(1597), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1597), - [sym_regex] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3578), - [anon_sym_EQ] = ACTIONS(3580), - [anon_sym_DASH] = ACTIONS(3580), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3582), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3580), - [anon_sym_COLON_QMARK] = ACTIONS(3580), - [anon_sym_COLON_DASH] = ACTIONS(3580), - [anon_sym_PERCENT] = ACTIONS(3580), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1141] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3578), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1142] = { - [sym_concatenation] = STATE(1599), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1599), - [sym_regex] = ACTIONS(3584), - [anon_sym_RBRACE] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3586), - [anon_sym_DASH] = ACTIONS(3586), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3588), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3586), - [anon_sym_COLON_QMARK] = ACTIONS(3586), - [anon_sym_COLON_DASH] = ACTIONS(3586), - [anon_sym_PERCENT] = ACTIONS(3586), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1143] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1144] = { - [sym_concatenation] = STATE(1601), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1601), - [anon_sym_RBRACE] = ACTIONS(3590), - [anon_sym_EQ] = ACTIONS(3592), - [anon_sym_DASH] = ACTIONS(3592), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3594), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3592), - [anon_sym_COLON_QMARK] = ACTIONS(3592), - [anon_sym_COLON_DASH] = ACTIONS(3592), - [anon_sym_PERCENT] = ACTIONS(3592), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1145] = { - [sym__concat] = ACTIONS(3040), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3040), - [anon_sym_EQ_TILDE] = ACTIONS(3040), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ] = ACTIONS(3042), - [anon_sym_PLUS_EQ] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_DASH_EQ] = ACTIONS(3040), - [anon_sym_LT_EQ] = ACTIONS(3040), - [anon_sym_GT_EQ] = ACTIONS(3040), - [anon_sym_PLUS_PLUS] = ACTIONS(3040), - [anon_sym_DASH_DASH] = ACTIONS(3040), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3040), - }, - [1146] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3590), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1147] = { - [sym_concatenation] = STATE(1599), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1599), - [anon_sym_RBRACE] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3586), - [anon_sym_DASH] = ACTIONS(3586), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3588), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3586), - [anon_sym_COLON_QMARK] = ACTIONS(3586), - [anon_sym_COLON_DASH] = ACTIONS(3586), - [anon_sym_PERCENT] = ACTIONS(3586), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1148] = { - [sym__concat] = ACTIONS(3095), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3095), - [anon_sym_EQ_TILDE] = ACTIONS(3095), - [anon_sym_EQ_EQ] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_PLUS_EQ] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_BANG_EQ] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_DASH_EQ] = ACTIONS(3095), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3095), - }, - [1149] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1150] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1151] = { - [anon_sym_SEMI] = ACTIONS(3598), - [anon_sym_RPAREN] = ACTIONS(3596), - [anon_sym_SEMI_SEMI] = ACTIONS(3600), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - }, - [1152] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(3596), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1153] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(3596), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1154] = { - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_SEMI_SEMI] = ACTIONS(3604), - [anon_sym_BQUOTE] = ACTIONS(3596), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3604), - [anon_sym_AMP] = ACTIONS(3604), - }, - [1155] = { - [sym__concat] = ACTIONS(3125), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3125), - [anon_sym_EQ_TILDE] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ] = ACTIONS(3127), - [anon_sym_PLUS_EQ] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3125), - }, - [1156] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(3606), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1157] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3606), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1158] = { - [anon_sym_SEMI] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3606), - [anon_sym_SEMI_SEMI] = ACTIONS(3610), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - }, - [1159] = { - [aux_sym_concatenation_repeat1] = STATE(1607), - [sym__simple_heredoc_body] = ACTIONS(779), - [sym__heredoc_body_beginning] = ACTIONS(779), - [sym_file_descriptor] = ACTIONS(779), - [sym__concat] = ACTIONS(1113), - [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), - }, - [1160] = { - [aux_sym_concatenation_repeat1] = STATE(665), - [sym__simple_heredoc_body] = ACTIONS(1111), - [sym__heredoc_body_beginning] = ACTIONS(1111), - [sym_file_descriptor] = ACTIONS(1111), - [sym__concat] = ACTIONS(671), - [sym_variable_name] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(1115), - [anon_sym_SEMI_SEMI] = ACTIONS(1111), - [anon_sym_PIPE_AMP] = ACTIONS(1111), - [anon_sym_AMP_AMP] = ACTIONS(1111), - [anon_sym_PIPE_PIPE] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1115), - [anon_sym_GT] = ACTIONS(1115), - [anon_sym_GT_GT] = ACTIONS(1111), - [anon_sym_AMP_GT] = ACTIONS(1115), - [anon_sym_AMP_GT_GT] = ACTIONS(1111), - [anon_sym_LT_AMP] = ACTIONS(1111), - [anon_sym_GT_AMP] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1115), - [anon_sym_LT_LT_DASH] = ACTIONS(1111), - [anon_sym_LT_LT_LT] = ACTIONS(1111), - [sym__special_characters] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(1115), - [sym_raw_string] = ACTIONS(1111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1111), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1111), - [anon_sym_BQUOTE] = ACTIONS(1111), - [anon_sym_LT_LPAREN] = ACTIONS(1111), - [anon_sym_GT_LPAREN] = ACTIONS(1111), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1115), - [sym_word] = ACTIONS(1115), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_AMP] = ACTIONS(1115), - }, - [1161] = { - [aux_sym_concatenation_repeat1] = STATE(665), - [sym__simple_heredoc_body] = ACTIONS(1089), - [sym__heredoc_body_beginning] = ACTIONS(1089), - [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(671), - [sym_variable_name] = ACTIONS(1089), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_SEMI_SEMI] = ACTIONS(1089), - [anon_sym_PIPE_AMP] = ACTIONS(1089), - [anon_sym_AMP_AMP] = ACTIONS(1089), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1089), - [anon_sym_LT_AMP] = ACTIONS(1089), - [anon_sym_GT_AMP] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_LT_LT_DASH] = ACTIONS(1089), - [anon_sym_LT_LT_LT] = ACTIONS(1089), - [sym__special_characters] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_DOLLAR] = ACTIONS(1091), - [sym_raw_string] = ACTIONS(1089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1089), - [anon_sym_GT_LPAREN] = ACTIONS(1089), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1091), - [sym_word] = ACTIONS(1091), - [anon_sym_LF] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - }, - [1162] = { - [aux_sym_concatenation_repeat1] = STATE(1162), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(2685), - [sym_variable_name] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1732), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [1163] = { - [aux_sym_concatenation_repeat1] = STATE(1163), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1732), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [1164] = { - [sym__simple_heredoc_body] = ACTIONS(3612), - [sym__heredoc_body_beginning] = ACTIONS(3612), - [sym_file_descriptor] = ACTIONS(3612), - [ts_builtin_sym_end] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3614), - [anon_sym_esac] = ACTIONS(3612), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_RPAREN] = ACTIONS(3612), - [anon_sym_SEMI_SEMI] = ACTIONS(3612), - [anon_sym_PIPE_AMP] = ACTIONS(3612), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_PIPE_PIPE] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_GT] = ACTIONS(3614), - [anon_sym_GT_GT] = ACTIONS(3612), - [anon_sym_AMP_GT] = ACTIONS(3614), - [anon_sym_AMP_GT_GT] = ACTIONS(3612), - [anon_sym_LT_AMP] = ACTIONS(3612), - [anon_sym_GT_AMP] = ACTIONS(3612), - [anon_sym_LT_LT] = ACTIONS(3614), - [anon_sym_LT_LT_DASH] = ACTIONS(3612), - [anon_sym_LT_LT_LT] = ACTIONS(3612), - [anon_sym_BQUOTE] = ACTIONS(3612), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3612), - [anon_sym_AMP] = ACTIONS(3614), - }, - [1165] = { - [sym__terminated_statement] = STATE(1165), - [sym_redirected_statement] = STATE(526), - [sym_for_statement] = STATE(526), - [sym_c_style_for_statement] = STATE(526), - [sym_while_statement] = STATE(526), - [sym_if_statement] = STATE(526), - [sym_case_statement] = STATE(526), - [sym_function_definition] = STATE(526), - [sym_compound_statement] = STATE(526), - [sym_subshell] = STATE(526), - [sym_pipeline] = STATE(526), - [sym_list] = STATE(526), - [sym_negated_command] = STATE(526), - [sym_test_command] = STATE(526), - [sym_declaration_command] = STATE(526), - [sym_unset_command] = STATE(526), - [sym_command] = STATE(526), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(527), - [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(977), - [sym_variable_name] = ACTIONS(980), - [anon_sym_for] = ACTIONS(983), - [anon_sym_LPAREN_LPAREN] = ACTIONS(986), - [anon_sym_while] = ACTIONS(989), - [anon_sym_done] = ACTIONS(3616), - [anon_sym_if] = ACTIONS(992), - [anon_sym_case] = ACTIONS(995), - [anon_sym_function] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1013), - [anon_sym_declare] = ACTIONS(1016), - [anon_sym_typeset] = ACTIONS(1016), - [anon_sym_export] = ACTIONS(1016), - [anon_sym_readonly] = ACTIONS(1016), - [anon_sym_local] = ACTIONS(1016), - [anon_sym_unset] = ACTIONS(1019), - [anon_sym_unsetenv] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1022), - [anon_sym_GT] = ACTIONS(1022), - [anon_sym_GT_GT] = ACTIONS(1025), - [anon_sym_AMP_GT] = ACTIONS(1022), - [anon_sym_AMP_GT_GT] = ACTIONS(1025), - [anon_sym_LT_AMP] = ACTIONS(1025), - [anon_sym_GT_AMP] = ACTIONS(1025), - [sym__special_characters] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1034), - [sym_raw_string] = ACTIONS(1037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), - [anon_sym_BQUOTE] = ACTIONS(1046), - [anon_sym_LT_LPAREN] = ACTIONS(1049), - [anon_sym_GT_LPAREN] = ACTIONS(1049), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1052), - }, - [1166] = { - [aux_sym_concatenation_repeat1] = STATE(1168), - [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), - }, - [1167] = { - [aux_sym_concatenation_repeat1] = STATE(1168), - [sym__simple_heredoc_body] = ACTIONS(1075), - [sym__heredoc_body_beginning] = ACTIONS(1075), - [sym_file_descriptor] = ACTIONS(1075), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1077), - [anon_sym_PIPE] = ACTIONS(1077), - [anon_sym_SEMI_SEMI] = ACTIONS(1075), - [anon_sym_PIPE_AMP] = ACTIONS(1075), - [anon_sym_AMP_AMP] = ACTIONS(1075), - [anon_sym_PIPE_PIPE] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1077), - [anon_sym_GT] = ACTIONS(1077), - [anon_sym_GT_GT] = ACTIONS(1075), - [anon_sym_AMP_GT] = ACTIONS(1077), - [anon_sym_AMP_GT_GT] = ACTIONS(1075), - [anon_sym_LT_AMP] = ACTIONS(1075), - [anon_sym_GT_AMP] = ACTIONS(1075), - [anon_sym_LT_LT] = ACTIONS(1077), - [anon_sym_LT_LT_DASH] = ACTIONS(1075), - [anon_sym_LT_LT_LT] = ACTIONS(1075), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1077), - }, - [1168] = { - [aux_sym_concatenation_repeat1] = STATE(1608), - [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), - }, - [1169] = { - [anon_sym_then] = ACTIONS(3618), - [sym_comment] = ACTIONS(57), - }, - [1170] = { - [sym__terminated_statement] = STATE(1610), - [sym_redirected_statement] = STATE(526), - [sym_for_statement] = STATE(526), - [sym_c_style_for_statement] = STATE(526), - [sym_while_statement] = STATE(526), - [sym_if_statement] = STATE(526), - [sym_case_statement] = STATE(526), - [sym_function_definition] = STATE(526), - [sym_compound_statement] = STATE(526), - [sym_subshell] = STATE(526), - [sym_pipeline] = STATE(526), - [sym_list] = STATE(526), - [sym_negated_command] = STATE(526), - [sym_test_command] = STATE(526), - [sym_declaration_command] = STATE(526), - [sym_unset_command] = STATE(526), - [sym_command] = STATE(526), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(527), - [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(1610), - [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(3620), - [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), - }, - [1171] = { - [sym__simple_heredoc_body] = ACTIONS(3622), - [sym__heredoc_body_beginning] = ACTIONS(3622), - [sym_file_descriptor] = ACTIONS(3622), - [ts_builtin_sym_end] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym_esac] = ACTIONS(3622), - [anon_sym_PIPE] = ACTIONS(3624), - [anon_sym_RPAREN] = ACTIONS(3622), - [anon_sym_SEMI_SEMI] = ACTIONS(3622), - [anon_sym_PIPE_AMP] = ACTIONS(3622), - [anon_sym_AMP_AMP] = ACTIONS(3622), - [anon_sym_PIPE_PIPE] = ACTIONS(3622), - [anon_sym_LT] = ACTIONS(3624), - [anon_sym_GT] = ACTIONS(3624), - [anon_sym_GT_GT] = ACTIONS(3622), - [anon_sym_AMP_GT] = ACTIONS(3624), - [anon_sym_AMP_GT_GT] = ACTIONS(3622), - [anon_sym_LT_AMP] = ACTIONS(3622), - [anon_sym_GT_AMP] = ACTIONS(3622), - [anon_sym_LT_LT] = ACTIONS(3624), - [anon_sym_LT_LT_DASH] = ACTIONS(3622), - [anon_sym_LT_LT_LT] = ACTIONS(3622), - [anon_sym_BQUOTE] = ACTIONS(3622), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3622), - [anon_sym_AMP] = ACTIONS(3624), - }, - [1172] = { - [anon_sym_fi] = ACTIONS(3626), - [sym_comment] = ACTIONS(57), - }, - [1173] = { - [sym__terminated_statement] = STATE(1173), - [sym_redirected_statement] = STATE(526), - [sym_for_statement] = STATE(526), - [sym_c_style_for_statement] = STATE(526), - [sym_while_statement] = STATE(526), - [sym_if_statement] = STATE(526), - [sym_case_statement] = STATE(526), - [sym_function_definition] = STATE(526), - [sym_compound_statement] = STATE(526), - [sym_subshell] = STATE(526), - [sym_pipeline] = STATE(526), - [sym_list] = STATE(526), - [sym_negated_command] = STATE(526), - [sym_test_command] = STATE(526), - [sym_declaration_command] = STATE(526), - [sym_unset_command] = STATE(526), - [sym_command] = STATE(526), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(527), - [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(1173), - [aux_sym_command_repeat1] = STATE(63), - [sym_file_descriptor] = ACTIONS(977), - [sym_variable_name] = ACTIONS(980), - [anon_sym_for] = ACTIONS(983), - [anon_sym_LPAREN_LPAREN] = ACTIONS(986), - [anon_sym_while] = ACTIONS(989), - [anon_sym_if] = ACTIONS(992), - [anon_sym_fi] = ACTIONS(3616), - [anon_sym_elif] = ACTIONS(3616), - [anon_sym_else] = ACTIONS(3616), - [anon_sym_case] = ACTIONS(995), - [anon_sym_function] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1013), - [anon_sym_declare] = ACTIONS(1016), - [anon_sym_typeset] = ACTIONS(1016), - [anon_sym_export] = ACTIONS(1016), - [anon_sym_readonly] = ACTIONS(1016), - [anon_sym_local] = ACTIONS(1016), - [anon_sym_unset] = ACTIONS(1019), - [anon_sym_unsetenv] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1022), - [anon_sym_GT] = ACTIONS(1022), - [anon_sym_GT_GT] = ACTIONS(1025), - [anon_sym_AMP_GT] = ACTIONS(1022), - [anon_sym_AMP_GT_GT] = ACTIONS(1025), - [anon_sym_LT_AMP] = ACTIONS(1025), - [anon_sym_GT_AMP] = ACTIONS(1025), - [sym__special_characters] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1034), - [sym_raw_string] = ACTIONS(1037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), - [anon_sym_BQUOTE] = ACTIONS(1046), - [anon_sym_LT_LPAREN] = ACTIONS(1049), - [anon_sym_GT_LPAREN] = ACTIONS(1049), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1052), - }, - [1174] = { - [sym_elif_clause] = STATE(1175), - [sym_else_clause] = STATE(1612), - [aux_sym_if_statement_repeat1] = STATE(1175), - [anon_sym_fi] = ACTIONS(3626), - [anon_sym_elif] = ACTIONS(2460), - [anon_sym_else] = ACTIONS(2462), - [sym_comment] = ACTIONS(57), - }, - [1175] = { - [sym_elif_clause] = STATE(1175), - [aux_sym_if_statement_repeat1] = STATE(1175), - [anon_sym_fi] = ACTIONS(3628), - [anon_sym_elif] = ACTIONS(3630), - [anon_sym_else] = ACTIONS(3628), - [sym_comment] = ACTIONS(57), - }, - [1176] = { - [sym__simple_heredoc_body] = ACTIONS(3633), - [sym__heredoc_body_beginning] = ACTIONS(3633), - [sym_file_descriptor] = ACTIONS(3633), - [ts_builtin_sym_end] = ACTIONS(3633), - [anon_sym_SEMI] = ACTIONS(3635), - [anon_sym_esac] = ACTIONS(3633), - [anon_sym_PIPE] = ACTIONS(3635), - [anon_sym_RPAREN] = ACTIONS(3633), - [anon_sym_SEMI_SEMI] = ACTIONS(3633), - [anon_sym_PIPE_AMP] = ACTIONS(3633), - [anon_sym_AMP_AMP] = ACTIONS(3633), - [anon_sym_PIPE_PIPE] = ACTIONS(3633), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_GT_GT] = ACTIONS(3633), - [anon_sym_AMP_GT] = ACTIONS(3635), - [anon_sym_AMP_GT_GT] = ACTIONS(3633), - [anon_sym_LT_AMP] = ACTIONS(3633), - [anon_sym_GT_AMP] = ACTIONS(3633), - [anon_sym_LT_LT] = ACTIONS(3635), - [anon_sym_LT_LT_DASH] = ACTIONS(3633), - [anon_sym_LT_LT_LT] = ACTIONS(3633), - [anon_sym_BQUOTE] = ACTIONS(3633), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3633), - [anon_sym_AMP] = ACTIONS(3635), - }, - [1177] = { - [aux_sym_case_item_repeat1] = STATE(1615), - [aux_sym_concatenation_repeat1] = STATE(1616), - [sym__concat] = ACTIONS(1195), - [anon_sym_PIPE] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(3639), - [sym_comment] = ACTIONS(57), - }, - [1178] = { - [aux_sym_case_item_repeat1] = STATE(1618), - [aux_sym_concatenation_repeat1] = STATE(1616), - [sym__concat] = ACTIONS(1195), - [anon_sym_PIPE] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(3641), - [sym_comment] = ACTIONS(57), - }, - [1179] = { - [anon_sym_esac] = ACTIONS(3643), - [sym_comment] = ACTIONS(57), - }, - [1180] = { - [aux_sym_case_item_repeat1] = STATE(1618), - [anon_sym_PIPE] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(3641), - [sym_comment] = ACTIONS(57), - }, - [1181] = { - [sym_case_item] = STATE(1621), - [sym_last_case_item] = STATE(1620), - [sym_concatenation] = STATE(1180), - [sym_string] = STATE(1178), - [sym_simple_expansion] = STATE(1178), - [sym_string_expansion] = STATE(1178), - [sym_expansion] = STATE(1178), - [sym_command_substitution] = STATE(1178), - [sym_process_substitution] = STATE(1178), - [aux_sym_case_statement_repeat1] = STATE(1621), - [sym__special_characters] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(415), - [sym_raw_string] = ACTIONS(2468), - [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(2468), - }, - [1182] = { - [sym_case_item] = STATE(1622), - [sym_last_case_item] = STATE(1620), - [sym_concatenation] = STATE(1180), - [sym_string] = STATE(1178), - [sym_simple_expansion] = STATE(1178), - [sym_string_expansion] = STATE(1178), - [sym_expansion] = STATE(1178), - [sym_command_substitution] = STATE(1178), - [sym_process_substitution] = STATE(1178), - [aux_sym_case_statement_repeat1] = STATE(1622), - [anon_sym_esac] = ACTIONS(3645), - [sym__special_characters] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(415), - [sym_raw_string] = ACTIONS(2468), - [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(2470), - }, - [1183] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_in] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_SEMI_SEMI] = ACTIONS(2934), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2934), - }, - [1184] = { - [sym__simple_heredoc_body] = ACTIONS(3647), - [sym__heredoc_body_beginning] = ACTIONS(3647), - [sym_file_descriptor] = ACTIONS(3647), - [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_LT] = ACTIONS(3649), - [anon_sym_GT] = ACTIONS(3649), - [anon_sym_GT_GT] = ACTIONS(3647), - [anon_sym_AMP_GT] = ACTIONS(3649), - [anon_sym_AMP_GT_GT] = ACTIONS(3647), - [anon_sym_LT_AMP] = ACTIONS(3647), - [anon_sym_GT_AMP] = ACTIONS(3647), - [anon_sym_LT_LT] = ACTIONS(3649), - [anon_sym_LT_LT_DASH] = ACTIONS(3647), - [anon_sym_LT_LT_LT] = ACTIONS(3647), - [anon_sym_BQUOTE] = ACTIONS(3647), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3647), - [anon_sym_AMP] = ACTIONS(3649), - }, - [1185] = { - [anon_sym_esac] = ACTIONS(3651), - [sym_comment] = ACTIONS(57), - }, - [1186] = { - [sym_case_item] = STATE(1621), - [sym_last_case_item] = STATE(1624), - [sym_concatenation] = STATE(1180), - [sym_string] = STATE(1178), - [sym_simple_expansion] = STATE(1178), - [sym_string_expansion] = STATE(1178), - [sym_expansion] = STATE(1178), - [sym_command_substitution] = STATE(1178), - [sym_process_substitution] = STATE(1178), - [aux_sym_case_statement_repeat1] = STATE(1621), - [sym__special_characters] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(415), - [sym_raw_string] = ACTIONS(2468), - [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(2468), - }, - [1187] = { - [sym_case_item] = STATE(1625), - [sym_last_case_item] = STATE(1624), - [sym_concatenation] = STATE(1180), - [sym_string] = STATE(1178), - [sym_simple_expansion] = STATE(1178), - [sym_string_expansion] = STATE(1178), - [sym_expansion] = STATE(1178), - [sym_command_substitution] = STATE(1178), - [sym_process_substitution] = STATE(1178), - [aux_sym_case_statement_repeat1] = STATE(1625), - [anon_sym_esac] = ACTIONS(3653), - [sym__special_characters] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(415), - [sym_raw_string] = ACTIONS(2468), - [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(2470), - }, - [1188] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_in] = ACTIONS(2948), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_SEMI_SEMI] = ACTIONS(2948), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2948), - }, - [1189] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(57), - }, - [1190] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(3657), - [sym_comment] = ACTIONS(57), - }, - [1191] = { - [anon_sym_RBRACE] = ACTIONS(3657), - [sym_comment] = ACTIONS(57), - }, - [1192] = { - [sym_concatenation] = STATE(1630), - [sym_string] = STATE(1629), - [sym_simple_expansion] = STATE(1629), - [sym_string_expansion] = STATE(1629), - [sym_expansion] = STATE(1629), - [sym_command_substitution] = STATE(1629), - [sym_process_substitution] = STATE(1629), - [anon_sym_RBRACE] = ACTIONS(3657), - [sym__special_characters] = ACTIONS(3659), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(3661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3661), - }, - [1193] = { - [sym__concat] = ACTIONS(2984), - [anon_sym_in] = ACTIONS(2984), - [anon_sym_SEMI] = ACTIONS(2986), - [anon_sym_SEMI_SEMI] = ACTIONS(2984), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2984), - }, - [1194] = { - [sym_concatenation] = STATE(1633), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1633), - [sym_regex] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_DASH] = ACTIONS(3667), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3669), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3667), - [anon_sym_COLON_QMARK] = ACTIONS(3667), - [anon_sym_COLON_DASH] = ACTIONS(3667), - [anon_sym_PERCENT] = ACTIONS(3667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1195] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1196] = { - [sym_concatenation] = STATE(1635), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1635), - [sym_regex] = ACTIONS(3671), - [anon_sym_RBRACE] = ACTIONS(3657), - [anon_sym_EQ] = ACTIONS(3673), - [anon_sym_DASH] = ACTIONS(3673), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3675), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3673), - [anon_sym_COLON_QMARK] = ACTIONS(3673), - [anon_sym_COLON_DASH] = ACTIONS(3673), - [anon_sym_PERCENT] = ACTIONS(3673), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1197] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3657), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1198] = { - [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), - [anon_sym_RBRACE] = ACTIONS(3677), - [anon_sym_EQ] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3679), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3679), - [anon_sym_COLON_QMARK] = ACTIONS(3679), - [anon_sym_COLON_DASH] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1199] = { - [sym__concat] = ACTIONS(3040), - [anon_sym_in] = ACTIONS(3040), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_SEMI_SEMI] = ACTIONS(3040), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3040), - }, - [1200] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3677), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1201] = { - [sym_concatenation] = STATE(1635), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1635), - [anon_sym_RBRACE] = ACTIONS(3657), - [anon_sym_EQ] = ACTIONS(3673), - [anon_sym_DASH] = ACTIONS(3673), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3675), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3673), - [anon_sym_COLON_QMARK] = ACTIONS(3673), - [anon_sym_COLON_DASH] = ACTIONS(3673), - [anon_sym_PERCENT] = ACTIONS(3673), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1202] = { - [sym__concat] = ACTIONS(3095), - [anon_sym_in] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - }, - [1203] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(3683), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1204] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3683), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1205] = { - [anon_sym_SEMI] = ACTIONS(3685), - [anon_sym_RPAREN] = ACTIONS(3683), - [anon_sym_SEMI_SEMI] = ACTIONS(3687), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3687), - [anon_sym_AMP] = ACTIONS(3687), - }, - [1206] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(3683), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1207] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(3683), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1208] = { - [anon_sym_SEMI] = ACTIONS(3689), - [anon_sym_SEMI_SEMI] = ACTIONS(3691), - [anon_sym_BQUOTE] = ACTIONS(3683), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3691), - [anon_sym_AMP] = ACTIONS(3691), - }, - [1209] = { - [sym__concat] = ACTIONS(3125), - [anon_sym_in] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_SEMI_SEMI] = ACTIONS(3125), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3125), - }, - [1210] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(3693), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1211] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3693), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1212] = { - [anon_sym_SEMI] = ACTIONS(3695), - [anon_sym_RPAREN] = ACTIONS(3693), - [anon_sym_SEMI_SEMI] = ACTIONS(3697), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3697), - [anon_sym_AMP] = ACTIONS(3697), - }, - [1213] = { - [sym__simple_heredoc_body] = ACTIONS(3699), - [sym__heredoc_body_beginning] = ACTIONS(3699), - [sym_file_descriptor] = ACTIONS(3699), - [ts_builtin_sym_end] = ACTIONS(3699), - [anon_sym_SEMI] = ACTIONS(3701), - [anon_sym_esac] = ACTIONS(3699), - [anon_sym_PIPE] = ACTIONS(3701), - [anon_sym_RPAREN] = ACTIONS(3699), - [anon_sym_SEMI_SEMI] = ACTIONS(3699), - [anon_sym_PIPE_AMP] = ACTIONS(3699), - [anon_sym_AMP_AMP] = ACTIONS(3699), - [anon_sym_PIPE_PIPE] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3701), - [anon_sym_GT] = ACTIONS(3701), - [anon_sym_GT_GT] = ACTIONS(3699), - [anon_sym_AMP_GT] = ACTIONS(3701), - [anon_sym_AMP_GT_GT] = ACTIONS(3699), - [anon_sym_LT_AMP] = ACTIONS(3699), - [anon_sym_GT_AMP] = ACTIONS(3699), - [anon_sym_LT_LT] = ACTIONS(3701), - [anon_sym_LT_LT_DASH] = ACTIONS(3699), - [anon_sym_LT_LT_LT] = ACTIONS(3699), - [anon_sym_BQUOTE] = ACTIONS(3699), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3699), - [anon_sym_AMP] = ACTIONS(3701), - }, - [1214] = { - [aux_sym_concatenation_repeat1] = STATE(1643), - [sym__simple_heredoc_body] = ACTIONS(779), - [sym__heredoc_body_beginning] = ACTIONS(779), - [sym_file_descriptor] = ACTIONS(779), - [sym__concat] = ACTIONS(1113), - [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), - }, - [1215] = { - [aux_sym_concatenation_repeat1] = STATE(729), - [sym__simple_heredoc_body] = ACTIONS(1111), - [sym__heredoc_body_beginning] = ACTIONS(1111), - [sym_file_descriptor] = ACTIONS(1111), - [sym__concat] = ACTIONS(671), - [sym_variable_name] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(1111), - [anon_sym_SEMI_SEMI] = ACTIONS(1111), - [anon_sym_PIPE_AMP] = ACTIONS(1111), - [anon_sym_AMP_AMP] = ACTIONS(1111), - [anon_sym_PIPE_PIPE] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1115), - [anon_sym_GT] = ACTIONS(1115), - [anon_sym_GT_GT] = ACTIONS(1111), - [anon_sym_AMP_GT] = ACTIONS(1115), - [anon_sym_AMP_GT_GT] = ACTIONS(1111), - [anon_sym_LT_AMP] = ACTIONS(1111), - [anon_sym_GT_AMP] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1115), - [anon_sym_LT_LT_DASH] = ACTIONS(1111), - [anon_sym_LT_LT_LT] = ACTIONS(1111), - [sym__special_characters] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(1115), - [sym_raw_string] = ACTIONS(1111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1111), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1111), - [anon_sym_BQUOTE] = ACTIONS(1111), - [anon_sym_LT_LPAREN] = ACTIONS(1111), - [anon_sym_GT_LPAREN] = ACTIONS(1111), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1115), - [sym_word] = ACTIONS(1115), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_AMP] = ACTIONS(1115), - }, - [1216] = { - [aux_sym_concatenation_repeat1] = STATE(729), - [sym__simple_heredoc_body] = ACTIONS(1089), - [sym__heredoc_body_beginning] = ACTIONS(1089), - [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(671), - [sym_variable_name] = ACTIONS(1089), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_RPAREN] = ACTIONS(1089), - [anon_sym_SEMI_SEMI] = ACTIONS(1089), - [anon_sym_PIPE_AMP] = ACTIONS(1089), - [anon_sym_AMP_AMP] = ACTIONS(1089), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1089), - [anon_sym_LT_AMP] = ACTIONS(1089), - [anon_sym_GT_AMP] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_LT_LT_DASH] = ACTIONS(1089), - [anon_sym_LT_LT_LT] = ACTIONS(1089), - [sym__special_characters] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_DOLLAR] = ACTIONS(1091), - [sym_raw_string] = ACTIONS(1089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1089), - [anon_sym_GT_LPAREN] = ACTIONS(1089), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1091), - [sym_word] = ACTIONS(1091), - [anon_sym_LF] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - }, - [1217] = { - [aux_sym_concatenation_repeat1] = STATE(1217), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(2685), - [sym_variable_name] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1730), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1732), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [1218] = { - [aux_sym_concatenation_repeat1] = STATE(1218), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1730), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1732), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [1219] = { - [aux_sym_concatenation_repeat1] = STATE(1221), - [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), - }, - [1220] = { - [aux_sym_concatenation_repeat1] = STATE(1221), - [sym__simple_heredoc_body] = ACTIONS(1075), - [sym__heredoc_body_beginning] = ACTIONS(1075), - [sym_file_descriptor] = ACTIONS(1075), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1077), - [anon_sym_PIPE] = ACTIONS(1077), - [anon_sym_RPAREN] = ACTIONS(1075), - [anon_sym_SEMI_SEMI] = ACTIONS(1075), - [anon_sym_PIPE_AMP] = ACTIONS(1075), - [anon_sym_AMP_AMP] = ACTIONS(1075), - [anon_sym_PIPE_PIPE] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1077), - [anon_sym_GT] = ACTIONS(1077), - [anon_sym_GT_GT] = ACTIONS(1075), - [anon_sym_AMP_GT] = ACTIONS(1077), - [anon_sym_AMP_GT_GT] = ACTIONS(1075), - [anon_sym_LT_AMP] = ACTIONS(1075), - [anon_sym_GT_AMP] = ACTIONS(1075), - [anon_sym_LT_LT] = ACTIONS(1077), - [anon_sym_LT_LT_DASH] = ACTIONS(1075), - [anon_sym_LT_LT_LT] = ACTIONS(1075), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1077), - }, - [1221] = { - [aux_sym_concatenation_repeat1] = STATE(1644), - [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), - }, - [1222] = { - [sym__simple_heredoc_body] = ACTIONS(3703), - [sym__heredoc_body_beginning] = ACTIONS(3703), - [sym_file_descriptor] = ACTIONS(3703), - [ts_builtin_sym_end] = ACTIONS(3703), - [anon_sym_SEMI] = ACTIONS(3705), - [anon_sym_esac] = ACTIONS(3703), - [anon_sym_PIPE] = ACTIONS(3705), - [anon_sym_RPAREN] = ACTIONS(3703), - [anon_sym_SEMI_SEMI] = ACTIONS(3703), - [anon_sym_PIPE_AMP] = ACTIONS(3703), - [anon_sym_AMP_AMP] = ACTIONS(3703), - [anon_sym_PIPE_PIPE] = ACTIONS(3703), - [anon_sym_LT] = ACTIONS(3705), - [anon_sym_GT] = ACTIONS(3705), - [anon_sym_GT_GT] = ACTIONS(3703), - [anon_sym_AMP_GT] = ACTIONS(3705), - [anon_sym_AMP_GT_GT] = ACTIONS(3703), - [anon_sym_LT_AMP] = ACTIONS(3703), - [anon_sym_GT_AMP] = ACTIONS(3703), - [anon_sym_LT_LT] = ACTIONS(3705), - [anon_sym_LT_LT_DASH] = ACTIONS(3703), - [anon_sym_LT_LT_LT] = ACTIONS(3703), - [anon_sym_BQUOTE] = ACTIONS(3703), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3703), - [anon_sym_AMP] = ACTIONS(3705), - }, - [1223] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(3707), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1224] = { - [sym_file_descriptor] = ACTIONS(2080), - [sym_variable_name] = ACTIONS(2080), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_GT_GT] = ACTIONS(2080), - [anon_sym_AMP_GT] = ACTIONS(2082), - [anon_sym_AMP_GT_GT] = ACTIONS(2080), - [anon_sym_LT_AMP] = ACTIONS(2080), - [anon_sym_GT_AMP] = ACTIONS(2080), - [sym__special_characters] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [anon_sym_DOLLAR] = ACTIONS(2082), - [sym_raw_string] = ACTIONS(2080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2080), - [anon_sym_BQUOTE] = ACTIONS(2080), - [anon_sym_LT_LPAREN] = ACTIONS(2080), - [anon_sym_GT_LPAREN] = ACTIONS(2080), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2080), - }, - [1225] = { - [sym_concatenation] = STATE(1015), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [aux_sym_for_statement_repeat1] = STATE(1015), - [anon_sym_RPAREN] = ACTIONS(3709), - [sym__special_characters] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_DOLLAR] = ACTIONS(1099), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1109), - [anon_sym_GT_LPAREN] = ACTIONS(1109), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1101), - }, - [1226] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_RBRACK] = ACTIONS(2934), - [anon_sym_EQ_TILDE] = ACTIONS(2934), - [anon_sym_EQ_EQ] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2936), - [anon_sym_PLUS_EQ] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_BANG_EQ] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2936), - [anon_sym_DASH] = ACTIONS(2936), - [anon_sym_DASH_EQ] = ACTIONS(2934), - [anon_sym_LT_EQ] = ACTIONS(2934), - [anon_sym_GT_EQ] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2934), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2934), - }, - [1227] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_AMP_AMP] = ACTIONS(2948), - [anon_sym_PIPE_PIPE] = ACTIONS(2948), - [anon_sym_RBRACK] = ACTIONS(2948), - [anon_sym_EQ_TILDE] = ACTIONS(2948), - [anon_sym_EQ_EQ] = ACTIONS(2948), - [anon_sym_EQ] = ACTIONS(2950), - [anon_sym_PLUS_EQ] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_DASH_EQ] = ACTIONS(2948), - [anon_sym_LT_EQ] = ACTIONS(2948), - [anon_sym_GT_EQ] = ACTIONS(2948), - [anon_sym_PLUS_PLUS] = ACTIONS(2948), - [anon_sym_DASH_DASH] = ACTIONS(2948), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2948), - }, - [1228] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(3711), - [sym_comment] = ACTIONS(57), - }, - [1229] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(3713), - [sym_comment] = ACTIONS(57), - }, - [1230] = { - [anon_sym_RBRACE] = ACTIONS(3713), - [sym_comment] = ACTIONS(57), - }, - [1231] = { - [sym_concatenation] = STATE(1651), - [sym_string] = STATE(1650), - [sym_simple_expansion] = STATE(1650), - [sym_string_expansion] = STATE(1650), - [sym_expansion] = STATE(1650), - [sym_command_substitution] = STATE(1650), - [sym_process_substitution] = STATE(1650), - [anon_sym_RBRACE] = ACTIONS(3713), - [sym__special_characters] = ACTIONS(3715), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(3717), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3717), - }, - [1232] = { - [sym__concat] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_RBRACK] = ACTIONS(2984), - [anon_sym_EQ_TILDE] = ACTIONS(2984), - [anon_sym_EQ_EQ] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2986), - [anon_sym_PLUS_EQ] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_GT] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_DASH_EQ] = ACTIONS(2984), - [anon_sym_LT_EQ] = ACTIONS(2984), - [anon_sym_GT_EQ] = ACTIONS(2984), - [anon_sym_PLUS_PLUS] = ACTIONS(2984), - [anon_sym_DASH_DASH] = ACTIONS(2984), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2984), - }, - [1233] = { - [sym_concatenation] = STATE(1654), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1654), - [sym_regex] = ACTIONS(3719), - [anon_sym_RBRACE] = ACTIONS(3721), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3723), - [anon_sym_COLON_QMARK] = ACTIONS(3723), - [anon_sym_COLON_DASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1234] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3721), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1235] = { - [sym_concatenation] = STATE(1656), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1656), - [sym_regex] = ACTIONS(3727), - [anon_sym_RBRACE] = ACTIONS(3713), - [anon_sym_EQ] = ACTIONS(3729), - [anon_sym_DASH] = ACTIONS(3729), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3729), - [anon_sym_COLON_QMARK] = ACTIONS(3729), - [anon_sym_COLON_DASH] = ACTIONS(3729), - [anon_sym_PERCENT] = ACTIONS(3729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1236] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3713), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1237] = { - [sym_concatenation] = STATE(1658), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1658), - [anon_sym_RBRACE] = ACTIONS(3733), - [anon_sym_EQ] = ACTIONS(3735), - [anon_sym_DASH] = ACTIONS(3735), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3735), - [anon_sym_COLON_QMARK] = ACTIONS(3735), - [anon_sym_COLON_DASH] = ACTIONS(3735), - [anon_sym_PERCENT] = ACTIONS(3735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1238] = { - [sym__concat] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_RBRACK] = ACTIONS(3040), - [anon_sym_EQ_TILDE] = ACTIONS(3040), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ] = ACTIONS(3042), - [anon_sym_PLUS_EQ] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_DASH_EQ] = ACTIONS(3040), - [anon_sym_LT_EQ] = ACTIONS(3040), - [anon_sym_GT_EQ] = ACTIONS(3040), - [anon_sym_PLUS_PLUS] = ACTIONS(3040), - [anon_sym_DASH_DASH] = ACTIONS(3040), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3040), - }, - [1239] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3733), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1240] = { - [sym_concatenation] = STATE(1656), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1656), - [anon_sym_RBRACE] = ACTIONS(3713), - [anon_sym_EQ] = ACTIONS(3729), - [anon_sym_DASH] = ACTIONS(3729), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3729), - [anon_sym_COLON_QMARK] = ACTIONS(3729), - [anon_sym_COLON_DASH] = ACTIONS(3729), - [anon_sym_PERCENT] = ACTIONS(3729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1241] = { - [sym__concat] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_RBRACK] = ACTIONS(3095), - [anon_sym_EQ_TILDE] = ACTIONS(3095), - [anon_sym_EQ_EQ] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_PLUS_EQ] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_BANG_EQ] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_DASH_EQ] = ACTIONS(3095), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3095), - }, - [1242] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(3739), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1243] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3739), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1244] = { - [anon_sym_SEMI] = ACTIONS(3741), - [anon_sym_RPAREN] = ACTIONS(3739), - [anon_sym_SEMI_SEMI] = ACTIONS(3743), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3743), - [anon_sym_AMP] = ACTIONS(3743), - }, - [1245] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(3739), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1246] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(3739), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1247] = { - [anon_sym_SEMI] = ACTIONS(3745), - [anon_sym_SEMI_SEMI] = ACTIONS(3747), - [anon_sym_BQUOTE] = ACTIONS(3739), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3747), - [anon_sym_AMP] = ACTIONS(3747), - }, - [1248] = { - [sym__concat] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_RBRACK] = ACTIONS(3125), - [anon_sym_EQ_TILDE] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ] = ACTIONS(3127), - [anon_sym_PLUS_EQ] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3125), - }, - [1249] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(3749), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1250] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3749), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1251] = { - [anon_sym_SEMI] = ACTIONS(3751), - [anon_sym_RPAREN] = ACTIONS(3749), - [anon_sym_SEMI_SEMI] = ACTIONS(3753), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3753), - [anon_sym_AMP] = ACTIONS(3753), - }, - [1252] = { - [sym__simple_heredoc_body] = ACTIONS(2080), - [sym__heredoc_body_beginning] = ACTIONS(2080), - [sym_file_descriptor] = ACTIONS(2080), - [sym_variable_name] = ACTIONS(2080), - [ts_builtin_sym_end] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2080), - [anon_sym_SEMI_SEMI] = ACTIONS(2080), - [anon_sym_PIPE_AMP] = ACTIONS(2080), - [anon_sym_AMP_AMP] = ACTIONS(2080), - [anon_sym_PIPE_PIPE] = ACTIONS(2080), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_GT_GT] = ACTIONS(2080), - [anon_sym_AMP_GT] = ACTIONS(2082), - [anon_sym_AMP_GT_GT] = ACTIONS(2080), - [anon_sym_LT_AMP] = ACTIONS(2080), - [anon_sym_GT_AMP] = ACTIONS(2080), - [anon_sym_LT_LT] = ACTIONS(2082), - [anon_sym_LT_LT_DASH] = ACTIONS(2080), - [anon_sym_LT_LT_LT] = ACTIONS(2080), - [sym__special_characters] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [anon_sym_DOLLAR] = ACTIONS(2082), - [sym_raw_string] = ACTIONS(2080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2080), - [anon_sym_BQUOTE] = ACTIONS(2080), - [anon_sym_LT_LPAREN] = ACTIONS(2080), - [anon_sym_GT_LPAREN] = ACTIONS(2080), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2082), - [sym_word] = ACTIONS(2082), - [anon_sym_LF] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2082), - }, - [1253] = { - [sym_concatenation] = STATE(1015), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [aux_sym_for_statement_repeat1] = STATE(1015), - [anon_sym_RPAREN] = ACTIONS(3755), - [sym__special_characters] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_DOLLAR] = ACTIONS(1099), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1109), - [anon_sym_GT_LPAREN] = ACTIONS(1109), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1101), - }, - [1254] = { - [sym__simple_heredoc_body] = ACTIONS(2934), - [sym__heredoc_body_beginning] = ACTIONS(2934), - [sym_file_descriptor] = ACTIONS(2934), - [sym__concat] = ACTIONS(2934), - [sym_variable_name] = ACTIONS(2934), - [ts_builtin_sym_end] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_SEMI_SEMI] = ACTIONS(2934), - [anon_sym_PIPE_AMP] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_AMP_GT] = ACTIONS(2936), - [anon_sym_AMP_GT_GT] = ACTIONS(2934), - [anon_sym_LT_AMP] = ACTIONS(2934), - [anon_sym_GT_AMP] = ACTIONS(2934), - [anon_sym_LT_LT] = ACTIONS(2936), - [anon_sym_LT_LT_DASH] = ACTIONS(2934), - [anon_sym_LT_LT_LT] = ACTIONS(2934), - [sym__special_characters] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_LT_LPAREN] = ACTIONS(2934), - [anon_sym_GT_LPAREN] = ACTIONS(2934), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2936), - [sym_word] = ACTIONS(2936), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), - }, - [1255] = { - [sym__simple_heredoc_body] = ACTIONS(2948), - [sym__heredoc_body_beginning] = ACTIONS(2948), - [sym_file_descriptor] = ACTIONS(2948), - [sym__concat] = ACTIONS(2948), - [sym_variable_name] = ACTIONS(2948), - [ts_builtin_sym_end] = ACTIONS(2948), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_RPAREN] = ACTIONS(2948), - [anon_sym_SEMI_SEMI] = ACTIONS(2948), - [anon_sym_PIPE_AMP] = ACTIONS(2948), - [anon_sym_AMP_AMP] = ACTIONS(2948), - [anon_sym_PIPE_PIPE] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_GT_GT] = ACTIONS(2948), - [anon_sym_AMP_GT] = ACTIONS(2950), - [anon_sym_AMP_GT_GT] = ACTIONS(2948), - [anon_sym_LT_AMP] = ACTIONS(2948), - [anon_sym_GT_AMP] = ACTIONS(2948), - [anon_sym_LT_LT] = ACTIONS(2950), - [anon_sym_LT_LT_DASH] = ACTIONS(2948), - [anon_sym_LT_LT_LT] = ACTIONS(2948), - [sym__special_characters] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2948), - [anon_sym_BQUOTE] = ACTIONS(2948), - [anon_sym_LT_LPAREN] = ACTIONS(2948), - [anon_sym_GT_LPAREN] = ACTIONS(2948), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2950), - [sym_word] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - }, - [1256] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(3757), - [sym_comment] = ACTIONS(57), - }, - [1257] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(3759), - [sym_comment] = ACTIONS(57), - }, - [1258] = { - [anon_sym_RBRACE] = ACTIONS(3759), - [sym_comment] = ACTIONS(57), - }, - [1259] = { - [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(3759), - [sym__special_characters] = ACTIONS(3761), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(3763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3763), - }, - [1260] = { - [sym__simple_heredoc_body] = ACTIONS(2984), - [sym__heredoc_body_beginning] = ACTIONS(2984), - [sym_file_descriptor] = ACTIONS(2984), - [sym__concat] = ACTIONS(2984), - [sym_variable_name] = ACTIONS(2984), - [ts_builtin_sym_end] = ACTIONS(2984), - [anon_sym_SEMI] = ACTIONS(2986), - [anon_sym_PIPE] = ACTIONS(2986), - [anon_sym_RPAREN] = ACTIONS(2984), - [anon_sym_SEMI_SEMI] = ACTIONS(2984), - [anon_sym_PIPE_AMP] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_GT] = ACTIONS(2986), - [anon_sym_GT_GT] = ACTIONS(2984), - [anon_sym_AMP_GT] = ACTIONS(2986), - [anon_sym_AMP_GT_GT] = ACTIONS(2984), - [anon_sym_LT_AMP] = ACTIONS(2984), - [anon_sym_GT_AMP] = ACTIONS(2984), - [anon_sym_LT_LT] = ACTIONS(2986), - [anon_sym_LT_LT_DASH] = ACTIONS(2984), - [anon_sym_LT_LT_LT] = ACTIONS(2984), - [sym__special_characters] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [sym_raw_string] = ACTIONS(2984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2984), - [anon_sym_BQUOTE] = ACTIONS(2984), - [anon_sym_LT_LPAREN] = ACTIONS(2984), - [anon_sym_GT_LPAREN] = ACTIONS(2984), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2986), - [sym_word] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), - }, - [1261] = { - [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(3765), - [anon_sym_RBRACE] = ACTIONS(3767), - [anon_sym_EQ] = ACTIONS(3769), - [anon_sym_DASH] = ACTIONS(3769), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3771), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3769), - [anon_sym_COLON_QMARK] = ACTIONS(3769), - [anon_sym_COLON_DASH] = ACTIONS(3769), - [anon_sym_PERCENT] = ACTIONS(3769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1262] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3767), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1263] = { - [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(3773), - [anon_sym_RBRACE] = ACTIONS(3759), - [anon_sym_EQ] = ACTIONS(3775), - [anon_sym_DASH] = ACTIONS(3775), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3777), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3775), - [anon_sym_COLON_QMARK] = ACTIONS(3775), - [anon_sym_COLON_DASH] = ACTIONS(3775), - [anon_sym_PERCENT] = ACTIONS(3775), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1264] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3759), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1265] = { - [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(3779), - [anon_sym_EQ] = ACTIONS(3781), - [anon_sym_DASH] = ACTIONS(3781), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3783), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3781), - [anon_sym_COLON_QMARK] = ACTIONS(3781), - [anon_sym_COLON_DASH] = ACTIONS(3781), - [anon_sym_PERCENT] = ACTIONS(3781), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1266] = { - [sym__simple_heredoc_body] = ACTIONS(3040), - [sym__heredoc_body_beginning] = ACTIONS(3040), - [sym_file_descriptor] = ACTIONS(3040), - [sym__concat] = ACTIONS(3040), - [sym_variable_name] = ACTIONS(3040), - [ts_builtin_sym_end] = ACTIONS(3040), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_RPAREN] = ACTIONS(3040), - [anon_sym_SEMI_SEMI] = ACTIONS(3040), - [anon_sym_PIPE_AMP] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_GT_GT] = ACTIONS(3040), - [anon_sym_AMP_GT] = ACTIONS(3042), - [anon_sym_AMP_GT_GT] = ACTIONS(3040), - [anon_sym_LT_AMP] = ACTIONS(3040), - [anon_sym_GT_AMP] = ACTIONS(3040), - [anon_sym_LT_LT] = ACTIONS(3042), - [anon_sym_LT_LT_DASH] = ACTIONS(3040), - [anon_sym_LT_LT_LT] = ACTIONS(3040), - [sym__special_characters] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [sym_raw_string] = ACTIONS(3040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), - [anon_sym_BQUOTE] = ACTIONS(3040), - [anon_sym_LT_LPAREN] = ACTIONS(3040), - [anon_sym_GT_LPAREN] = ACTIONS(3040), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3042), - [sym_word] = ACTIONS(3042), - [anon_sym_LF] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - }, - [1267] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3779), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1268] = { - [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(3759), - [anon_sym_EQ] = ACTIONS(3775), - [anon_sym_DASH] = ACTIONS(3775), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3777), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3775), - [anon_sym_COLON_QMARK] = ACTIONS(3775), - [anon_sym_COLON_DASH] = ACTIONS(3775), - [anon_sym_PERCENT] = ACTIONS(3775), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1269] = { - [sym__simple_heredoc_body] = ACTIONS(3095), - [sym__heredoc_body_beginning] = ACTIONS(3095), - [sym_file_descriptor] = ACTIONS(3095), - [sym__concat] = ACTIONS(3095), - [sym_variable_name] = ACTIONS(3095), - [ts_builtin_sym_end] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_AMP_GT] = ACTIONS(3097), - [anon_sym_AMP_GT_GT] = ACTIONS(3095), - [anon_sym_LT_AMP] = ACTIONS(3095), - [anon_sym_GT_AMP] = ACTIONS(3095), - [anon_sym_LT_LT] = ACTIONS(3097), - [anon_sym_LT_LT_DASH] = ACTIONS(3095), - [anon_sym_LT_LT_LT] = ACTIONS(3095), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [sym_raw_string] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), - [anon_sym_BQUOTE] = ACTIONS(3095), - [anon_sym_LT_LPAREN] = ACTIONS(3095), - [anon_sym_GT_LPAREN] = ACTIONS(3095), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3097), - [sym_word] = ACTIONS(3097), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - }, - [1270] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(3785), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1271] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3785), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1272] = { - [anon_sym_SEMI] = ACTIONS(3787), - [anon_sym_RPAREN] = ACTIONS(3785), - [anon_sym_SEMI_SEMI] = ACTIONS(3789), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3789), - [anon_sym_AMP] = ACTIONS(3789), - }, - [1273] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(3785), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1274] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(3785), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1275] = { - [anon_sym_SEMI] = ACTIONS(3791), - [anon_sym_SEMI_SEMI] = ACTIONS(3793), - [anon_sym_BQUOTE] = ACTIONS(3785), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3793), - [anon_sym_AMP] = ACTIONS(3793), - }, - [1276] = { - [sym__simple_heredoc_body] = ACTIONS(3125), - [sym__heredoc_body_beginning] = ACTIONS(3125), - [sym_file_descriptor] = ACTIONS(3125), - [sym__concat] = ACTIONS(3125), - [sym_variable_name] = ACTIONS(3125), - [ts_builtin_sym_end] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_RPAREN] = ACTIONS(3125), - [anon_sym_SEMI_SEMI] = ACTIONS(3125), - [anon_sym_PIPE_AMP] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_AMP_GT] = ACTIONS(3127), - [anon_sym_AMP_GT_GT] = ACTIONS(3125), - [anon_sym_LT_AMP] = ACTIONS(3125), - [anon_sym_GT_AMP] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_LT_LT_DASH] = ACTIONS(3125), - [anon_sym_LT_LT_LT] = ACTIONS(3125), - [sym__special_characters] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [anon_sym_DOLLAR] = ACTIONS(3127), - [sym_raw_string] = ACTIONS(3125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3125), - [anon_sym_BQUOTE] = ACTIONS(3125), - [anon_sym_LT_LPAREN] = ACTIONS(3125), - [anon_sym_GT_LPAREN] = ACTIONS(3125), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3127), - [sym_word] = ACTIONS(3127), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - }, - [1277] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(3795), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1278] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3795), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1279] = { - [anon_sym_SEMI] = ACTIONS(3797), - [anon_sym_RPAREN] = ACTIONS(3795), - [anon_sym_SEMI_SEMI] = ACTIONS(3799), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3799), - [anon_sym_AMP] = ACTIONS(3799), - }, - [1280] = { - [sym__simple_heredoc_body] = ACTIONS(2934), - [sym__heredoc_body_beginning] = ACTIONS(2934), - [sym_file_descriptor] = ACTIONS(2934), - [sym__concat] = ACTIONS(2934), - [ts_builtin_sym_end] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_SEMI_SEMI] = ACTIONS(2934), - [anon_sym_PIPE_AMP] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_AMP_GT] = ACTIONS(2936), - [anon_sym_AMP_GT_GT] = ACTIONS(2934), - [anon_sym_LT_AMP] = ACTIONS(2934), - [anon_sym_GT_AMP] = ACTIONS(2934), - [anon_sym_LT_LT] = ACTIONS(2936), - [anon_sym_LT_LT_DASH] = ACTIONS(2934), - [anon_sym_LT_LT_LT] = ACTIONS(2934), - [sym__special_characters] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_LT_LPAREN] = ACTIONS(2934), - [anon_sym_GT_LPAREN] = ACTIONS(2934), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2936), - [sym_word] = ACTIONS(2936), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), - }, - [1281] = { - [sym__simple_heredoc_body] = ACTIONS(2948), - [sym__heredoc_body_beginning] = ACTIONS(2948), - [sym_file_descriptor] = ACTIONS(2948), - [sym__concat] = ACTIONS(2948), - [ts_builtin_sym_end] = ACTIONS(2948), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_RPAREN] = ACTIONS(2948), - [anon_sym_SEMI_SEMI] = ACTIONS(2948), - [anon_sym_PIPE_AMP] = ACTIONS(2948), - [anon_sym_AMP_AMP] = ACTIONS(2948), - [anon_sym_PIPE_PIPE] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_GT_GT] = ACTIONS(2948), - [anon_sym_AMP_GT] = ACTIONS(2950), - [anon_sym_AMP_GT_GT] = ACTIONS(2948), - [anon_sym_LT_AMP] = ACTIONS(2948), - [anon_sym_GT_AMP] = ACTIONS(2948), - [anon_sym_LT_LT] = ACTIONS(2950), - [anon_sym_LT_LT_DASH] = ACTIONS(2948), - [anon_sym_LT_LT_LT] = ACTIONS(2948), - [sym__special_characters] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2948), - [anon_sym_BQUOTE] = ACTIONS(2948), - [anon_sym_LT_LPAREN] = ACTIONS(2948), - [anon_sym_GT_LPAREN] = ACTIONS(2948), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2950), - [sym_word] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - }, - [1282] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(3801), - [sym_comment] = ACTIONS(57), - }, - [1283] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(3803), - [sym_comment] = ACTIONS(57), - }, - [1284] = { - [anon_sym_RBRACE] = ACTIONS(3803), - [sym_comment] = ACTIONS(57), - }, - [1285] = { - [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(3803), - [sym__special_characters] = ACTIONS(3805), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(3807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3807), - }, - [1286] = { - [sym__simple_heredoc_body] = ACTIONS(2984), - [sym__heredoc_body_beginning] = ACTIONS(2984), - [sym_file_descriptor] = ACTIONS(2984), - [sym__concat] = ACTIONS(2984), - [ts_builtin_sym_end] = ACTIONS(2984), - [anon_sym_SEMI] = ACTIONS(2986), - [anon_sym_PIPE] = ACTIONS(2986), - [anon_sym_RPAREN] = ACTIONS(2984), - [anon_sym_SEMI_SEMI] = ACTIONS(2984), - [anon_sym_PIPE_AMP] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_GT] = ACTIONS(2986), - [anon_sym_GT_GT] = ACTIONS(2984), - [anon_sym_AMP_GT] = ACTIONS(2986), - [anon_sym_AMP_GT_GT] = ACTIONS(2984), - [anon_sym_LT_AMP] = ACTIONS(2984), - [anon_sym_GT_AMP] = ACTIONS(2984), - [anon_sym_LT_LT] = ACTIONS(2986), - [anon_sym_LT_LT_DASH] = ACTIONS(2984), - [anon_sym_LT_LT_LT] = ACTIONS(2984), - [sym__special_characters] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [sym_raw_string] = ACTIONS(2984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2984), - [anon_sym_BQUOTE] = ACTIONS(2984), - [anon_sym_LT_LPAREN] = ACTIONS(2984), - [anon_sym_GT_LPAREN] = ACTIONS(2984), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2986), - [sym_word] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), - }, - [1287] = { - [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(3809), - [anon_sym_RBRACE] = ACTIONS(3811), - [anon_sym_EQ] = ACTIONS(3813), - [anon_sym_DASH] = ACTIONS(3813), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3815), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3813), - [anon_sym_COLON_QMARK] = ACTIONS(3813), - [anon_sym_COLON_DASH] = ACTIONS(3813), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1288] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3811), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1289] = { - [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(3817), - [anon_sym_RBRACE] = ACTIONS(3803), - [anon_sym_EQ] = ACTIONS(3819), - [anon_sym_DASH] = ACTIONS(3819), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3819), - [anon_sym_COLON_QMARK] = ACTIONS(3819), - [anon_sym_COLON_DASH] = ACTIONS(3819), - [anon_sym_PERCENT] = ACTIONS(3819), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1290] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3803), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1291] = { - [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(3823), - [anon_sym_EQ] = ACTIONS(3825), - [anon_sym_DASH] = ACTIONS(3825), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3825), - [anon_sym_COLON_QMARK] = ACTIONS(3825), - [anon_sym_COLON_DASH] = ACTIONS(3825), - [anon_sym_PERCENT] = ACTIONS(3825), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1292] = { - [sym__simple_heredoc_body] = ACTIONS(3040), - [sym__heredoc_body_beginning] = ACTIONS(3040), - [sym_file_descriptor] = ACTIONS(3040), - [sym__concat] = ACTIONS(3040), - [ts_builtin_sym_end] = ACTIONS(3040), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_RPAREN] = ACTIONS(3040), - [anon_sym_SEMI_SEMI] = ACTIONS(3040), - [anon_sym_PIPE_AMP] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_GT_GT] = ACTIONS(3040), - [anon_sym_AMP_GT] = ACTIONS(3042), - [anon_sym_AMP_GT_GT] = ACTIONS(3040), - [anon_sym_LT_AMP] = ACTIONS(3040), - [anon_sym_GT_AMP] = ACTIONS(3040), - [anon_sym_LT_LT] = ACTIONS(3042), - [anon_sym_LT_LT_DASH] = ACTIONS(3040), - [anon_sym_LT_LT_LT] = ACTIONS(3040), - [sym__special_characters] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [sym_raw_string] = ACTIONS(3040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), - [anon_sym_BQUOTE] = ACTIONS(3040), - [anon_sym_LT_LPAREN] = ACTIONS(3040), - [anon_sym_GT_LPAREN] = ACTIONS(3040), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3042), - [sym_word] = ACTIONS(3042), - [anon_sym_LF] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - }, - [1293] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1294] = { - [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(3803), - [anon_sym_EQ] = ACTIONS(3819), - [anon_sym_DASH] = ACTIONS(3819), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3819), - [anon_sym_COLON_QMARK] = ACTIONS(3819), - [anon_sym_COLON_DASH] = ACTIONS(3819), - [anon_sym_PERCENT] = ACTIONS(3819), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1295] = { - [sym__simple_heredoc_body] = ACTIONS(3095), - [sym__heredoc_body_beginning] = ACTIONS(3095), - [sym_file_descriptor] = ACTIONS(3095), - [sym__concat] = ACTIONS(3095), - [ts_builtin_sym_end] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_AMP_GT] = ACTIONS(3097), - [anon_sym_AMP_GT_GT] = ACTIONS(3095), - [anon_sym_LT_AMP] = ACTIONS(3095), - [anon_sym_GT_AMP] = ACTIONS(3095), - [anon_sym_LT_LT] = ACTIONS(3097), - [anon_sym_LT_LT_DASH] = ACTIONS(3095), - [anon_sym_LT_LT_LT] = ACTIONS(3095), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [sym_raw_string] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), - [anon_sym_BQUOTE] = ACTIONS(3095), - [anon_sym_LT_LPAREN] = ACTIONS(3095), - [anon_sym_GT_LPAREN] = ACTIONS(3095), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3097), - [sym_word] = ACTIONS(3097), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - }, - [1296] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(3829), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1297] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3829), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1298] = { - [anon_sym_SEMI] = ACTIONS(3831), - [anon_sym_RPAREN] = ACTIONS(3829), - [anon_sym_SEMI_SEMI] = ACTIONS(3833), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3833), - [anon_sym_AMP] = ACTIONS(3833), - }, - [1299] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(3829), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1300] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(3829), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1301] = { - [anon_sym_SEMI] = ACTIONS(3835), - [anon_sym_SEMI_SEMI] = ACTIONS(3837), - [anon_sym_BQUOTE] = ACTIONS(3829), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3837), - [anon_sym_AMP] = ACTIONS(3837), - }, - [1302] = { - [sym__simple_heredoc_body] = ACTIONS(3125), - [sym__heredoc_body_beginning] = ACTIONS(3125), - [sym_file_descriptor] = ACTIONS(3125), - [sym__concat] = ACTIONS(3125), - [ts_builtin_sym_end] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_RPAREN] = ACTIONS(3125), - [anon_sym_SEMI_SEMI] = ACTIONS(3125), - [anon_sym_PIPE_AMP] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_AMP_GT] = ACTIONS(3127), - [anon_sym_AMP_GT_GT] = ACTIONS(3125), - [anon_sym_LT_AMP] = ACTIONS(3125), - [anon_sym_GT_AMP] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_LT_LT_DASH] = ACTIONS(3125), - [anon_sym_LT_LT_LT] = ACTIONS(3125), - [sym__special_characters] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [anon_sym_DOLLAR] = ACTIONS(3127), - [sym_raw_string] = ACTIONS(3125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3125), - [anon_sym_BQUOTE] = ACTIONS(3125), - [anon_sym_LT_LPAREN] = ACTIONS(3125), - [anon_sym_GT_LPAREN] = ACTIONS(3125), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3127), - [sym_word] = ACTIONS(3127), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - }, - [1303] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(3839), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1304] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3839), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1305] = { - [anon_sym_SEMI] = ACTIONS(3841), - [anon_sym_RPAREN] = ACTIONS(3839), - [anon_sym_SEMI_SEMI] = ACTIONS(3843), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3843), - [anon_sym_AMP] = ACTIONS(3843), - }, - [1306] = { - [sym_file_descriptor] = ACTIONS(2934), - [sym__concat] = ACTIONS(2934), - [sym_variable_name] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_AMP_GT] = ACTIONS(2936), - [anon_sym_AMP_GT_GT] = ACTIONS(2934), - [anon_sym_LT_AMP] = ACTIONS(2934), - [anon_sym_GT_AMP] = ACTIONS(2934), - [sym__special_characters] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_LT_LPAREN] = ACTIONS(2934), - [anon_sym_GT_LPAREN] = ACTIONS(2934), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2934), - }, - [1307] = { - [sym_file_descriptor] = ACTIONS(2948), - [sym__concat] = ACTIONS(2948), - [sym_variable_name] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_GT_GT] = ACTIONS(2948), - [anon_sym_AMP_GT] = ACTIONS(2950), - [anon_sym_AMP_GT_GT] = ACTIONS(2948), - [anon_sym_LT_AMP] = ACTIONS(2948), - [anon_sym_GT_AMP] = ACTIONS(2948), - [sym__special_characters] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2948), - [anon_sym_BQUOTE] = ACTIONS(2948), - [anon_sym_LT_LPAREN] = ACTIONS(2948), - [anon_sym_GT_LPAREN] = ACTIONS(2948), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2948), - }, - [1308] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(3845), - [sym_comment] = ACTIONS(57), - }, - [1309] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(3847), - [sym_comment] = ACTIONS(57), - }, - [1310] = { - [anon_sym_RBRACE] = ACTIONS(3847), - [sym_comment] = ACTIONS(57), - }, - [1311] = { - [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(3847), - [sym__special_characters] = ACTIONS(3849), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(3851), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3851), - }, - [1312] = { - [sym_file_descriptor] = ACTIONS(2984), - [sym__concat] = ACTIONS(2984), - [sym_variable_name] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_GT] = ACTIONS(2986), - [anon_sym_GT_GT] = ACTIONS(2984), - [anon_sym_AMP_GT] = ACTIONS(2986), - [anon_sym_AMP_GT_GT] = ACTIONS(2984), - [anon_sym_LT_AMP] = ACTIONS(2984), - [anon_sym_GT_AMP] = ACTIONS(2984), - [sym__special_characters] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [sym_raw_string] = ACTIONS(2984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2984), - [anon_sym_BQUOTE] = ACTIONS(2984), - [anon_sym_LT_LPAREN] = ACTIONS(2984), - [anon_sym_GT_LPAREN] = ACTIONS(2984), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2984), - }, - [1313] = { - [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(3853), - [anon_sym_RBRACE] = ACTIONS(3855), - [anon_sym_EQ] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3857), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3859), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3857), - [anon_sym_COLON_QMARK] = ACTIONS(3857), - [anon_sym_COLON_DASH] = ACTIONS(3857), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1314] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3855), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1315] = { - [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(3861), - [anon_sym_RBRACE] = ACTIONS(3847), - [anon_sym_EQ] = ACTIONS(3863), - [anon_sym_DASH] = ACTIONS(3863), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3865), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3863), - [anon_sym_COLON_QMARK] = ACTIONS(3863), - [anon_sym_COLON_DASH] = ACTIONS(3863), - [anon_sym_PERCENT] = ACTIONS(3863), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1316] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3847), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1317] = { - [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(3867), - [anon_sym_EQ] = ACTIONS(3869), - [anon_sym_DASH] = ACTIONS(3869), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3869), - [anon_sym_COLON_QMARK] = ACTIONS(3869), - [anon_sym_COLON_DASH] = ACTIONS(3869), - [anon_sym_PERCENT] = ACTIONS(3869), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1318] = { - [sym_file_descriptor] = ACTIONS(3040), - [sym__concat] = ACTIONS(3040), - [sym_variable_name] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_GT_GT] = ACTIONS(3040), - [anon_sym_AMP_GT] = ACTIONS(3042), - [anon_sym_AMP_GT_GT] = ACTIONS(3040), - [anon_sym_LT_AMP] = ACTIONS(3040), - [anon_sym_GT_AMP] = ACTIONS(3040), - [sym__special_characters] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [sym_raw_string] = ACTIONS(3040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), - [anon_sym_BQUOTE] = ACTIONS(3040), - [anon_sym_LT_LPAREN] = ACTIONS(3040), - [anon_sym_GT_LPAREN] = ACTIONS(3040), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3040), - }, - [1319] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3867), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1320] = { - [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(3847), - [anon_sym_EQ] = ACTIONS(3863), - [anon_sym_DASH] = ACTIONS(3863), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3865), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3863), - [anon_sym_COLON_QMARK] = ACTIONS(3863), - [anon_sym_COLON_DASH] = ACTIONS(3863), - [anon_sym_PERCENT] = ACTIONS(3863), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1321] = { - [sym_file_descriptor] = ACTIONS(3095), - [sym__concat] = ACTIONS(3095), - [sym_variable_name] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_AMP_GT] = ACTIONS(3097), - [anon_sym_AMP_GT_GT] = ACTIONS(3095), - [anon_sym_LT_AMP] = ACTIONS(3095), - [anon_sym_GT_AMP] = ACTIONS(3095), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [sym_raw_string] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), - [anon_sym_BQUOTE] = ACTIONS(3095), - [anon_sym_LT_LPAREN] = ACTIONS(3095), - [anon_sym_GT_LPAREN] = ACTIONS(3095), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3095), - }, - [1322] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(3873), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1323] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3873), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1324] = { - [anon_sym_SEMI] = ACTIONS(3875), - [anon_sym_RPAREN] = ACTIONS(3873), - [anon_sym_SEMI_SEMI] = ACTIONS(3877), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3877), - [anon_sym_AMP] = ACTIONS(3877), - }, - [1325] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(3873), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1326] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(3873), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1327] = { - [anon_sym_SEMI] = ACTIONS(3879), - [anon_sym_SEMI_SEMI] = ACTIONS(3881), - [anon_sym_BQUOTE] = ACTIONS(3873), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3881), - [anon_sym_AMP] = ACTIONS(3881), - }, - [1328] = { - [sym_file_descriptor] = ACTIONS(3125), - [sym__concat] = ACTIONS(3125), - [sym_variable_name] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_AMP_GT] = ACTIONS(3127), - [anon_sym_AMP_GT_GT] = ACTIONS(3125), - [anon_sym_LT_AMP] = ACTIONS(3125), - [anon_sym_GT_AMP] = ACTIONS(3125), - [sym__special_characters] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [anon_sym_DOLLAR] = ACTIONS(3127), - [sym_raw_string] = ACTIONS(3125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3125), - [anon_sym_BQUOTE] = ACTIONS(3125), - [anon_sym_LT_LPAREN] = ACTIONS(3125), - [anon_sym_GT_LPAREN] = ACTIONS(3125), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3125), - }, - [1329] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(3883), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1330] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3883), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1331] = { - [anon_sym_SEMI] = ACTIONS(3885), - [anon_sym_RPAREN] = ACTIONS(3883), - [anon_sym_SEMI_SEMI] = ACTIONS(3887), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3887), - [anon_sym_AMP] = ACTIONS(3887), - }, - [1332] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym__string_content] = ACTIONS(2948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2950), - [anon_sym_BQUOTE] = ACTIONS(2950), - [sym_comment] = ACTIONS(265), - }, - [1333] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(3889), - [sym_comment] = ACTIONS(57), - }, - [1334] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(3891), - [sym_comment] = ACTIONS(57), - }, - [1335] = { - [anon_sym_RBRACE] = ACTIONS(3891), - [sym_comment] = ACTIONS(57), - }, - [1336] = { - [sym_concatenation] = STATE(1720), - [sym_string] = STATE(1719), - [sym_simple_expansion] = STATE(1719), - [sym_string_expansion] = STATE(1719), - [sym_expansion] = STATE(1719), - [sym_command_substitution] = STATE(1719), - [sym_process_substitution] = STATE(1719), - [anon_sym_RBRACE] = ACTIONS(3891), - [sym__special_characters] = ACTIONS(3893), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(3895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3895), - }, - [1337] = { - [sym__concat] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [sym__string_content] = ACTIONS(2984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2986), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2986), - [anon_sym_BQUOTE] = ACTIONS(2986), - [sym_comment] = ACTIONS(265), - }, - [1338] = { - [sym_concatenation] = STATE(1723), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1723), - [sym_regex] = ACTIONS(3897), - [anon_sym_RBRACE] = ACTIONS(3899), - [anon_sym_EQ] = ACTIONS(3901), - [anon_sym_DASH] = ACTIONS(3901), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3901), - [anon_sym_COLON_QMARK] = ACTIONS(3901), - [anon_sym_COLON_DASH] = ACTIONS(3901), - [anon_sym_PERCENT] = ACTIONS(3901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1339] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3899), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1340] = { - [sym_concatenation] = STATE(1725), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1725), - [sym_regex] = ACTIONS(3905), - [anon_sym_RBRACE] = ACTIONS(3891), - [anon_sym_EQ] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3909), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3907), - [anon_sym_COLON_QMARK] = ACTIONS(3907), - [anon_sym_COLON_DASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1341] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3891), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1342] = { - [sym_concatenation] = STATE(1727), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1727), - [anon_sym_RBRACE] = ACTIONS(3911), - [anon_sym_EQ] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3913), - [anon_sym_COLON_QMARK] = ACTIONS(3913), - [anon_sym_COLON_DASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1343] = { - [sym__concat] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3042), - [sym__string_content] = ACTIONS(3040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3042), - [anon_sym_BQUOTE] = ACTIONS(3042), - [sym_comment] = ACTIONS(265), - }, - [1344] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3911), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1345] = { - [sym_concatenation] = STATE(1725), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1725), - [anon_sym_RBRACE] = ACTIONS(3891), - [anon_sym_EQ] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3909), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(3907), - [anon_sym_COLON_QMARK] = ACTIONS(3907), - [anon_sym_COLON_DASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1346] = { - [sym__concat] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3097), - [sym__string_content] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3097), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3097), - [anon_sym_BQUOTE] = ACTIONS(3097), - [sym_comment] = ACTIONS(265), - }, - [1347] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(3917), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1348] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(3917), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1349] = { - [anon_sym_SEMI] = ACTIONS(3919), - [anon_sym_RPAREN] = ACTIONS(3917), - [anon_sym_SEMI_SEMI] = ACTIONS(3921), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3921), - [anon_sym_AMP] = ACTIONS(3921), - }, - [1350] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(3917), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1351] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(3917), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1352] = { - [anon_sym_SEMI] = ACTIONS(3923), - [anon_sym_SEMI_SEMI] = ACTIONS(3925), - [anon_sym_BQUOTE] = ACTIONS(3917), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3925), - [anon_sym_AMP] = ACTIONS(3925), - }, - [1353] = { - [sym_string] = STATE(758), - [sym_simple_expansion] = STATE(758), - [sym_string_expansion] = STATE(758), - [sym_expansion] = STATE(758), - [sym_command_substitution] = STATE(758), - [sym_process_substitution] = STATE(758), - [anon_sym_RBRACK] = ACTIONS(3927), - [sym__special_characters] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(155), - [sym_raw_string] = ACTIONS(1457), - [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(1457), - }, - [1354] = { - [sym__concat] = ACTIONS(3929), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_EQ] = ACTIONS(3931), - [anon_sym_DASH] = ACTIONS(3931), - [sym__special_characters] = ACTIONS(3931), - [anon_sym_DQUOTE] = ACTIONS(2072), - [anon_sym_DOLLAR] = ACTIONS(3931), - [sym_raw_string] = ACTIONS(2072), - [anon_sym_POUND] = ACTIONS(2072), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2072), - [anon_sym_SLASH] = ACTIONS(2072), - [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(2072), - [anon_sym_BQUOTE] = ACTIONS(2072), - [anon_sym_LT_LPAREN] = ACTIONS(2072), - [anon_sym_GT_LPAREN] = ACTIONS(2072), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(3931), - }, - [1355] = { - [sym_string] = STATE(758), - [sym_simple_expansion] = STATE(758), - [sym_string_expansion] = STATE(758), - [sym_expansion] = STATE(758), - [sym_command_substitution] = STATE(758), - [sym_process_substitution] = STATE(758), - [anon_sym_RBRACK] = ACTIONS(3933), - [sym__special_characters] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(155), - [sym_raw_string] = ACTIONS(1457), - [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(1457), - }, - [1356] = { - [sym__concat] = ACTIONS(3935), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_EQ] = ACTIONS(3937), - [anon_sym_DASH] = ACTIONS(3937), - [sym__special_characters] = ACTIONS(3937), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_DOLLAR] = ACTIONS(3937), - [sym_raw_string] = ACTIONS(2078), - [anon_sym_POUND] = ACTIONS(2078), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2078), - [anon_sym_COLON] = ACTIONS(3937), - [anon_sym_COLON_QMARK] = ACTIONS(3937), - [anon_sym_COLON_DASH] = ACTIONS(3937), - [anon_sym_PERCENT] = ACTIONS(3937), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2078), - [anon_sym_BQUOTE] = ACTIONS(2078), - [anon_sym_LT_LPAREN] = ACTIONS(2078), - [anon_sym_GT_LPAREN] = ACTIONS(2078), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(3937), - }, - [1357] = { - [anon_sym_RBRACK] = ACTIONS(3933), - [sym_comment] = ACTIONS(57), - }, - [1358] = { - [sym_string] = STATE(1735), - [sym_simple_expansion] = STATE(1735), - [sym_string_expansion] = STATE(1735), - [sym_expansion] = STATE(1735), - [sym_command_substitution] = STATE(1735), - [sym_process_substitution] = STATE(1735), - [sym__special_characters] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(3939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3939), - }, - [1359] = { - [sym__simple_heredoc_body] = ACTIONS(3941), - [sym__heredoc_body_beginning] = ACTIONS(3941), - [sym_file_descriptor] = ACTIONS(3941), - [sym__concat] = ACTIONS(3941), - [ts_builtin_sym_end] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_RPAREN] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [anon_sym_PIPE_AMP] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [anon_sym_EQ_TILDE] = ACTIONS(3943), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_GT_GT] = ACTIONS(3941), - [anon_sym_AMP_GT] = ACTIONS(3943), - [anon_sym_AMP_GT_GT] = ACTIONS(3941), - [anon_sym_LT_AMP] = ACTIONS(3941), - [anon_sym_GT_AMP] = ACTIONS(3941), - [anon_sym_LT_LT] = ACTIONS(3943), - [anon_sym_LT_LT_DASH] = ACTIONS(3941), - [anon_sym_LT_LT_LT] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3943), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [anon_sym_LT_LPAREN] = ACTIONS(3941), - [anon_sym_GT_LPAREN] = ACTIONS(3941), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3943), - [anon_sym_LF] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - }, - [1360] = { - [aux_sym_concatenation_repeat1] = STATE(1736), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(779), - [sym_comment] = ACTIONS(57), - }, - [1361] = { - [sym__concat] = ACTIONS(783), - [anon_sym_RBRACE] = ACTIONS(783), - [sym_comment] = ACTIONS(57), - }, - [1362] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(3945), - [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), - }, - [1363] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(455), - [anon_sym_DQUOTE] = ACTIONS(3945), - [anon_sym_DOLLAR] = ACTIONS(3947), - [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), - }, - [1364] = { - [sym__concat] = ACTIONS(817), - [anon_sym_RBRACE] = ACTIONS(817), - [sym_comment] = ACTIONS(57), - }, - [1365] = { - [sym__concat] = ACTIONS(821), - [anon_sym_RBRACE] = ACTIONS(821), - [sym_comment] = ACTIONS(57), - }, - [1366] = { - [sym__concat] = ACTIONS(825), - [anon_sym_RBRACE] = ACTIONS(825), - [sym_comment] = ACTIONS(57), - }, - [1367] = { - [sym__simple_heredoc_body] = ACTIONS(3949), - [sym__heredoc_body_beginning] = ACTIONS(3949), - [sym_file_descriptor] = ACTIONS(3949), - [sym__concat] = ACTIONS(3949), - [ts_builtin_sym_end] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_RPAREN] = ACTIONS(3949), - [anon_sym_SEMI_SEMI] = ACTIONS(3949), - [anon_sym_PIPE_AMP] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3949), - [anon_sym_PIPE_PIPE] = ACTIONS(3949), - [anon_sym_EQ_TILDE] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3949), - [anon_sym_AMP_GT] = ACTIONS(3951), - [anon_sym_AMP_GT_GT] = ACTIONS(3949), - [anon_sym_LT_AMP] = ACTIONS(3949), - [anon_sym_GT_AMP] = ACTIONS(3949), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_LT_LT_DASH] = ACTIONS(3949), - [anon_sym_LT_LT_LT] = ACTIONS(3949), - [sym__special_characters] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3951), - [sym_raw_string] = ACTIONS(3949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3949), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3949), - [anon_sym_BQUOTE] = ACTIONS(3949), - [anon_sym_LT_LPAREN] = ACTIONS(3949), - [anon_sym_GT_LPAREN] = ACTIONS(3949), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3951), - [anon_sym_LF] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3951), - }, - [1368] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(3953), - [sym_comment] = ACTIONS(57), - }, - [1369] = { - [sym_subscript] = STATE(1742), - [sym_variable_name] = ACTIONS(3955), - [anon_sym_DASH] = ACTIONS(3957), - [anon_sym_DOLLAR] = ACTIONS(3957), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_AT] = ACTIONS(3961), - [anon_sym_QMARK] = ACTIONS(3961), - [anon_sym_0] = ACTIONS(3959), - [anon_sym__] = ACTIONS(3959), - }, - [1370] = { - [sym_concatenation] = STATE(1745), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1745), - [anon_sym_RBRACE] = ACTIONS(3963), - [anon_sym_EQ] = ACTIONS(3965), - [anon_sym_DASH] = ACTIONS(3965), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(3969), - [anon_sym_COLON] = ACTIONS(3965), - [anon_sym_COLON_QMARK] = ACTIONS(3965), - [anon_sym_COLON_DASH] = ACTIONS(3965), - [anon_sym_PERCENT] = ACTIONS(3965), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1371] = { - [sym_concatenation] = STATE(1748), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1748), - [anon_sym_RBRACE] = ACTIONS(3971), - [anon_sym_EQ] = ACTIONS(3973), - [anon_sym_DASH] = ACTIONS(3973), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(3975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(3977), - [anon_sym_COLON] = ACTIONS(3973), - [anon_sym_COLON_QMARK] = ACTIONS(3973), - [anon_sym_COLON_DASH] = ACTIONS(3973), - [anon_sym_PERCENT] = ACTIONS(3973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1372] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1751), - [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(3979), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3981), - [anon_sym_SEMI_SEMI] = ACTIONS(3983), - [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(3983), - [anon_sym_AMP] = ACTIONS(3979), - }, - [1373] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1751), - [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(3979), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3981), - [anon_sym_SEMI_SEMI] = ACTIONS(3983), - [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(3983), - [anon_sym_AMP] = ACTIONS(3979), - }, - [1374] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1752), - [sym_for_statement] = STATE(1752), - [sym_c_style_for_statement] = STATE(1752), - [sym_while_statement] = STATE(1752), - [sym_if_statement] = STATE(1752), - [sym_case_statement] = STATE(1752), - [sym_function_definition] = STATE(1752), - [sym_compound_statement] = STATE(1752), - [sym_subshell] = STATE(1752), - [sym_pipeline] = STATE(1752), - [sym_list] = STATE(1752), - [sym_negated_command] = STATE(1752), - [sym_test_command] = STATE(1752), - [sym_declaration_command] = STATE(1752), - [sym_unset_command] = STATE(1752), - [sym_command] = STATE(1752), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(1753), - [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), - }, - [1375] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1755), - [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(3985), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(3987), - [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(3981), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3987), - [anon_sym_AMP] = ACTIONS(3985), - }, - [1376] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1755), - [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(3985), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(3987), - [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(3981), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(3987), - [anon_sym_AMP] = ACTIONS(3985), - }, - [1377] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1756), - [sym_for_statement] = STATE(1756), - [sym_c_style_for_statement] = STATE(1756), - [sym_while_statement] = STATE(1756), - [sym_if_statement] = STATE(1756), - [sym_case_statement] = STATE(1756), - [sym_function_definition] = STATE(1756), - [sym_compound_statement] = STATE(1756), - [sym_subshell] = STATE(1756), - [sym_pipeline] = STATE(1756), - [sym_list] = STATE(1756), - [sym_negated_command] = STATE(1756), - [sym_test_command] = STATE(1756), - [sym_declaration_command] = STATE(1756), - [sym_unset_command] = STATE(1756), - [sym_command] = STATE(1756), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(1757), - [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), - }, - [1378] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1760), - [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(3989), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3991), - [anon_sym_SEMI_SEMI] = ACTIONS(3993), - [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(3993), - [anon_sym_AMP] = ACTIONS(3989), - }, - [1379] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1760), - [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(3989), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(3991), - [anon_sym_SEMI_SEMI] = ACTIONS(3993), - [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(3993), - [anon_sym_AMP] = ACTIONS(3989), - }, - [1380] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(1761), - [sym_for_statement] = STATE(1761), - [sym_c_style_for_statement] = STATE(1761), - [sym_while_statement] = STATE(1761), - [sym_if_statement] = STATE(1761), - [sym_case_statement] = STATE(1761), - [sym_function_definition] = STATE(1761), - [sym_compound_statement] = STATE(1761), - [sym_subshell] = STATE(1761), - [sym_pipeline] = STATE(1761), - [sym_list] = STATE(1761), - [sym_negated_command] = STATE(1761), - [sym_test_command] = STATE(1761), - [sym_declaration_command] = STATE(1761), - [sym_unset_command] = STATE(1761), - [sym_command] = STATE(1761), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(1762), - [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), - }, - [1381] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(3995), - [sym_comment] = ACTIONS(57), - }, - [1382] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(3997), - [sym_comment] = ACTIONS(57), - }, - [1383] = { - [anon_sym_RBRACE] = ACTIONS(3997), - [sym_comment] = ACTIONS(57), - }, - [1384] = { - [sym_concatenation] = STATE(1766), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1766), - [anon_sym_RBRACE] = ACTIONS(3999), - [anon_sym_EQ] = ACTIONS(4001), - [anon_sym_DASH] = ACTIONS(4001), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4003), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4001), - [anon_sym_COLON_QMARK] = ACTIONS(4001), - [anon_sym_COLON_DASH] = ACTIONS(4001), - [anon_sym_PERCENT] = ACTIONS(4001), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1385] = { - [sym__simple_heredoc_body] = ACTIONS(4005), - [sym__heredoc_body_beginning] = ACTIONS(4005), - [sym_file_descriptor] = ACTIONS(4005), - [sym__concat] = ACTIONS(4005), - [ts_builtin_sym_end] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4007), - [anon_sym_RPAREN] = ACTIONS(4005), - [anon_sym_SEMI_SEMI] = ACTIONS(4005), - [anon_sym_PIPE_AMP] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4005), - [anon_sym_PIPE_PIPE] = ACTIONS(4005), - [anon_sym_EQ_TILDE] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(4007), - [anon_sym_GT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_AMP_GT] = ACTIONS(4007), - [anon_sym_AMP_GT_GT] = ACTIONS(4005), - [anon_sym_LT_AMP] = ACTIONS(4005), - [anon_sym_GT_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_LT_LT_DASH] = ACTIONS(4005), - [anon_sym_LT_LT_LT] = ACTIONS(4005), - [sym__special_characters] = ACTIONS(4005), - [anon_sym_DQUOTE] = ACTIONS(4005), - [anon_sym_DOLLAR] = ACTIONS(4007), - [sym_raw_string] = ACTIONS(4005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4005), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4005), - [anon_sym_BQUOTE] = ACTIONS(4005), - [anon_sym_LT_LPAREN] = ACTIONS(4005), - [anon_sym_GT_LPAREN] = ACTIONS(4005), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4007), - [anon_sym_LF] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4007), - }, - [1386] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3999), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1387] = { - [sym_concatenation] = STATE(1767), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1767), - [anon_sym_RBRACE] = ACTIONS(3997), - [anon_sym_EQ] = ACTIONS(4009), - [anon_sym_DASH] = ACTIONS(4009), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4011), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4009), - [anon_sym_COLON_QMARK] = ACTIONS(4009), - [anon_sym_COLON_DASH] = ACTIONS(4009), - [anon_sym_PERCENT] = ACTIONS(4009), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(3997), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym__concat] = ACTIONS(1730), - [anon_sym_RBRACE] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [sym__special_characters] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_POUND] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_COLON] = ACTIONS(1732), - [anon_sym_COLON_QMARK] = ACTIONS(1732), - [anon_sym_COLON_DASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1732), - }, - [1390] = { - [aux_sym_concatenation_repeat1] = STATE(1390), - [sym__concat] = ACTIONS(4013), - [anon_sym_RBRACE] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [sym__special_characters] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_POUND] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_COLON] = ACTIONS(1732), - [anon_sym_COLON_QMARK] = ACTIONS(1732), - [anon_sym_COLON_DASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1732), - }, - [1391] = { - [sym__concat] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_EQ] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [sym__special_characters] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1739), - [sym_raw_string] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(1737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1737), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_COLON_QMARK] = ACTIONS(1739), - [anon_sym_COLON_DASH] = ACTIONS(1739), - [anon_sym_PERCENT] = ACTIONS(1739), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1737), - [anon_sym_BQUOTE] = ACTIONS(1737), - [anon_sym_LT_LPAREN] = ACTIONS(1737), - [anon_sym_GT_LPAREN] = ACTIONS(1737), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1739), - }, - [1392] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(4016), - [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), - }, - [1393] = { - [sym_concatenation] = STATE(1772), - [sym_string] = STATE(1771), - [sym_simple_expansion] = STATE(1771), - [sym_string_expansion] = STATE(1771), - [sym_expansion] = STATE(1771), - [sym_command_substitution] = STATE(1771), - [sym_process_substitution] = STATE(1771), - [anon_sym_RBRACE] = ACTIONS(4018), - [sym__special_characters] = ACTIONS(4020), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(4022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4022), - }, - [1394] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(4024), - [sym_comment] = ACTIONS(57), - }, - [1395] = { - [sym_concatenation] = STATE(1776), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1776), - [anon_sym_RBRACE] = ACTIONS(4026), - [anon_sym_EQ] = ACTIONS(4028), - [anon_sym_DASH] = ACTIONS(4028), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4030), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(4032), - [anon_sym_COLON] = ACTIONS(4028), - [anon_sym_COLON_QMARK] = ACTIONS(4028), - [anon_sym_COLON_DASH] = ACTIONS(4028), - [anon_sym_PERCENT] = ACTIONS(4028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1396] = { - [sym_concatenation] = STATE(1778), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1778), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4034), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(4038), - [anon_sym_COLON] = ACTIONS(4034), - [anon_sym_COLON_QMARK] = ACTIONS(4034), - [anon_sym_COLON_DASH] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_EQ] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1840), - [sym__special_characters] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1840), - [sym_raw_string] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_COLON] = ACTIONS(1840), - [anon_sym_COLON_QMARK] = ACTIONS(1840), - [anon_sym_COLON_DASH] = ACTIONS(1840), - [anon_sym_PERCENT] = ACTIONS(1840), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_LT_LPAREN] = ACTIONS(1838), - [anon_sym_GT_LPAREN] = ACTIONS(1838), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1840), - }, - [1398] = { - [sym_concatenation] = STATE(1781), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1781), - [sym_regex] = ACTIONS(4040), - [anon_sym_RBRACE] = ACTIONS(4042), - [anon_sym_EQ] = ACTIONS(4044), - [anon_sym_DASH] = ACTIONS(4044), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4044), - [anon_sym_COLON_QMARK] = ACTIONS(4044), - [anon_sym_COLON_DASH] = ACTIONS(4044), - [anon_sym_PERCENT] = ACTIONS(4044), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1399] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4042), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1400] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_EQ] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_POUND] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1888), - [anon_sym_COLON_QMARK] = ACTIONS(1888), - [anon_sym_COLON_DASH] = ACTIONS(1888), - [anon_sym_PERCENT] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1888), - }, - [1401] = { - [sym_concatenation] = STATE(1778), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1778), - [sym_regex] = ACTIONS(4048), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4034), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4034), - [anon_sym_COLON_QMARK] = ACTIONS(4034), - [anon_sym_COLON_DASH] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1402] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1403] = { - [sym__simple_heredoc_body] = ACTIONS(4050), - [sym__heredoc_body_beginning] = ACTIONS(4050), - [sym_file_descriptor] = ACTIONS(4050), - [sym__concat] = ACTIONS(4050), - [ts_builtin_sym_end] = ACTIONS(4050), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_RPAREN] = ACTIONS(4050), - [anon_sym_SEMI_SEMI] = ACTIONS(4050), - [anon_sym_PIPE_AMP] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [anon_sym_EQ_TILDE] = ACTIONS(4052), - [anon_sym_EQ_EQ] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_GT_GT] = ACTIONS(4050), - [anon_sym_AMP_GT] = ACTIONS(4052), - [anon_sym_AMP_GT_GT] = ACTIONS(4050), - [anon_sym_LT_AMP] = ACTIONS(4050), - [anon_sym_GT_AMP] = ACTIONS(4050), - [anon_sym_LT_LT] = ACTIONS(4052), - [anon_sym_LT_LT_DASH] = ACTIONS(4050), - [anon_sym_LT_LT_LT] = ACTIONS(4050), - [sym__special_characters] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), - [anon_sym_LT_LPAREN] = ACTIONS(4050), - [anon_sym_GT_LPAREN] = ACTIONS(4050), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), - }, - [1404] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4054), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1405] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4056), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1406] = { - [sym__concat] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1896), - [sym__special_characters] = ACTIONS(1896), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1896), - [sym_raw_string] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), - [anon_sym_COLON] = ACTIONS(1896), - [anon_sym_COLON_QMARK] = ACTIONS(1896), - [anon_sym_COLON_DASH] = ACTIONS(1896), - [anon_sym_PERCENT] = ACTIONS(1896), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), - [anon_sym_BQUOTE] = ACTIONS(1894), - [anon_sym_LT_LPAREN] = ACTIONS(1894), - [anon_sym_GT_LPAREN] = ACTIONS(1894), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1896), - }, - [1407] = { - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4056), - [anon_sym_SEMI_SEMI] = ACTIONS(4060), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4060), - [anon_sym_AMP] = ACTIONS(4060), - }, - [1408] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1787), - [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(4062), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4056), - [anon_sym_SEMI_SEMI] = ACTIONS(4064), - [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(4064), - [anon_sym_AMP] = ACTIONS(4062), - }, - [1409] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1787), - [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(4062), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4056), - [anon_sym_SEMI_SEMI] = ACTIONS(4064), - [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(4064), - [anon_sym_AMP] = ACTIONS(4062), - }, - [1410] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(4056), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1411] = { - [anon_sym_SEMI] = ACTIONS(4066), - [anon_sym_SEMI_SEMI] = ACTIONS(4068), - [anon_sym_BQUOTE] = ACTIONS(4056), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4068), - [anon_sym_AMP] = ACTIONS(4068), - }, - [1412] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1790), - [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(4070), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(4072), - [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(4056), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4070), - }, - [1413] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1790), - [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(4070), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(4072), - [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(4056), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4070), - }, - [1414] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4074), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1415] = { - [sym__concat] = ACTIONS(1928), - [anon_sym_RBRACE] = ACTIONS(1928), - [anon_sym_EQ] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [sym__special_characters] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(1928), - [anon_sym_DOLLAR] = ACTIONS(1930), - [sym_raw_string] = ACTIONS(1928), - [anon_sym_POUND] = ACTIONS(1928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1928), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_COLON_QMARK] = ACTIONS(1930), - [anon_sym_COLON_DASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), - [anon_sym_BQUOTE] = ACTIONS(1928), - [anon_sym_LT_LPAREN] = ACTIONS(1928), - [anon_sym_GT_LPAREN] = ACTIONS(1928), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1930), - }, - [1416] = { - [anon_sym_SEMI] = ACTIONS(4076), - [anon_sym_RPAREN] = ACTIONS(4074), - [anon_sym_SEMI_SEMI] = ACTIONS(4078), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4078), - [anon_sym_AMP] = ACTIONS(4078), - }, - [1417] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1794), - [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(4080), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4074), - [anon_sym_SEMI_SEMI] = ACTIONS(4082), - [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(4082), - [anon_sym_AMP] = ACTIONS(4080), - }, - [1418] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1794), - [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(4080), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4074), - [anon_sym_SEMI_SEMI] = ACTIONS(4082), - [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(4082), - [anon_sym_AMP] = ACTIONS(4080), - }, - [1419] = { - [sym__simple_heredoc_body] = ACTIONS(4084), - [sym__heredoc_body_beginning] = ACTIONS(4084), - [sym_file_descriptor] = ACTIONS(4084), - [sym__concat] = ACTIONS(4084), - [ts_builtin_sym_end] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym_PIPE] = ACTIONS(4086), - [anon_sym_RPAREN] = ACTIONS(4084), - [anon_sym_SEMI_SEMI] = ACTIONS(4084), - [anon_sym_PIPE_AMP] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_EQ_TILDE] = ACTIONS(4086), - [anon_sym_EQ_EQ] = ACTIONS(4086), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_GT_GT] = ACTIONS(4084), - [anon_sym_AMP_GT] = ACTIONS(4086), - [anon_sym_AMP_GT_GT] = ACTIONS(4084), - [anon_sym_LT_AMP] = ACTIONS(4084), - [anon_sym_GT_AMP] = ACTIONS(4084), - [anon_sym_LT_LT] = ACTIONS(4086), - [anon_sym_LT_LT_DASH] = ACTIONS(4084), - [anon_sym_LT_LT_LT] = ACTIONS(4084), - [sym__special_characters] = ACTIONS(4084), - [anon_sym_DQUOTE] = ACTIONS(4084), - [anon_sym_DOLLAR] = ACTIONS(4086), - [sym_raw_string] = ACTIONS(4084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4084), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4084), - [anon_sym_BQUOTE] = ACTIONS(4084), - [anon_sym_LT_LPAREN] = ACTIONS(4084), - [anon_sym_GT_LPAREN] = ACTIONS(4084), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4086), - [anon_sym_LF] = ACTIONS(4084), - [anon_sym_AMP] = ACTIONS(4086), - }, - [1420] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4088), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1421] = { - [aux_sym_concatenation_repeat1] = STATE(1423), - [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), - }, - [1422] = { - [aux_sym_concatenation_repeat1] = STATE(1423), - [sym__simple_heredoc_body] = ACTIONS(1075), - [sym__heredoc_body_beginning] = ACTIONS(1075), - [sym_file_descriptor] = ACTIONS(1075), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1077), - [anon_sym_PIPE] = ACTIONS(1077), - [anon_sym_SEMI_SEMI] = ACTIONS(1075), - [anon_sym_PIPE_AMP] = ACTIONS(1075), - [anon_sym_AMP_AMP] = ACTIONS(1075), - [anon_sym_PIPE_PIPE] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1077), - [anon_sym_GT] = ACTIONS(1077), - [anon_sym_GT_GT] = ACTIONS(1075), - [anon_sym_AMP_GT] = ACTIONS(1077), - [anon_sym_AMP_GT_GT] = ACTIONS(1075), - [anon_sym_LT_AMP] = ACTIONS(1075), - [anon_sym_GT_AMP] = ACTIONS(1075), - [anon_sym_LT_LT] = ACTIONS(1077), - [anon_sym_LT_LT_DASH] = ACTIONS(1075), - [anon_sym_LT_LT_LT] = ACTIONS(1075), - [anon_sym_BQUOTE] = ACTIONS(1075), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1077), - }, - [1423] = { - [aux_sym_concatenation_repeat1] = STATE(1796), - [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), - }, - [1424] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(4088), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1425] = { - [sym__simple_heredoc_body] = ACTIONS(4090), - [sym__heredoc_body_beginning] = ACTIONS(4090), - [sym_file_descriptor] = ACTIONS(4090), - [sym__concat] = ACTIONS(4090), - [ts_builtin_sym_end] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4092), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_SEMI_SEMI] = ACTIONS(4090), - [anon_sym_PIPE_AMP] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_EQ_TILDE] = ACTIONS(4092), - [anon_sym_EQ_EQ] = ACTIONS(4092), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4090), - [anon_sym_AMP_GT] = ACTIONS(4092), - [anon_sym_AMP_GT_GT] = ACTIONS(4090), - [anon_sym_LT_AMP] = ACTIONS(4090), - [anon_sym_GT_AMP] = ACTIONS(4090), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_LT_LT_DASH] = ACTIONS(4090), - [anon_sym_LT_LT_LT] = ACTIONS(4090), - [sym__special_characters] = ACTIONS(4090), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4092), - [sym_raw_string] = ACTIONS(4090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4090), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4090), - [anon_sym_BQUOTE] = ACTIONS(4090), - [anon_sym_LT_LPAREN] = ACTIONS(4090), - [anon_sym_GT_LPAREN] = ACTIONS(4090), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4092), - [anon_sym_LF] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4092), - }, - [1426] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4094), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1427] = { - [sym_concatenation] = STATE(1801), - [sym_string] = STATE(1800), - [sym_simple_expansion] = STATE(1800), - [sym_string_expansion] = STATE(1800), - [sym_expansion] = STATE(1800), - [sym_command_substitution] = STATE(1800), - [sym_process_substitution] = STATE(1800), - [anon_sym_RBRACE] = ACTIONS(4096), - [sym__special_characters] = ACTIONS(4098), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(4100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4100), - }, - [1428] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(4102), - [sym_comment] = ACTIONS(57), - }, - [1429] = { - [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(4104), - [anon_sym_EQ] = ACTIONS(4106), - [anon_sym_DASH] = ACTIONS(4106), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(4110), - [anon_sym_COLON] = ACTIONS(4106), - [anon_sym_COLON_QMARK] = ACTIONS(4106), - [anon_sym_COLON_DASH] = ACTIONS(4106), - [anon_sym_PERCENT] = ACTIONS(4106), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1430] = { - [sym_concatenation] = STATE(1807), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1807), - [anon_sym_RBRACE] = ACTIONS(4096), - [anon_sym_EQ] = ACTIONS(4112), - [anon_sym_DASH] = ACTIONS(4112), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4114), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_COLON] = ACTIONS(4112), - [anon_sym_COLON_QMARK] = ACTIONS(4112), - [anon_sym_COLON_DASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1431] = { - [sym__heredoc_body_middle] = ACTIONS(1838), - [sym__heredoc_body_end] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1840), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [sym_comment] = ACTIONS(57), - }, - [1432] = { - [sym_concatenation] = STATE(1810), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1810), - [sym_regex] = ACTIONS(4118), - [anon_sym_RBRACE] = ACTIONS(4120), - [anon_sym_EQ] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4122), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4122), - [anon_sym_COLON_QMARK] = ACTIONS(4122), - [anon_sym_COLON_DASH] = ACTIONS(4122), - [anon_sym_PERCENT] = ACTIONS(4122), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1433] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4120), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1434] = { - [sym__heredoc_body_middle] = ACTIONS(1886), - [sym__heredoc_body_end] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [sym_comment] = ACTIONS(57), - }, - [1435] = { - [sym_concatenation] = STATE(1807), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1807), - [sym_regex] = ACTIONS(4126), - [anon_sym_RBRACE] = ACTIONS(4096), - [anon_sym_EQ] = ACTIONS(4112), - [anon_sym_DASH] = ACTIONS(4112), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4114), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4112), - [anon_sym_COLON_QMARK] = ACTIONS(4112), - [anon_sym_COLON_DASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1436] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4096), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1437] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4128), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1438] = { - [sym__heredoc_body_middle] = ACTIONS(1894), - [sym__heredoc_body_end] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), - [anon_sym_BQUOTE] = ACTIONS(1894), - [sym_comment] = ACTIONS(57), - }, - [1439] = { - [anon_sym_SEMI] = ACTIONS(4130), - [anon_sym_RPAREN] = ACTIONS(4128), - [anon_sym_SEMI_SEMI] = ACTIONS(4132), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4132), - [anon_sym_AMP] = ACTIONS(4132), - }, - [1440] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1815), - [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(4134), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4128), - [anon_sym_SEMI_SEMI] = ACTIONS(4136), - [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(4136), - [anon_sym_AMP] = ACTIONS(4134), - }, - [1441] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1815), - [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(4134), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4128), - [anon_sym_SEMI_SEMI] = ACTIONS(4136), - [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(4136), - [anon_sym_AMP] = ACTIONS(4134), - }, - [1442] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(4128), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1443] = { - [anon_sym_SEMI] = ACTIONS(4138), - [anon_sym_SEMI_SEMI] = ACTIONS(4140), - [anon_sym_BQUOTE] = ACTIONS(4128), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4140), - [anon_sym_AMP] = ACTIONS(4140), - }, - [1444] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1818), - [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(4142), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(4144), - [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(4128), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4144), - [anon_sym_AMP] = ACTIONS(4142), - }, - [1445] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1818), - [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(4142), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(4144), - [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(4128), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(4144), - [anon_sym_AMP] = ACTIONS(4142), - }, - [1446] = { - [aux_sym_concatenation_repeat1] = STATE(1446), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(1734), - [ts_builtin_sym_end] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [1447] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_done] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_fi] = ACTIONS(1992), - [anon_sym_elif] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_SEMI_SEMI] = ACTIONS(1988), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1448] = { - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_PLUS_EQ] = ACTIONS(4146), - [sym_comment] = ACTIONS(57), - }, - [1449] = { - [anon_sym_EQ] = ACTIONS(4148), - [anon_sym_PLUS_EQ] = ACTIONS(4148), - [sym_comment] = ACTIONS(57), - }, - [1450] = { - [sym__concat] = ACTIONS(1730), - [anon_sym_RPAREN] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1730), - }, - [1451] = { - [aux_sym_concatenation_repeat1] = STATE(1451), - [sym__concat] = ACTIONS(4150), - [anon_sym_RPAREN] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1730), - }, - [1452] = { - [sym__concat] = ACTIONS(1737), - [anon_sym_RPAREN] = ACTIONS(1737), - [sym__special_characters] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1739), - [sym_raw_string] = ACTIONS(1737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1737), - [anon_sym_BQUOTE] = ACTIONS(1737), - [anon_sym_LT_LPAREN] = ACTIONS(1737), - [anon_sym_GT_LPAREN] = ACTIONS(1737), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1737), - }, - [1453] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(4153), - [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), - }, - [1454] = { - [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(4155), - [sym__special_characters] = ACTIONS(4157), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(4159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4159), - }, - [1455] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(4161), - [sym_comment] = ACTIONS(57), - }, - [1456] = { - [sym_concatenation] = STATE(1827), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1827), - [anon_sym_RBRACE] = ACTIONS(4163), - [anon_sym_EQ] = ACTIONS(4165), - [anon_sym_DASH] = ACTIONS(4165), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4167), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_COLON] = ACTIONS(4165), - [anon_sym_COLON_QMARK] = ACTIONS(4165), - [anon_sym_COLON_DASH] = ACTIONS(4165), - [anon_sym_PERCENT] = ACTIONS(4165), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1457] = { - [sym_concatenation] = STATE(1829), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1829), - [anon_sym_RBRACE] = ACTIONS(4155), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_DASH] = ACTIONS(4171), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_COLON] = ACTIONS(4171), - [anon_sym_COLON_QMARK] = ACTIONS(4171), - [anon_sym_COLON_DASH] = ACTIONS(4171), - [anon_sym_PERCENT] = ACTIONS(4171), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1458] = { - [sym__concat] = ACTIONS(1838), - [anon_sym_RPAREN] = ACTIONS(1838), - [sym__special_characters] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1840), - [sym_raw_string] = ACTIONS(1838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_LT_LPAREN] = ACTIONS(1838), - [anon_sym_GT_LPAREN] = ACTIONS(1838), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1838), - }, - [1459] = { - [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), - [sym_regex] = ACTIONS(4177), - [anon_sym_RBRACE] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4181), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4183), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4181), - [anon_sym_COLON_QMARK] = ACTIONS(4181), - [anon_sym_COLON_DASH] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1460] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1461] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1886), - }, - [1462] = { - [sym_concatenation] = STATE(1829), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1829), - [sym_regex] = ACTIONS(4185), - [anon_sym_RBRACE] = ACTIONS(4155), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_DASH] = ACTIONS(4171), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4171), - [anon_sym_COLON_QMARK] = ACTIONS(4171), - [anon_sym_COLON_DASH] = ACTIONS(4171), - [anon_sym_PERCENT] = ACTIONS(4171), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1463] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4155), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1464] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4187), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1465] = { - [sym__concat] = ACTIONS(1894), - [anon_sym_RPAREN] = ACTIONS(1894), - [sym__special_characters] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1896), - [sym_raw_string] = ACTIONS(1894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), - [anon_sym_BQUOTE] = ACTIONS(1894), - [anon_sym_LT_LPAREN] = ACTIONS(1894), - [anon_sym_GT_LPAREN] = ACTIONS(1894), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1894), - }, - [1466] = { - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_RPAREN] = ACTIONS(4187), - [anon_sym_SEMI_SEMI] = ACTIONS(4191), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4191), - [anon_sym_AMP] = ACTIONS(4191), - }, - [1467] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1837), - [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(4193), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4187), - [anon_sym_SEMI_SEMI] = ACTIONS(4195), - [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(4195), - [anon_sym_AMP] = ACTIONS(4193), - }, - [1468] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1837), - [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(4193), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4187), - [anon_sym_SEMI_SEMI] = ACTIONS(4195), - [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(4195), - [anon_sym_AMP] = ACTIONS(4193), - }, - [1469] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(4187), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1470] = { - [anon_sym_SEMI] = ACTIONS(4197), - [anon_sym_SEMI_SEMI] = ACTIONS(4199), - [anon_sym_BQUOTE] = ACTIONS(4187), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4199), - [anon_sym_AMP] = ACTIONS(4199), - }, - [1471] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1840), - [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(4201), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(4203), - [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(4187), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4203), - [anon_sym_AMP] = ACTIONS(4201), - }, - [1472] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1840), - [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(4201), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(4203), - [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(4187), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(4203), - [anon_sym_AMP] = ACTIONS(4201), - }, - [1473] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4205), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1474] = { - [sym__concat] = ACTIONS(1928), - [anon_sym_RPAREN] = ACTIONS(1928), - [sym__special_characters] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1928), - [anon_sym_DOLLAR] = ACTIONS(1930), - [sym_raw_string] = ACTIONS(1928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), - [anon_sym_BQUOTE] = ACTIONS(1928), - [anon_sym_LT_LPAREN] = ACTIONS(1928), - [anon_sym_GT_LPAREN] = ACTIONS(1928), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1928), - }, - [1475] = { - [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), - }, - [1476] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1844), - [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(4211), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4205), - [anon_sym_SEMI_SEMI] = ACTIONS(4213), - [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(4213), - [anon_sym_AMP] = ACTIONS(4211), - }, - [1477] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1844), - [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(4211), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4205), - [anon_sym_SEMI_SEMI] = ACTIONS(4213), - [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(4213), - [anon_sym_AMP] = ACTIONS(4211), - }, - [1478] = { - [sym__simple_heredoc_body] = ACTIONS(2934), - [sym__heredoc_body_beginning] = ACTIONS(2934), - [sym_file_descriptor] = ACTIONS(2934), - [sym__concat] = ACTIONS(2934), - [sym_variable_name] = ACTIONS(2934), - [ts_builtin_sym_end] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_SEMI_SEMI] = ACTIONS(2934), - [anon_sym_PIPE_AMP] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_AMP_GT] = ACTIONS(2936), - [anon_sym_AMP_GT_GT] = ACTIONS(2934), - [anon_sym_LT_AMP] = ACTIONS(2934), - [anon_sym_GT_AMP] = ACTIONS(2934), - [anon_sym_LT_LT] = ACTIONS(2936), - [anon_sym_LT_LT_DASH] = ACTIONS(2934), - [anon_sym_LT_LT_LT] = ACTIONS(2934), - [sym__special_characters] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_LT_LPAREN] = ACTIONS(2934), - [anon_sym_GT_LPAREN] = ACTIONS(2934), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2936), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), - }, - [1479] = { - [sym__simple_heredoc_body] = ACTIONS(2948), - [sym__heredoc_body_beginning] = ACTIONS(2948), - [sym_file_descriptor] = ACTIONS(2948), - [sym__concat] = ACTIONS(2948), - [sym_variable_name] = ACTIONS(2948), - [ts_builtin_sym_end] = ACTIONS(2948), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_RPAREN] = ACTIONS(2948), - [anon_sym_SEMI_SEMI] = ACTIONS(2948), - [anon_sym_PIPE_AMP] = ACTIONS(2948), - [anon_sym_AMP_AMP] = ACTIONS(2948), - [anon_sym_PIPE_PIPE] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_GT_GT] = ACTIONS(2948), - [anon_sym_AMP_GT] = ACTIONS(2950), - [anon_sym_AMP_GT_GT] = ACTIONS(2948), - [anon_sym_LT_AMP] = ACTIONS(2948), - [anon_sym_GT_AMP] = ACTIONS(2948), - [anon_sym_LT_LT] = ACTIONS(2950), - [anon_sym_LT_LT_DASH] = ACTIONS(2948), - [anon_sym_LT_LT_LT] = ACTIONS(2948), - [sym__special_characters] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2948), - [anon_sym_BQUOTE] = ACTIONS(2948), - [anon_sym_LT_LPAREN] = ACTIONS(2948), - [anon_sym_GT_LPAREN] = ACTIONS(2948), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - }, - [1480] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4215), - [sym_comment] = ACTIONS(57), - }, - [1481] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4217), - [sym_comment] = ACTIONS(57), - }, - [1482] = { - [anon_sym_RBRACE] = ACTIONS(4217), - [sym_comment] = ACTIONS(57), - }, - [1483] = { - [sym_concatenation] = STATE(1849), - [sym_string] = STATE(1848), - [sym_simple_expansion] = STATE(1848), - [sym_string_expansion] = STATE(1848), - [sym_expansion] = STATE(1848), - [sym_command_substitution] = STATE(1848), - [sym_process_substitution] = STATE(1848), - [anon_sym_RBRACE] = ACTIONS(4217), - [sym__special_characters] = ACTIONS(4219), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(4221), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4221), - }, - [1484] = { - [sym__simple_heredoc_body] = ACTIONS(2984), - [sym__heredoc_body_beginning] = ACTIONS(2984), - [sym_file_descriptor] = ACTIONS(2984), - [sym__concat] = ACTIONS(2984), - [sym_variable_name] = ACTIONS(2984), - [ts_builtin_sym_end] = ACTIONS(2984), - [anon_sym_SEMI] = ACTIONS(2986), - [anon_sym_PIPE] = ACTIONS(2986), - [anon_sym_RPAREN] = ACTIONS(2984), - [anon_sym_SEMI_SEMI] = ACTIONS(2984), - [anon_sym_PIPE_AMP] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_GT] = ACTIONS(2986), - [anon_sym_GT_GT] = ACTIONS(2984), - [anon_sym_AMP_GT] = ACTIONS(2986), - [anon_sym_AMP_GT_GT] = ACTIONS(2984), - [anon_sym_LT_AMP] = ACTIONS(2984), - [anon_sym_GT_AMP] = ACTIONS(2984), - [anon_sym_LT_LT] = ACTIONS(2986), - [anon_sym_LT_LT_DASH] = ACTIONS(2984), - [anon_sym_LT_LT_LT] = ACTIONS(2984), - [sym__special_characters] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [sym_raw_string] = ACTIONS(2984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2984), - [anon_sym_BQUOTE] = ACTIONS(2984), - [anon_sym_LT_LPAREN] = ACTIONS(2984), - [anon_sym_GT_LPAREN] = ACTIONS(2984), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), - }, - [1485] = { - [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), - [sym_regex] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4225), - [anon_sym_EQ] = ACTIONS(4227), - [anon_sym_DASH] = ACTIONS(4227), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4229), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4227), - [anon_sym_COLON_QMARK] = ACTIONS(4227), - [anon_sym_COLON_DASH] = ACTIONS(4227), - [anon_sym_PERCENT] = ACTIONS(4227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1486] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4225), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1487] = { - [sym_concatenation] = STATE(1854), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1854), - [sym_regex] = ACTIONS(4231), - [anon_sym_RBRACE] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(4233), - [anon_sym_DASH] = ACTIONS(4233), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4233), - [anon_sym_COLON_QMARK] = ACTIONS(4233), - [anon_sym_COLON_DASH] = ACTIONS(4233), - [anon_sym_PERCENT] = ACTIONS(4233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1488] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1489] = { - [sym_concatenation] = STATE(1856), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1856), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_EQ] = ACTIONS(4239), - [anon_sym_DASH] = ACTIONS(4239), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4239), - [anon_sym_COLON_QMARK] = ACTIONS(4239), - [anon_sym_COLON_DASH] = ACTIONS(4239), - [anon_sym_PERCENT] = ACTIONS(4239), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1490] = { - [sym__simple_heredoc_body] = ACTIONS(3040), - [sym__heredoc_body_beginning] = ACTIONS(3040), - [sym_file_descriptor] = ACTIONS(3040), - [sym__concat] = ACTIONS(3040), - [sym_variable_name] = ACTIONS(3040), - [ts_builtin_sym_end] = ACTIONS(3040), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_RPAREN] = ACTIONS(3040), - [anon_sym_SEMI_SEMI] = ACTIONS(3040), - [anon_sym_PIPE_AMP] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_GT_GT] = ACTIONS(3040), - [anon_sym_AMP_GT] = ACTIONS(3042), - [anon_sym_AMP_GT_GT] = ACTIONS(3040), - [anon_sym_LT_AMP] = ACTIONS(3040), - [anon_sym_GT_AMP] = ACTIONS(3040), - [anon_sym_LT_LT] = ACTIONS(3042), - [anon_sym_LT_LT_DASH] = ACTIONS(3040), - [anon_sym_LT_LT_LT] = ACTIONS(3040), - [sym__special_characters] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [sym_raw_string] = ACTIONS(3040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), - [anon_sym_BQUOTE] = ACTIONS(3040), - [anon_sym_LT_LPAREN] = ACTIONS(3040), - [anon_sym_GT_LPAREN] = ACTIONS(3040), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3042), - [anon_sym_LF] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - }, - [1491] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1492] = { - [sym_concatenation] = STATE(1854), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1854), - [anon_sym_RBRACE] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(4233), - [anon_sym_DASH] = ACTIONS(4233), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4233), - [anon_sym_COLON_QMARK] = ACTIONS(4233), - [anon_sym_COLON_DASH] = ACTIONS(4233), - [anon_sym_PERCENT] = ACTIONS(4233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1493] = { - [sym__simple_heredoc_body] = ACTIONS(3095), - [sym__heredoc_body_beginning] = ACTIONS(3095), - [sym_file_descriptor] = ACTIONS(3095), - [sym__concat] = ACTIONS(3095), - [sym_variable_name] = ACTIONS(3095), - [ts_builtin_sym_end] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_AMP_GT] = ACTIONS(3097), - [anon_sym_AMP_GT_GT] = ACTIONS(3095), - [anon_sym_LT_AMP] = ACTIONS(3095), - [anon_sym_GT_AMP] = ACTIONS(3095), - [anon_sym_LT_LT] = ACTIONS(3097), - [anon_sym_LT_LT_DASH] = ACTIONS(3095), - [anon_sym_LT_LT_LT] = ACTIONS(3095), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [sym_raw_string] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), - [anon_sym_BQUOTE] = ACTIONS(3095), - [anon_sym_LT_LPAREN] = ACTIONS(3095), - [anon_sym_GT_LPAREN] = ACTIONS(3095), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3097), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - }, - [1494] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4243), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1495] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4243), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1496] = { - [anon_sym_SEMI] = ACTIONS(4245), - [anon_sym_RPAREN] = ACTIONS(4243), - [anon_sym_SEMI_SEMI] = ACTIONS(4247), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4247), - [anon_sym_AMP] = ACTIONS(4247), - }, - [1497] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(4243), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1498] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(4243), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1499] = { - [anon_sym_SEMI] = ACTIONS(4249), - [anon_sym_SEMI_SEMI] = ACTIONS(4251), - [anon_sym_BQUOTE] = ACTIONS(4243), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4251), - [anon_sym_AMP] = ACTIONS(4251), - }, - [1500] = { - [sym__simple_heredoc_body] = ACTIONS(3125), - [sym__heredoc_body_beginning] = ACTIONS(3125), - [sym_file_descriptor] = ACTIONS(3125), - [sym__concat] = ACTIONS(3125), - [sym_variable_name] = ACTIONS(3125), - [ts_builtin_sym_end] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_RPAREN] = ACTIONS(3125), - [anon_sym_SEMI_SEMI] = ACTIONS(3125), - [anon_sym_PIPE_AMP] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_AMP_GT] = ACTIONS(3127), - [anon_sym_AMP_GT_GT] = ACTIONS(3125), - [anon_sym_LT_AMP] = ACTIONS(3125), - [anon_sym_GT_AMP] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_LT_LT_DASH] = ACTIONS(3125), - [anon_sym_LT_LT_LT] = ACTIONS(3125), - [sym__special_characters] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [anon_sym_DOLLAR] = ACTIONS(3127), - [sym_raw_string] = ACTIONS(3125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3125), - [anon_sym_BQUOTE] = ACTIONS(3125), - [anon_sym_LT_LPAREN] = ACTIONS(3125), - [anon_sym_GT_LPAREN] = ACTIONS(3125), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3127), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - }, - [1501] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4253), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1502] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4253), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1503] = { - [anon_sym_SEMI] = ACTIONS(4255), - [anon_sym_RPAREN] = ACTIONS(4253), - [anon_sym_SEMI_SEMI] = ACTIONS(4257), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4257), - [anon_sym_AMP] = ACTIONS(4257), - }, - [1504] = { - [sym_do_group] = STATE(1862), - [sym_compound_statement] = STATE(1862), - [anon_sym_do] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(25), - [sym_comment] = ACTIONS(57), - }, - [1505] = { - [sym__simple_heredoc_body] = ACTIONS(4259), - [sym__heredoc_body_beginning] = ACTIONS(4259), - [sym_file_descriptor] = ACTIONS(4259), - [ts_builtin_sym_end] = ACTIONS(4259), - [anon_sym_SEMI] = ACTIONS(4261), - [anon_sym_esac] = ACTIONS(4259), - [anon_sym_PIPE] = ACTIONS(4261), - [anon_sym_RPAREN] = ACTIONS(4259), - [anon_sym_SEMI_SEMI] = ACTIONS(4259), - [anon_sym_PIPE_AMP] = ACTIONS(4259), - [anon_sym_AMP_AMP] = ACTIONS(4259), - [anon_sym_PIPE_PIPE] = ACTIONS(4259), - [anon_sym_LT] = ACTIONS(4261), - [anon_sym_GT] = ACTIONS(4261), - [anon_sym_GT_GT] = ACTIONS(4259), - [anon_sym_AMP_GT] = ACTIONS(4261), - [anon_sym_AMP_GT_GT] = ACTIONS(4259), - [anon_sym_LT_AMP] = ACTIONS(4259), - [anon_sym_GT_AMP] = ACTIONS(4259), - [anon_sym_LT_LT] = ACTIONS(4261), - [anon_sym_LT_LT_DASH] = ACTIONS(4259), - [anon_sym_LT_LT_LT] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4259), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4259), - [anon_sym_AMP] = ACTIONS(4261), - }, - [1506] = { - [sym_do_group] = STATE(1862), - [sym_compound_statement] = STATE(1862), - [anon_sym_SEMI] = ACTIONS(4263), - [anon_sym_do] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(25), - [sym_comment] = ACTIONS(57), - }, - [1507] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(4265), - [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), - }, - [1508] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_SEMI_SEMI] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_EQ_TILDE] = ACTIONS(2934), - [anon_sym_EQ_EQ] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2936), - [anon_sym_PLUS_EQ] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_BANG_EQ] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2936), - [anon_sym_DASH] = ACTIONS(2936), - [anon_sym_DASH_EQ] = ACTIONS(2934), - [anon_sym_LT_EQ] = ACTIONS(2934), - [anon_sym_GT_EQ] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2934), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2934), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), - }, - [1509] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_SEMI_SEMI] = ACTIONS(2948), - [anon_sym_AMP_AMP] = ACTIONS(2948), - [anon_sym_PIPE_PIPE] = ACTIONS(2948), - [anon_sym_EQ_TILDE] = ACTIONS(2948), - [anon_sym_EQ_EQ] = ACTIONS(2948), - [anon_sym_EQ] = ACTIONS(2950), - [anon_sym_PLUS_EQ] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_DASH_EQ] = ACTIONS(2948), - [anon_sym_LT_EQ] = ACTIONS(2948), - [anon_sym_GT_EQ] = ACTIONS(2948), - [anon_sym_PLUS_PLUS] = ACTIONS(2948), - [anon_sym_DASH_DASH] = ACTIONS(2948), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2948), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - }, - [1510] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4267), - [sym_comment] = ACTIONS(57), - }, - [1511] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4269), - [sym_comment] = ACTIONS(57), - }, - [1512] = { - [anon_sym_RBRACE] = ACTIONS(4269), - [sym_comment] = ACTIONS(57), - }, - [1513] = { - [sym_concatenation] = STATE(1869), - [sym_string] = STATE(1868), - [sym_simple_expansion] = STATE(1868), - [sym_string_expansion] = STATE(1868), - [sym_expansion] = STATE(1868), - [sym_command_substitution] = STATE(1868), - [sym_process_substitution] = STATE(1868), - [anon_sym_RBRACE] = ACTIONS(4269), - [sym__special_characters] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(4273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4273), - }, - [1514] = { - [sym__concat] = ACTIONS(2984), - [anon_sym_SEMI] = ACTIONS(2986), - [anon_sym_SEMI_SEMI] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_EQ_TILDE] = ACTIONS(2984), - [anon_sym_EQ_EQ] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2986), - [anon_sym_PLUS_EQ] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_GT] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_DASH_EQ] = ACTIONS(2984), - [anon_sym_LT_EQ] = ACTIONS(2984), - [anon_sym_GT_EQ] = ACTIONS(2984), - [anon_sym_PLUS_PLUS] = ACTIONS(2984), - [anon_sym_DASH_DASH] = ACTIONS(2984), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2984), - [anon_sym_LF] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), - }, - [1515] = { - [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(4275), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_EQ] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_COLON_QMARK] = ACTIONS(4279), - [anon_sym_COLON_DASH] = ACTIONS(4279), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1516] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4277), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1517] = { - [sym_concatenation] = STATE(1874), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1874), - [sym_regex] = ACTIONS(4283), - [anon_sym_RBRACE] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(4285), - [anon_sym_DASH] = ACTIONS(4285), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4287), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4285), - [anon_sym_COLON_QMARK] = ACTIONS(4285), - [anon_sym_COLON_DASH] = ACTIONS(4285), - [anon_sym_PERCENT] = ACTIONS(4285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1518] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1519] = { - [sym_concatenation] = STATE(1876), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1876), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [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(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1520] = { - [sym__concat] = ACTIONS(3040), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_SEMI_SEMI] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_EQ_TILDE] = ACTIONS(3040), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ] = ACTIONS(3042), - [anon_sym_PLUS_EQ] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_DASH_EQ] = ACTIONS(3040), - [anon_sym_LT_EQ] = ACTIONS(3040), - [anon_sym_GT_EQ] = ACTIONS(3040), - [anon_sym_PLUS_PLUS] = ACTIONS(3040), - [anon_sym_DASH_DASH] = ACTIONS(3040), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3040), - [anon_sym_LF] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - }, - [1521] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1522] = { - [sym_concatenation] = STATE(1874), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1874), - [anon_sym_RBRACE] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(4285), - [anon_sym_DASH] = ACTIONS(4285), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4287), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4285), - [anon_sym_COLON_QMARK] = ACTIONS(4285), - [anon_sym_COLON_DASH] = ACTIONS(4285), - [anon_sym_PERCENT] = ACTIONS(4285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1523] = { - [sym__concat] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_EQ_TILDE] = ACTIONS(3095), - [anon_sym_EQ_EQ] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_PLUS_EQ] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_BANG_EQ] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_DASH_EQ] = ACTIONS(3095), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3095), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - }, - [1524] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4295), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1525] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4295), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1526] = { - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_RPAREN] = ACTIONS(4295), - [anon_sym_SEMI_SEMI] = ACTIONS(4299), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(4299), - }, - [1527] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(4295), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1528] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(4295), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1529] = { - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_SEMI_SEMI] = ACTIONS(4303), - [anon_sym_BQUOTE] = ACTIONS(4295), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4303), - [anon_sym_AMP] = ACTIONS(4303), - }, - [1530] = { - [sym__concat] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_SEMI_SEMI] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_EQ_TILDE] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ] = ACTIONS(3127), - [anon_sym_PLUS_EQ] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3125), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - }, - [1531] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4305), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1532] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4305), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1533] = { - [anon_sym_SEMI] = ACTIONS(4307), - [anon_sym_RPAREN] = ACTIONS(4305), - [anon_sym_SEMI_SEMI] = ACTIONS(4309), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4309), - [anon_sym_AMP] = ACTIONS(4309), - }, - [1534] = { - [sym__expression] = STATE(1882), - [sym_binary_expression] = STATE(1882), - [sym_unary_expression] = STATE(1882), - [sym_postfix_expression] = STATE(1882), - [sym_parenthesized_expression] = STATE(1882), - [sym_concatenation] = STATE(1882), - [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(4265), - [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), - }, - [1535] = { - [sym__concat] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1730), - }, - [1536] = { - [aux_sym_concatenation_repeat1] = STATE(1536), - [sym__concat] = ACTIONS(4311), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1730), - }, - [1537] = { - [sym__concat] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_SEMI_SEMI] = ACTIONS(1737), - [sym__special_characters] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1739), - [sym_raw_string] = ACTIONS(1737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1737), - [anon_sym_BQUOTE] = ACTIONS(1737), - [anon_sym_LT_LPAREN] = ACTIONS(1737), - [anon_sym_GT_LPAREN] = ACTIONS(1737), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1739), - [anon_sym_LF] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1737), - }, - [1538] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(4314), - [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), - }, - [1539] = { - [sym_concatenation] = STATE(1887), - [sym_string] = STATE(1886), - [sym_simple_expansion] = STATE(1886), - [sym_string_expansion] = STATE(1886), - [sym_expansion] = STATE(1886), - [sym_command_substitution] = STATE(1886), - [sym_process_substitution] = STATE(1886), - [anon_sym_RBRACE] = ACTIONS(4316), - [sym__special_characters] = ACTIONS(4318), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(4320), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4320), - }, - [1540] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(4322), - [sym_comment] = ACTIONS(57), - }, - [1541] = { - [sym_concatenation] = STATE(1891), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1891), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_DASH] = ACTIONS(4326), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4328), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(4330), - [anon_sym_COLON] = ACTIONS(4326), - [anon_sym_COLON_QMARK] = ACTIONS(4326), - [anon_sym_COLON_DASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1542] = { - [sym_concatenation] = STATE(1893), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1893), - [anon_sym_RBRACE] = ACTIONS(4316), - [anon_sym_EQ] = ACTIONS(4332), - [anon_sym_DASH] = ACTIONS(4332), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4334), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(4336), - [anon_sym_COLON] = ACTIONS(4332), - [anon_sym_COLON_QMARK] = ACTIONS(4332), - [anon_sym_COLON_DASH] = ACTIONS(4332), - [anon_sym_PERCENT] = ACTIONS(4332), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1543] = { - [sym__concat] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_SEMI_SEMI] = ACTIONS(1838), - [sym__special_characters] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1840), - [sym_raw_string] = ACTIONS(1838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_LT_LPAREN] = ACTIONS(1838), - [anon_sym_GT_LPAREN] = ACTIONS(1838), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1840), - [anon_sym_LF] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - }, - [1544] = { - [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), - [sym_regex] = ACTIONS(4338), - [anon_sym_RBRACE] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4342), - [anon_sym_DASH] = ACTIONS(4342), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4344), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4342), - [anon_sym_COLON_QMARK] = ACTIONS(4342), - [anon_sym_COLON_DASH] = ACTIONS(4342), - [anon_sym_PERCENT] = ACTIONS(4342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1545] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1546] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1886), - }, - [1547] = { - [sym_concatenation] = STATE(1893), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1893), - [sym_regex] = ACTIONS(4346), - [anon_sym_RBRACE] = ACTIONS(4316), - [anon_sym_EQ] = ACTIONS(4332), - [anon_sym_DASH] = ACTIONS(4332), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4334), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4332), - [anon_sym_COLON_QMARK] = ACTIONS(4332), - [anon_sym_COLON_DASH] = ACTIONS(4332), - [anon_sym_PERCENT] = ACTIONS(4332), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1548] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4316), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1549] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4348), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1550] = { - [sym__concat] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_SEMI_SEMI] = ACTIONS(1894), - [sym__special_characters] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1896), - [sym_raw_string] = ACTIONS(1894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), - [anon_sym_BQUOTE] = ACTIONS(1894), - [anon_sym_LT_LPAREN] = ACTIONS(1894), - [anon_sym_GT_LPAREN] = ACTIONS(1894), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1896), - [anon_sym_LF] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1894), - }, - [1551] = { - [anon_sym_SEMI] = ACTIONS(4350), - [anon_sym_RPAREN] = ACTIONS(4348), - [anon_sym_SEMI_SEMI] = ACTIONS(4352), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4352), - [anon_sym_AMP] = ACTIONS(4352), - }, - [1552] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1901), - [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(4354), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4348), - [anon_sym_SEMI_SEMI] = ACTIONS(4356), - [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(4356), - [anon_sym_AMP] = ACTIONS(4354), - }, - [1553] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1901), - [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(4354), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4348), - [anon_sym_SEMI_SEMI] = ACTIONS(4356), - [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(4356), - [anon_sym_AMP] = ACTIONS(4354), - }, - [1554] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(4348), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1555] = { - [anon_sym_SEMI] = ACTIONS(4358), - [anon_sym_SEMI_SEMI] = ACTIONS(4360), - [anon_sym_BQUOTE] = ACTIONS(4348), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4360), - [anon_sym_AMP] = ACTIONS(4360), - }, - [1556] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1904), - [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(4362), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(4364), - [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(4348), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4364), - [anon_sym_AMP] = ACTIONS(4362), - }, - [1557] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(1904), - [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(4362), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(4364), - [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(4348), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(4364), - [anon_sym_AMP] = ACTIONS(4362), - }, - [1558] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4366), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1559] = { - [sym__concat] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [sym__special_characters] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1928), - [anon_sym_DOLLAR] = ACTIONS(1930), - [sym_raw_string] = ACTIONS(1928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), - [anon_sym_BQUOTE] = ACTIONS(1928), - [anon_sym_LT_LPAREN] = ACTIONS(1928), - [anon_sym_GT_LPAREN] = ACTIONS(1928), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1930), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1928), - }, - [1560] = { - [anon_sym_SEMI] = ACTIONS(4368), - [anon_sym_RPAREN] = ACTIONS(4366), - [anon_sym_SEMI_SEMI] = ACTIONS(4370), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4370), - [anon_sym_AMP] = ACTIONS(4370), - }, - [1561] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1908), - [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(4372), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4366), - [anon_sym_SEMI_SEMI] = ACTIONS(4374), - [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(4374), - [anon_sym_AMP] = ACTIONS(4372), - }, - [1562] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(1908), - [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(4372), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4366), - [anon_sym_SEMI_SEMI] = ACTIONS(4374), - [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(4374), - [anon_sym_AMP] = ACTIONS(4372), - }, - [1563] = { - [sym__simple_heredoc_body] = ACTIONS(4376), - [sym__heredoc_body_beginning] = ACTIONS(4376), - [sym_file_descriptor] = ACTIONS(4376), - [ts_builtin_sym_end] = ACTIONS(4376), - [anon_sym_SEMI] = ACTIONS(4378), - [anon_sym_esac] = ACTIONS(4376), - [anon_sym_PIPE] = ACTIONS(4378), - [anon_sym_RPAREN] = ACTIONS(4376), - [anon_sym_SEMI_SEMI] = ACTIONS(4376), - [anon_sym_PIPE_AMP] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4376), - [anon_sym_PIPE_PIPE] = ACTIONS(4376), - [anon_sym_LT] = ACTIONS(4378), - [anon_sym_GT] = ACTIONS(4378), - [anon_sym_GT_GT] = ACTIONS(4376), - [anon_sym_AMP_GT] = ACTIONS(4378), - [anon_sym_AMP_GT_GT] = ACTIONS(4376), - [anon_sym_LT_AMP] = ACTIONS(4376), - [anon_sym_GT_AMP] = ACTIONS(4376), - [anon_sym_LT_LT] = ACTIONS(4378), - [anon_sym_LT_LT_DASH] = ACTIONS(4376), - [anon_sym_LT_LT_LT] = ACTIONS(4376), - [anon_sym_BQUOTE] = ACTIONS(4376), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4376), - [anon_sym_AMP] = ACTIONS(4378), - }, - [1564] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_EQ_TILDE] = ACTIONS(2934), - [anon_sym_EQ_EQ] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2936), - [anon_sym_PLUS_EQ] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_BANG_EQ] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2936), - [anon_sym_DASH] = ACTIONS(2936), - [anon_sym_DASH_EQ] = ACTIONS(2934), - [anon_sym_LT_EQ] = ACTIONS(2934), - [anon_sym_GT_EQ] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2934), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2934), - }, - [1565] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_RPAREN] = ACTIONS(2948), - [anon_sym_AMP_AMP] = ACTIONS(2948), - [anon_sym_PIPE_PIPE] = ACTIONS(2948), - [anon_sym_EQ_TILDE] = ACTIONS(2948), - [anon_sym_EQ_EQ] = ACTIONS(2948), - [anon_sym_EQ] = ACTIONS(2950), - [anon_sym_PLUS_EQ] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_DASH_EQ] = ACTIONS(2948), - [anon_sym_LT_EQ] = ACTIONS(2948), - [anon_sym_GT_EQ] = ACTIONS(2948), - [anon_sym_PLUS_PLUS] = ACTIONS(2948), - [anon_sym_DASH_DASH] = ACTIONS(2948), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2948), - }, - [1566] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4380), - [sym_comment] = ACTIONS(57), - }, - [1567] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4382), - [sym_comment] = ACTIONS(57), - }, - [1568] = { - [anon_sym_RBRACE] = ACTIONS(4382), - [sym_comment] = ACTIONS(57), - }, - [1569] = { - [sym_concatenation] = STATE(1913), - [sym_string] = STATE(1912), - [sym_simple_expansion] = STATE(1912), - [sym_string_expansion] = STATE(1912), - [sym_expansion] = STATE(1912), - [sym_command_substitution] = STATE(1912), - [sym_process_substitution] = STATE(1912), - [anon_sym_RBRACE] = ACTIONS(4382), - [sym__special_characters] = ACTIONS(4384), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(4386), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4386), - }, - [1570] = { - [sym__concat] = ACTIONS(2984), - [anon_sym_PIPE] = ACTIONS(2986), - [anon_sym_RPAREN] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_EQ_TILDE] = ACTIONS(2984), - [anon_sym_EQ_EQ] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2986), - [anon_sym_PLUS_EQ] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_GT] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_DASH_EQ] = ACTIONS(2984), - [anon_sym_LT_EQ] = ACTIONS(2984), - [anon_sym_GT_EQ] = ACTIONS(2984), - [anon_sym_PLUS_PLUS] = ACTIONS(2984), - [anon_sym_DASH_DASH] = ACTIONS(2984), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(2984), - }, - [1571] = { - [sym_concatenation] = STATE(1916), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1916), - [sym_regex] = ACTIONS(4388), - [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), - }, - [1572] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4390), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1573] = { - [sym_concatenation] = STATE(1918), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1918), - [sym_regex] = ACTIONS(4396), - [anon_sym_RBRACE] = ACTIONS(4382), - [anon_sym_EQ] = ACTIONS(4398), - [anon_sym_DASH] = ACTIONS(4398), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4398), - [anon_sym_COLON_QMARK] = ACTIONS(4398), - [anon_sym_COLON_DASH] = ACTIONS(4398), - [anon_sym_PERCENT] = ACTIONS(4398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1574] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4382), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1575] = { - [sym_concatenation] = STATE(1920), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1920), - [anon_sym_RBRACE] = ACTIONS(4402), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_DASH] = ACTIONS(4404), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4406), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4404), - [anon_sym_COLON_DASH] = ACTIONS(4404), - [anon_sym_PERCENT] = ACTIONS(4404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1576] = { - [sym__concat] = ACTIONS(3040), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_RPAREN] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_EQ_TILDE] = ACTIONS(3040), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ] = ACTIONS(3042), - [anon_sym_PLUS_EQ] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_DASH_EQ] = ACTIONS(3040), - [anon_sym_LT_EQ] = ACTIONS(3040), - [anon_sym_GT_EQ] = ACTIONS(3040), - [anon_sym_PLUS_PLUS] = ACTIONS(3040), - [anon_sym_DASH_DASH] = ACTIONS(3040), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3040), - }, - [1577] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4402), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1578] = { - [sym_concatenation] = STATE(1918), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1918), - [anon_sym_RBRACE] = ACTIONS(4382), - [anon_sym_EQ] = ACTIONS(4398), - [anon_sym_DASH] = ACTIONS(4398), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4398), - [anon_sym_COLON_QMARK] = ACTIONS(4398), - [anon_sym_COLON_DASH] = ACTIONS(4398), - [anon_sym_PERCENT] = ACTIONS(4398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__concat] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_EQ_TILDE] = ACTIONS(3095), - [anon_sym_EQ_EQ] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_PLUS_EQ] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_BANG_EQ] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_DASH_EQ] = ACTIONS(3095), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3095), - }, - [1580] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4408), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1581] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4408), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1582] = { - [anon_sym_SEMI] = ACTIONS(4410), - [anon_sym_RPAREN] = ACTIONS(4408), - [anon_sym_SEMI_SEMI] = ACTIONS(4412), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4412), - [anon_sym_AMP] = ACTIONS(4412), - }, - [1583] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(4408), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1584] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(4408), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1585] = { - [anon_sym_SEMI] = ACTIONS(4414), - [anon_sym_SEMI_SEMI] = ACTIONS(4416), - [anon_sym_BQUOTE] = ACTIONS(4408), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4416), - [anon_sym_AMP] = ACTIONS(4416), - }, - [1586] = { - [sym__concat] = ACTIONS(3125), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_RPAREN] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_EQ_TILDE] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ] = ACTIONS(3127), - [anon_sym_PLUS_EQ] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3125), - }, - [1587] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4418), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1588] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4418), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1589] = { - [anon_sym_SEMI] = ACTIONS(4420), - [anon_sym_RPAREN] = ACTIONS(4418), - [anon_sym_SEMI_SEMI] = ACTIONS(4422), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4422), - [anon_sym_AMP] = ACTIONS(4422), - }, - [1590] = { - [sym__concat] = ACTIONS(3941), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3941), - [anon_sym_EQ_TILDE] = ACTIONS(3941), - [anon_sym_EQ_EQ] = ACTIONS(3941), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_PLUS_EQ] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_BANG_EQ] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_DASH_EQ] = ACTIONS(3941), - [anon_sym_LT_EQ] = ACTIONS(3941), - [anon_sym_GT_EQ] = ACTIONS(3941), - [anon_sym_PLUS_PLUS] = ACTIONS(3941), - [anon_sym_DASH_DASH] = ACTIONS(3941), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3941), - }, - [1591] = { - [sym__concat] = ACTIONS(3949), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3949), - [anon_sym_PIPE_PIPE] = ACTIONS(3949), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3949), - [anon_sym_EQ_TILDE] = ACTIONS(3949), - [anon_sym_EQ_EQ] = ACTIONS(3949), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3949), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_BANG_EQ] = ACTIONS(3949), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_DASH_EQ] = ACTIONS(3949), - [anon_sym_LT_EQ] = ACTIONS(3949), - [anon_sym_GT_EQ] = ACTIONS(3949), - [anon_sym_PLUS_PLUS] = ACTIONS(3949), - [anon_sym_DASH_DASH] = ACTIONS(3949), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3949), - }, - [1592] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4424), - [sym_comment] = ACTIONS(57), - }, - [1593] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4426), - [sym_comment] = ACTIONS(57), - }, - [1594] = { - [anon_sym_RBRACE] = ACTIONS(4426), - [sym_comment] = ACTIONS(57), - }, - [1595] = { - [sym_concatenation] = STATE(1929), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1929), - [anon_sym_RBRACE] = ACTIONS(4428), - [anon_sym_EQ] = ACTIONS(4430), - [anon_sym_DASH] = ACTIONS(4430), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4432), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4430), - [anon_sym_COLON_QMARK] = ACTIONS(4430), - [anon_sym_COLON_DASH] = ACTIONS(4430), - [anon_sym_PERCENT] = ACTIONS(4430), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1596] = { - [sym__concat] = ACTIONS(4005), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4005), - [anon_sym_PIPE_PIPE] = ACTIONS(4005), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4005), - [anon_sym_EQ_TILDE] = ACTIONS(4005), - [anon_sym_EQ_EQ] = ACTIONS(4005), - [anon_sym_EQ] = ACTIONS(4007), - [anon_sym_PLUS_EQ] = ACTIONS(4005), - [anon_sym_LT] = ACTIONS(4007), - [anon_sym_GT] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4005), - [anon_sym_PLUS] = ACTIONS(4007), - [anon_sym_DASH] = ACTIONS(4007), - [anon_sym_DASH_EQ] = ACTIONS(4005), - [anon_sym_LT_EQ] = ACTIONS(4005), - [anon_sym_GT_EQ] = ACTIONS(4005), - [anon_sym_PLUS_PLUS] = ACTIONS(4005), - [anon_sym_DASH_DASH] = ACTIONS(4005), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4005), - }, - [1597] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4428), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1598] = { - [sym_concatenation] = STATE(1930), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(1930), - [anon_sym_RBRACE] = ACTIONS(4426), - [anon_sym_EQ] = ACTIONS(4434), - [anon_sym_DASH] = ACTIONS(4434), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4436), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4434), - [anon_sym_COLON_QMARK] = ACTIONS(4434), - [anon_sym_COLON_DASH] = ACTIONS(4434), - [anon_sym_PERCENT] = ACTIONS(4434), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1599] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4426), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1600] = { - [sym__concat] = ACTIONS(4050), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4050), - [anon_sym_EQ_TILDE] = ACTIONS(4050), - [anon_sym_EQ_EQ] = ACTIONS(4050), - [anon_sym_EQ] = ACTIONS(4052), - [anon_sym_PLUS_EQ] = ACTIONS(4050), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_BANG_EQ] = ACTIONS(4050), - [anon_sym_PLUS] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_DASH_EQ] = ACTIONS(4050), - [anon_sym_LT_EQ] = ACTIONS(4050), - [anon_sym_GT_EQ] = ACTIONS(4050), - [anon_sym_PLUS_PLUS] = ACTIONS(4050), - [anon_sym_DASH_DASH] = ACTIONS(4050), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4050), - }, - [1601] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4438), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1602] = { - [sym__concat] = ACTIONS(4084), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4084), - [anon_sym_EQ_TILDE] = ACTIONS(4084), - [anon_sym_EQ_EQ] = ACTIONS(4084), - [anon_sym_EQ] = ACTIONS(4086), - [anon_sym_PLUS_EQ] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_BANG_EQ] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4086), - [anon_sym_DASH] = ACTIONS(4086), - [anon_sym_DASH_EQ] = ACTIONS(4084), - [anon_sym_LT_EQ] = ACTIONS(4084), - [anon_sym_GT_EQ] = ACTIONS(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4084), - }, - [1603] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4440), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1604] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(4440), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1605] = { - [sym__concat] = ACTIONS(4090), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4090), - [anon_sym_EQ_TILDE] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ] = ACTIONS(4092), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_BANG_EQ] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4092), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4090), - }, - [1606] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4442), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1607] = { - [aux_sym_concatenation_repeat1] = STATE(1607), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(3288), - [sym_variable_name] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [1608] = { - [aux_sym_concatenation_repeat1] = STATE(1608), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [1609] = { - [sym__terminated_statement] = STATE(1934), - [sym_redirected_statement] = STATE(526), - [sym_for_statement] = STATE(526), - [sym_c_style_for_statement] = STATE(526), - [sym_while_statement] = STATE(526), - [sym_if_statement] = STATE(526), - [sym_case_statement] = STATE(526), - [sym_function_definition] = STATE(526), - [sym_compound_statement] = STATE(526), - [sym_subshell] = STATE(526), - [sym_pipeline] = STATE(526), - [sym_list] = STATE(526), - [sym_negated_command] = STATE(526), - [sym_test_command] = STATE(526), - [sym_declaration_command] = STATE(526), - [sym_unset_command] = STATE(526), - [sym_command] = STATE(526), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(527), - [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(1934), - [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(4444), - [anon_sym_elif] = ACTIONS(4444), - [anon_sym_else] = ACTIONS(4444), - [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), - }, - [1610] = { - [sym__terminated_statement] = STATE(1610), - [sym_redirected_statement] = STATE(526), - [sym_for_statement] = STATE(526), - [sym_c_style_for_statement] = STATE(526), - [sym_while_statement] = STATE(526), - [sym_if_statement] = STATE(526), - [sym_case_statement] = STATE(526), - [sym_function_definition] = STATE(526), - [sym_compound_statement] = STATE(526), - [sym_subshell] = STATE(526), - [sym_pipeline] = STATE(526), - [sym_list] = STATE(526), - [sym_negated_command] = STATE(526), - [sym_test_command] = STATE(526), - [sym_declaration_command] = STATE(526), - [sym_unset_command] = STATE(526), - [sym_command] = STATE(526), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(527), - [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(1610), - [aux_sym_command_repeat1] = STATE(63), - [sym_file_descriptor] = ACTIONS(977), - [sym_variable_name] = ACTIONS(980), - [anon_sym_for] = ACTIONS(983), - [anon_sym_LPAREN_LPAREN] = ACTIONS(986), - [anon_sym_while] = ACTIONS(989), - [anon_sym_if] = ACTIONS(992), - [anon_sym_fi] = ACTIONS(3616), - [anon_sym_case] = ACTIONS(995), - [anon_sym_function] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1013), - [anon_sym_declare] = ACTIONS(1016), - [anon_sym_typeset] = ACTIONS(1016), - [anon_sym_export] = ACTIONS(1016), - [anon_sym_readonly] = ACTIONS(1016), - [anon_sym_local] = ACTIONS(1016), - [anon_sym_unset] = ACTIONS(1019), - [anon_sym_unsetenv] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1022), - [anon_sym_GT] = ACTIONS(1022), - [anon_sym_GT_GT] = ACTIONS(1025), - [anon_sym_AMP_GT] = ACTIONS(1022), - [anon_sym_AMP_GT_GT] = ACTIONS(1025), - [anon_sym_LT_AMP] = ACTIONS(1025), - [anon_sym_GT_AMP] = ACTIONS(1025), - [sym__special_characters] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1034), - [sym_raw_string] = ACTIONS(1037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), - [anon_sym_BQUOTE] = ACTIONS(1046), - [anon_sym_LT_LPAREN] = ACTIONS(1049), - [anon_sym_GT_LPAREN] = ACTIONS(1049), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1052), - }, - [1611] = { - [sym__simple_heredoc_body] = ACTIONS(4446), - [sym__heredoc_body_beginning] = ACTIONS(4446), - [sym_file_descriptor] = ACTIONS(4446), - [ts_builtin_sym_end] = ACTIONS(4446), - [anon_sym_SEMI] = ACTIONS(4448), - [anon_sym_esac] = ACTIONS(4446), - [anon_sym_PIPE] = ACTIONS(4448), - [anon_sym_RPAREN] = ACTIONS(4446), - [anon_sym_SEMI_SEMI] = ACTIONS(4446), - [anon_sym_PIPE_AMP] = ACTIONS(4446), - [anon_sym_AMP_AMP] = ACTIONS(4446), - [anon_sym_PIPE_PIPE] = ACTIONS(4446), - [anon_sym_LT] = ACTIONS(4448), - [anon_sym_GT] = ACTIONS(4448), - [anon_sym_GT_GT] = ACTIONS(4446), - [anon_sym_AMP_GT] = ACTIONS(4448), - [anon_sym_AMP_GT_GT] = ACTIONS(4446), - [anon_sym_LT_AMP] = ACTIONS(4446), - [anon_sym_GT_AMP] = ACTIONS(4446), - [anon_sym_LT_LT] = ACTIONS(4448), - [anon_sym_LT_LT_DASH] = ACTIONS(4446), - [anon_sym_LT_LT_LT] = ACTIONS(4446), - [anon_sym_BQUOTE] = ACTIONS(4446), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4446), - [anon_sym_AMP] = ACTIONS(4448), - }, - [1612] = { - [anon_sym_fi] = ACTIONS(4450), - [sym_comment] = ACTIONS(57), - }, - [1613] = { - [sym_concatenation] = STATE(1938), - [sym_string] = STATE(1937), - [sym_simple_expansion] = STATE(1937), - [sym_string_expansion] = STATE(1937), - [sym_expansion] = STATE(1937), - [sym_command_substitution] = STATE(1937), - [sym_process_substitution] = STATE(1937), - [sym__special_characters] = ACTIONS(4452), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(415), - [sym_raw_string] = ACTIONS(4454), - [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(4454), - }, - [1614] = { - [sym__terminated_statement] = STATE(1958), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(1954), - [sym_variable_assignment] = STATE(1955), - [sym_subscript] = STATE(1956), - [sym_file_redirect] = STATE(1959), - [sym_concatenation] = STATE(1957), - [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), - [aux_sym__statements_repeat1] = STATE(1958), - [aux_sym_command_repeat1] = STATE(1959), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4456), - [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(4458), - [anon_sym_SEMI_SEMI] = ACTIONS(4460), - [anon_sym_function] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_LBRACK_LBRACK] = ACTIONS(31), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), - [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(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4484), - }, - [1615] = { - [aux_sym_case_item_repeat1] = STATE(1961), - [anon_sym_PIPE] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(4486), - [sym_comment] = ACTIONS(57), - }, - [1616] = { - [aux_sym_concatenation_repeat1] = STATE(1962), - [sym__concat] = ACTIONS(1195), - [anon_sym_PIPE] = ACTIONS(779), - [anon_sym_RPAREN] = ACTIONS(779), - [sym_comment] = ACTIONS(57), - }, - [1617] = { - [sym__terminated_statement] = STATE(1966), - [sym_redirected_statement] = STATE(1964), - [sym_for_statement] = STATE(1964), - [sym_c_style_for_statement] = STATE(1964), - [sym_while_statement] = STATE(1964), - [sym_if_statement] = STATE(1964), - [sym_case_statement] = STATE(1964), - [sym_function_definition] = STATE(1964), - [sym_compound_statement] = STATE(1964), - [sym_subshell] = STATE(1964), - [sym_pipeline] = STATE(1964), - [sym_list] = STATE(1964), - [sym_negated_command] = STATE(1964), - [sym_test_command] = STATE(1964), - [sym_declaration_command] = STATE(1964), - [sym_unset_command] = STATE(1964), - [sym_command] = STATE(1964), - [sym_command_name] = STATE(1954), - [sym_variable_assignment] = STATE(1965), - [sym_subscript] = STATE(1956), - [sym_file_redirect] = STATE(1959), - [sym_concatenation] = STATE(1957), - [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), - [aux_sym__statements_repeat1] = STATE(1966), - [aux_sym_command_repeat1] = STATE(1959), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4456), - [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(4488), - [anon_sym_SEMI_SEMI] = ACTIONS(4490), - [anon_sym_function] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_LBRACK_LBRACK] = ACTIONS(31), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), - [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(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4484), - }, - [1618] = { - [aux_sym_case_item_repeat1] = STATE(1961), - [anon_sym_PIPE] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(4492), - [sym_comment] = ACTIONS(57), - }, - [1619] = { - [sym__simple_heredoc_body] = ACTIONS(4494), - [sym__heredoc_body_beginning] = ACTIONS(4494), - [sym_file_descriptor] = ACTIONS(4494), - [ts_builtin_sym_end] = ACTIONS(4494), - [anon_sym_SEMI] = ACTIONS(4496), - [anon_sym_esac] = ACTIONS(4494), - [anon_sym_PIPE] = ACTIONS(4496), - [anon_sym_RPAREN] = ACTIONS(4494), - [anon_sym_SEMI_SEMI] = ACTIONS(4494), - [anon_sym_PIPE_AMP] = ACTIONS(4494), - [anon_sym_AMP_AMP] = ACTIONS(4494), - [anon_sym_PIPE_PIPE] = ACTIONS(4494), - [anon_sym_LT] = ACTIONS(4496), - [anon_sym_GT] = ACTIONS(4496), - [anon_sym_GT_GT] = ACTIONS(4494), - [anon_sym_AMP_GT] = ACTIONS(4496), - [anon_sym_AMP_GT_GT] = ACTIONS(4494), - [anon_sym_LT_AMP] = ACTIONS(4494), - [anon_sym_GT_AMP] = ACTIONS(4494), - [anon_sym_LT_LT] = ACTIONS(4496), - [anon_sym_LT_LT_DASH] = ACTIONS(4494), - [anon_sym_LT_LT_LT] = ACTIONS(4494), - [anon_sym_BQUOTE] = ACTIONS(4494), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4494), - [anon_sym_AMP] = ACTIONS(4496), - }, - [1620] = { - [anon_sym_esac] = ACTIONS(4498), - [sym_comment] = ACTIONS(57), - }, - [1621] = { - [sym_case_item] = STATE(1621), - [sym_concatenation] = STATE(1971), - [sym_string] = STATE(1970), - [sym_simple_expansion] = STATE(1970), - [sym_string_expansion] = STATE(1970), - [sym_expansion] = STATE(1970), - [sym_command_substitution] = STATE(1970), - [sym_process_substitution] = STATE(1970), - [aux_sym_case_statement_repeat1] = STATE(1621), - [sym__special_characters] = ACTIONS(4500), - [anon_sym_DQUOTE] = ACTIONS(4503), - [anon_sym_DOLLAR] = ACTIONS(4506), - [sym_raw_string] = ACTIONS(4509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4512), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4515), - [anon_sym_BQUOTE] = ACTIONS(4518), - [anon_sym_LT_LPAREN] = ACTIONS(4521), - [anon_sym_GT_LPAREN] = ACTIONS(4521), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4509), - }, - [1622] = { - [sym_case_item] = STATE(1621), - [sym_last_case_item] = STATE(1972), - [sym_concatenation] = STATE(1180), - [sym_string] = STATE(1178), - [sym_simple_expansion] = STATE(1178), - [sym_string_expansion] = STATE(1178), - [sym_expansion] = STATE(1178), - [sym_command_substitution] = STATE(1178), - [sym_process_substitution] = STATE(1178), - [aux_sym_case_statement_repeat1] = STATE(1621), - [sym__special_characters] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(415), - [sym_raw_string] = ACTIONS(2468), - [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(2468), - }, - [1623] = { - [sym__simple_heredoc_body] = ACTIONS(4524), - [sym__heredoc_body_beginning] = ACTIONS(4524), - [sym_file_descriptor] = ACTIONS(4524), - [ts_builtin_sym_end] = ACTIONS(4524), - [anon_sym_SEMI] = ACTIONS(4526), - [anon_sym_esac] = ACTIONS(4524), - [anon_sym_PIPE] = ACTIONS(4526), - [anon_sym_RPAREN] = ACTIONS(4524), - [anon_sym_SEMI_SEMI] = ACTIONS(4524), - [anon_sym_PIPE_AMP] = ACTIONS(4524), - [anon_sym_AMP_AMP] = ACTIONS(4524), - [anon_sym_PIPE_PIPE] = ACTIONS(4524), - [anon_sym_LT] = ACTIONS(4526), - [anon_sym_GT] = ACTIONS(4526), - [anon_sym_GT_GT] = ACTIONS(4524), - [anon_sym_AMP_GT] = ACTIONS(4526), - [anon_sym_AMP_GT_GT] = ACTIONS(4524), - [anon_sym_LT_AMP] = ACTIONS(4524), - [anon_sym_GT_AMP] = ACTIONS(4524), - [anon_sym_LT_LT] = ACTIONS(4526), - [anon_sym_LT_LT_DASH] = ACTIONS(4524), - [anon_sym_LT_LT_LT] = ACTIONS(4524), - [anon_sym_BQUOTE] = ACTIONS(4524), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4524), - [anon_sym_AMP] = ACTIONS(4526), - }, - [1624] = { - [anon_sym_esac] = ACTIONS(4528), - [sym_comment] = ACTIONS(57), - }, - [1625] = { - [sym_case_item] = STATE(1621), - [sym_last_case_item] = STATE(1974), - [sym_concatenation] = STATE(1180), - [sym_string] = STATE(1178), - [sym_simple_expansion] = STATE(1178), - [sym_string_expansion] = STATE(1178), - [sym_expansion] = STATE(1178), - [sym_command_substitution] = STATE(1178), - [sym_process_substitution] = STATE(1178), - [aux_sym_case_statement_repeat1] = STATE(1621), - [sym__special_characters] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(415), - [sym_raw_string] = ACTIONS(2468), - [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(2468), - }, - [1626] = { - [sym__concat] = ACTIONS(3941), - [anon_sym_in] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3943), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3941), - }, - [1627] = { - [sym__concat] = ACTIONS(3949), - [anon_sym_in] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3951), - [anon_sym_SEMI_SEMI] = ACTIONS(3949), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3949), - }, - [1628] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4530), - [sym_comment] = ACTIONS(57), - }, - [1629] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4532), - [sym_comment] = ACTIONS(57), - }, - [1630] = { - [anon_sym_RBRACE] = ACTIONS(4532), - [sym_comment] = ACTIONS(57), - }, - [1631] = { - [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(4534), - [anon_sym_EQ] = ACTIONS(4536), - [anon_sym_DASH] = ACTIONS(4536), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4538), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4536), - [anon_sym_COLON_QMARK] = ACTIONS(4536), - [anon_sym_COLON_DASH] = ACTIONS(4536), - [anon_sym_PERCENT] = ACTIONS(4536), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1632] = { - [sym__concat] = ACTIONS(4005), - [anon_sym_in] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_SEMI_SEMI] = ACTIONS(4005), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4005), - }, - [1633] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4534), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1634] = { - [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(4532), - [anon_sym_EQ] = ACTIONS(4540), - [anon_sym_DASH] = ACTIONS(4540), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4542), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4540), - [anon_sym_COLON_QMARK] = ACTIONS(4540), - [anon_sym_COLON_DASH] = ACTIONS(4540), - [anon_sym_PERCENT] = ACTIONS(4540), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1635] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__concat] = ACTIONS(4050), - [anon_sym_in] = ACTIONS(4050), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4050), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4050), - }, - [1637] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4544), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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(4084), - [anon_sym_in] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym_SEMI_SEMI] = ACTIONS(4084), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4084), - [anon_sym_AMP] = ACTIONS(4084), - }, - [1639] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4546), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1640] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(4546), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1641] = { - [sym__concat] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym_SEMI_SEMI] = ACTIONS(4090), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4090), - }, - [1642] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4548), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1643] = { - [aux_sym_concatenation_repeat1] = STATE(1643), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(3288), - [sym_variable_name] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1730), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [1644] = { - [aux_sym_concatenation_repeat1] = STATE(1644), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1730), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [1645] = { - [sym__simple_heredoc_body] = ACTIONS(4550), - [sym__heredoc_body_beginning] = ACTIONS(4550), - [sym_file_descriptor] = ACTIONS(4550), - [ts_builtin_sym_end] = ACTIONS(4550), - [anon_sym_SEMI] = ACTIONS(4552), - [anon_sym_esac] = ACTIONS(4550), - [anon_sym_PIPE] = ACTIONS(4552), - [anon_sym_RPAREN] = ACTIONS(4550), - [anon_sym_SEMI_SEMI] = ACTIONS(4550), - [anon_sym_PIPE_AMP] = ACTIONS(4550), - [anon_sym_AMP_AMP] = ACTIONS(4550), - [anon_sym_PIPE_PIPE] = ACTIONS(4550), - [anon_sym_LT] = ACTIONS(4552), - [anon_sym_GT] = ACTIONS(4552), - [anon_sym_GT_GT] = ACTIONS(4550), - [anon_sym_AMP_GT] = ACTIONS(4552), - [anon_sym_AMP_GT_GT] = ACTIONS(4550), - [anon_sym_LT_AMP] = ACTIONS(4550), - [anon_sym_GT_AMP] = ACTIONS(4550), - [anon_sym_LT_LT] = ACTIONS(4552), - [anon_sym_LT_LT_DASH] = ACTIONS(4550), - [anon_sym_LT_LT_LT] = ACTIONS(4550), - [anon_sym_BQUOTE] = ACTIONS(4550), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4550), - [anon_sym_AMP] = ACTIONS(4552), - }, - [1646] = { - [sym_file_descriptor] = ACTIONS(3258), - [sym_variable_name] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_GT] = ACTIONS(3260), - [anon_sym_GT_GT] = ACTIONS(3258), - [anon_sym_AMP_GT] = ACTIONS(3260), - [anon_sym_AMP_GT_GT] = ACTIONS(3258), - [anon_sym_LT_AMP] = ACTIONS(3258), - [anon_sym_GT_AMP] = ACTIONS(3258), - [sym__special_characters] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_DOLLAR] = ACTIONS(3260), - [sym_raw_string] = ACTIONS(3258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3258), - [anon_sym_BQUOTE] = ACTIONS(3258), - [anon_sym_LT_LPAREN] = ACTIONS(3258), - [anon_sym_GT_LPAREN] = ACTIONS(3258), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3258), - }, - [1647] = { - [sym__concat] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [anon_sym_RBRACK] = ACTIONS(3941), - [anon_sym_EQ_TILDE] = ACTIONS(3941), - [anon_sym_EQ_EQ] = ACTIONS(3941), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_PLUS_EQ] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_BANG_EQ] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_DASH_EQ] = ACTIONS(3941), - [anon_sym_LT_EQ] = ACTIONS(3941), - [anon_sym_GT_EQ] = ACTIONS(3941), - [anon_sym_PLUS_PLUS] = ACTIONS(3941), - [anon_sym_DASH_DASH] = ACTIONS(3941), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3941), - }, - [1648] = { - [sym__concat] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3949), - [anon_sym_PIPE_PIPE] = ACTIONS(3949), - [anon_sym_RBRACK] = ACTIONS(3949), - [anon_sym_EQ_TILDE] = ACTIONS(3949), - [anon_sym_EQ_EQ] = ACTIONS(3949), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3949), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_BANG_EQ] = ACTIONS(3949), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_DASH_EQ] = ACTIONS(3949), - [anon_sym_LT_EQ] = ACTIONS(3949), - [anon_sym_GT_EQ] = ACTIONS(3949), - [anon_sym_PLUS_PLUS] = ACTIONS(3949), - [anon_sym_DASH_DASH] = ACTIONS(3949), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3949), - }, - [1649] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4554), - [sym_comment] = ACTIONS(57), - }, - [1650] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4556), - [sym_comment] = ACTIONS(57), - }, - [1651] = { - [anon_sym_RBRACE] = ACTIONS(4556), - [sym_comment] = ACTIONS(57), - }, - [1652] = { - [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(4558), - [anon_sym_EQ] = ACTIONS(4560), - [anon_sym_DASH] = ACTIONS(4560), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4560), - [anon_sym_COLON_QMARK] = ACTIONS(4560), - [anon_sym_COLON_DASH] = ACTIONS(4560), - [anon_sym_PERCENT] = ACTIONS(4560), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1653] = { - [sym__concat] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4005), - [anon_sym_PIPE_PIPE] = ACTIONS(4005), - [anon_sym_RBRACK] = ACTIONS(4005), - [anon_sym_EQ_TILDE] = ACTIONS(4005), - [anon_sym_EQ_EQ] = ACTIONS(4005), - [anon_sym_EQ] = ACTIONS(4007), - [anon_sym_PLUS_EQ] = ACTIONS(4005), - [anon_sym_LT] = ACTIONS(4007), - [anon_sym_GT] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4005), - [anon_sym_PLUS] = ACTIONS(4007), - [anon_sym_DASH] = ACTIONS(4007), - [anon_sym_DASH_EQ] = ACTIONS(4005), - [anon_sym_LT_EQ] = ACTIONS(4005), - [anon_sym_GT_EQ] = ACTIONS(4005), - [anon_sym_PLUS_PLUS] = ACTIONS(4005), - [anon_sym_DASH_DASH] = ACTIONS(4005), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4005), - }, - [1654] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4558), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1655] = { - [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(4556), - [anon_sym_EQ] = ACTIONS(4564), - [anon_sym_DASH] = ACTIONS(4564), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4566), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4564), - [anon_sym_COLON_DASH] = ACTIONS(4564), - [anon_sym_PERCENT] = ACTIONS(4564), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4556), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__concat] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [anon_sym_RBRACK] = ACTIONS(4050), - [anon_sym_EQ_TILDE] = ACTIONS(4050), - [anon_sym_EQ_EQ] = ACTIONS(4050), - [anon_sym_EQ] = ACTIONS(4052), - [anon_sym_PLUS_EQ] = ACTIONS(4050), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_BANG_EQ] = ACTIONS(4050), - [anon_sym_PLUS] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_DASH_EQ] = ACTIONS(4050), - [anon_sym_LT_EQ] = ACTIONS(4050), - [anon_sym_GT_EQ] = ACTIONS(4050), - [anon_sym_PLUS_PLUS] = ACTIONS(4050), - [anon_sym_DASH_DASH] = ACTIONS(4050), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4050), - }, - [1658] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4568), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1659] = { - [sym__concat] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_RBRACK] = ACTIONS(4084), - [anon_sym_EQ_TILDE] = ACTIONS(4084), - [anon_sym_EQ_EQ] = ACTIONS(4084), - [anon_sym_EQ] = ACTIONS(4086), - [anon_sym_PLUS_EQ] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_BANG_EQ] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4086), - [anon_sym_DASH] = ACTIONS(4086), - [anon_sym_DASH_EQ] = ACTIONS(4084), - [anon_sym_LT_EQ] = ACTIONS(4084), - [anon_sym_GT_EQ] = ACTIONS(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4084), - }, - [1660] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4570), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1661] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(4570), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1662] = { - [sym__concat] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_RBRACK] = ACTIONS(4090), - [anon_sym_EQ_TILDE] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ] = ACTIONS(4092), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_BANG_EQ] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4092), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4090), - }, - [1663] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4572), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1664] = { - [sym__simple_heredoc_body] = ACTIONS(3258), - [sym__heredoc_body_beginning] = ACTIONS(3258), - [sym_file_descriptor] = ACTIONS(3258), - [sym_variable_name] = ACTIONS(3258), - [ts_builtin_sym_end] = ACTIONS(3258), - [anon_sym_SEMI] = ACTIONS(3260), - [anon_sym_PIPE] = ACTIONS(3260), - [anon_sym_RPAREN] = ACTIONS(3258), - [anon_sym_SEMI_SEMI] = ACTIONS(3258), - [anon_sym_PIPE_AMP] = ACTIONS(3258), - [anon_sym_AMP_AMP] = ACTIONS(3258), - [anon_sym_PIPE_PIPE] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_GT] = ACTIONS(3260), - [anon_sym_GT_GT] = ACTIONS(3258), - [anon_sym_AMP_GT] = ACTIONS(3260), - [anon_sym_AMP_GT_GT] = ACTIONS(3258), - [anon_sym_LT_AMP] = ACTIONS(3258), - [anon_sym_GT_AMP] = ACTIONS(3258), - [anon_sym_LT_LT] = ACTIONS(3260), - [anon_sym_LT_LT_DASH] = ACTIONS(3258), - [anon_sym_LT_LT_LT] = ACTIONS(3258), - [sym__special_characters] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_DOLLAR] = ACTIONS(3260), - [sym_raw_string] = ACTIONS(3258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3258), - [anon_sym_BQUOTE] = ACTIONS(3258), - [anon_sym_LT_LPAREN] = ACTIONS(3258), - [anon_sym_GT_LPAREN] = ACTIONS(3258), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3260), - [sym_word] = ACTIONS(3260), - [anon_sym_LF] = ACTIONS(3258), - [anon_sym_AMP] = ACTIONS(3260), - }, - [1665] = { - [sym__simple_heredoc_body] = ACTIONS(3941), - [sym__heredoc_body_beginning] = ACTIONS(3941), - [sym_file_descriptor] = ACTIONS(3941), - [sym__concat] = ACTIONS(3941), - [sym_variable_name] = ACTIONS(3941), - [ts_builtin_sym_end] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_RPAREN] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [anon_sym_PIPE_AMP] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_GT_GT] = ACTIONS(3941), - [anon_sym_AMP_GT] = ACTIONS(3943), - [anon_sym_AMP_GT_GT] = ACTIONS(3941), - [anon_sym_LT_AMP] = ACTIONS(3941), - [anon_sym_GT_AMP] = ACTIONS(3941), - [anon_sym_LT_LT] = ACTIONS(3943), - [anon_sym_LT_LT_DASH] = ACTIONS(3941), - [anon_sym_LT_LT_LT] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3943), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [anon_sym_LT_LPAREN] = ACTIONS(3941), - [anon_sym_GT_LPAREN] = ACTIONS(3941), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3943), - [sym_word] = ACTIONS(3943), - [anon_sym_LF] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - }, - [1666] = { - [sym__simple_heredoc_body] = ACTIONS(3949), - [sym__heredoc_body_beginning] = ACTIONS(3949), - [sym_file_descriptor] = ACTIONS(3949), - [sym__concat] = ACTIONS(3949), - [sym_variable_name] = ACTIONS(3949), - [ts_builtin_sym_end] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_RPAREN] = ACTIONS(3949), - [anon_sym_SEMI_SEMI] = ACTIONS(3949), - [anon_sym_PIPE_AMP] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3949), - [anon_sym_PIPE_PIPE] = ACTIONS(3949), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3949), - [anon_sym_AMP_GT] = ACTIONS(3951), - [anon_sym_AMP_GT_GT] = ACTIONS(3949), - [anon_sym_LT_AMP] = ACTIONS(3949), - [anon_sym_GT_AMP] = ACTIONS(3949), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_LT_LT_DASH] = ACTIONS(3949), - [anon_sym_LT_LT_LT] = ACTIONS(3949), - [sym__special_characters] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3951), - [sym_raw_string] = ACTIONS(3949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3949), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3949), - [anon_sym_BQUOTE] = ACTIONS(3949), - [anon_sym_LT_LPAREN] = ACTIONS(3949), - [anon_sym_GT_LPAREN] = ACTIONS(3949), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3951), - [sym_word] = ACTIONS(3951), - [anon_sym_LF] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3951), - }, - [1667] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4574), - [sym_comment] = ACTIONS(57), - }, - [1668] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4576), - [sym_comment] = ACTIONS(57), - }, - [1669] = { - [anon_sym_RBRACE] = ACTIONS(4576), - [sym_comment] = ACTIONS(57), - }, - [1670] = { - [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(4578), - [anon_sym_EQ] = ACTIONS(4580), - [anon_sym_DASH] = ACTIONS(4580), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4582), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4580), - [anon_sym_COLON_QMARK] = ACTIONS(4580), - [anon_sym_COLON_DASH] = ACTIONS(4580), - [anon_sym_PERCENT] = ACTIONS(4580), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym__simple_heredoc_body] = ACTIONS(4005), - [sym__heredoc_body_beginning] = ACTIONS(4005), - [sym_file_descriptor] = ACTIONS(4005), - [sym__concat] = ACTIONS(4005), - [sym_variable_name] = ACTIONS(4005), - [ts_builtin_sym_end] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4007), - [anon_sym_RPAREN] = ACTIONS(4005), - [anon_sym_SEMI_SEMI] = ACTIONS(4005), - [anon_sym_PIPE_AMP] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4005), - [anon_sym_PIPE_PIPE] = ACTIONS(4005), - [anon_sym_LT] = ACTIONS(4007), - [anon_sym_GT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_AMP_GT] = ACTIONS(4007), - [anon_sym_AMP_GT_GT] = ACTIONS(4005), - [anon_sym_LT_AMP] = ACTIONS(4005), - [anon_sym_GT_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_LT_LT_DASH] = ACTIONS(4005), - [anon_sym_LT_LT_LT] = ACTIONS(4005), - [sym__special_characters] = ACTIONS(4005), - [anon_sym_DQUOTE] = ACTIONS(4005), - [anon_sym_DOLLAR] = ACTIONS(4007), - [sym_raw_string] = ACTIONS(4005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4005), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4005), - [anon_sym_BQUOTE] = ACTIONS(4005), - [anon_sym_LT_LPAREN] = ACTIONS(4005), - [anon_sym_GT_LPAREN] = ACTIONS(4005), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4007), - [sym_word] = ACTIONS(4007), - [anon_sym_LF] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4007), - }, - [1672] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4578), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [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(4576), - [anon_sym_EQ] = ACTIONS(4584), - [anon_sym_DASH] = ACTIONS(4584), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4586), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4584), - [anon_sym_COLON_QMARK] = ACTIONS(4584), - [anon_sym_COLON_DASH] = ACTIONS(4584), - [anon_sym_PERCENT] = ACTIONS(4584), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4576), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__simple_heredoc_body] = ACTIONS(4050), - [sym__heredoc_body_beginning] = ACTIONS(4050), - [sym_file_descriptor] = ACTIONS(4050), - [sym__concat] = ACTIONS(4050), - [sym_variable_name] = ACTIONS(4050), - [ts_builtin_sym_end] = ACTIONS(4050), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_RPAREN] = ACTIONS(4050), - [anon_sym_SEMI_SEMI] = ACTIONS(4050), - [anon_sym_PIPE_AMP] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_GT_GT] = ACTIONS(4050), - [anon_sym_AMP_GT] = ACTIONS(4052), - [anon_sym_AMP_GT_GT] = ACTIONS(4050), - [anon_sym_LT_AMP] = ACTIONS(4050), - [anon_sym_GT_AMP] = ACTIONS(4050), - [anon_sym_LT_LT] = ACTIONS(4052), - [anon_sym_LT_LT_DASH] = ACTIONS(4050), - [anon_sym_LT_LT_LT] = ACTIONS(4050), - [sym__special_characters] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), - [anon_sym_LT_LPAREN] = ACTIONS(4050), - [anon_sym_GT_LPAREN] = ACTIONS(4050), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4052), - [sym_word] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), - }, - [1676] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4588), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__simple_heredoc_body] = ACTIONS(4084), - [sym__heredoc_body_beginning] = ACTIONS(4084), - [sym_file_descriptor] = ACTIONS(4084), - [sym__concat] = ACTIONS(4084), - [sym_variable_name] = ACTIONS(4084), - [ts_builtin_sym_end] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym_PIPE] = ACTIONS(4086), - [anon_sym_RPAREN] = ACTIONS(4084), - [anon_sym_SEMI_SEMI] = ACTIONS(4084), - [anon_sym_PIPE_AMP] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_GT_GT] = ACTIONS(4084), - [anon_sym_AMP_GT] = ACTIONS(4086), - [anon_sym_AMP_GT_GT] = ACTIONS(4084), - [anon_sym_LT_AMP] = ACTIONS(4084), - [anon_sym_GT_AMP] = ACTIONS(4084), - [anon_sym_LT_LT] = ACTIONS(4086), - [anon_sym_LT_LT_DASH] = ACTIONS(4084), - [anon_sym_LT_LT_LT] = ACTIONS(4084), - [sym__special_characters] = ACTIONS(4084), - [anon_sym_DQUOTE] = ACTIONS(4084), - [anon_sym_DOLLAR] = ACTIONS(4086), - [sym_raw_string] = ACTIONS(4084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4084), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4084), - [anon_sym_BQUOTE] = ACTIONS(4084), - [anon_sym_LT_LPAREN] = ACTIONS(4084), - [anon_sym_GT_LPAREN] = ACTIONS(4084), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4086), - [sym_word] = ACTIONS(4086), - [anon_sym_LF] = ACTIONS(4084), - [anon_sym_AMP] = ACTIONS(4086), - }, - [1678] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4590), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1679] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(4590), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1680] = { - [sym__simple_heredoc_body] = ACTIONS(4090), - [sym__heredoc_body_beginning] = ACTIONS(4090), - [sym_file_descriptor] = ACTIONS(4090), - [sym__concat] = ACTIONS(4090), - [sym_variable_name] = ACTIONS(4090), - [ts_builtin_sym_end] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4092), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_SEMI_SEMI] = ACTIONS(4090), - [anon_sym_PIPE_AMP] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4090), - [anon_sym_AMP_GT] = ACTIONS(4092), - [anon_sym_AMP_GT_GT] = ACTIONS(4090), - [anon_sym_LT_AMP] = ACTIONS(4090), - [anon_sym_GT_AMP] = ACTIONS(4090), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_LT_LT_DASH] = ACTIONS(4090), - [anon_sym_LT_LT_LT] = ACTIONS(4090), - [sym__special_characters] = ACTIONS(4090), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4092), - [sym_raw_string] = ACTIONS(4090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4090), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4090), - [anon_sym_BQUOTE] = ACTIONS(4090), - [anon_sym_LT_LPAREN] = ACTIONS(4090), - [anon_sym_GT_LPAREN] = ACTIONS(4090), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4092), - [sym_word] = ACTIONS(4092), - [anon_sym_LF] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4092), - }, - [1681] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4592), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1682] = { - [sym__simple_heredoc_body] = ACTIONS(3941), - [sym__heredoc_body_beginning] = ACTIONS(3941), - [sym_file_descriptor] = ACTIONS(3941), - [sym__concat] = ACTIONS(3941), - [ts_builtin_sym_end] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_RPAREN] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [anon_sym_PIPE_AMP] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_GT_GT] = ACTIONS(3941), - [anon_sym_AMP_GT] = ACTIONS(3943), - [anon_sym_AMP_GT_GT] = ACTIONS(3941), - [anon_sym_LT_AMP] = ACTIONS(3941), - [anon_sym_GT_AMP] = ACTIONS(3941), - [anon_sym_LT_LT] = ACTIONS(3943), - [anon_sym_LT_LT_DASH] = ACTIONS(3941), - [anon_sym_LT_LT_LT] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3943), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [anon_sym_LT_LPAREN] = ACTIONS(3941), - [anon_sym_GT_LPAREN] = ACTIONS(3941), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3943), - [sym_word] = ACTIONS(3943), - [anon_sym_LF] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - }, - [1683] = { - [sym__simple_heredoc_body] = ACTIONS(3949), - [sym__heredoc_body_beginning] = ACTIONS(3949), - [sym_file_descriptor] = ACTIONS(3949), - [sym__concat] = ACTIONS(3949), - [ts_builtin_sym_end] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_RPAREN] = ACTIONS(3949), - [anon_sym_SEMI_SEMI] = ACTIONS(3949), - [anon_sym_PIPE_AMP] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3949), - [anon_sym_PIPE_PIPE] = ACTIONS(3949), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3949), - [anon_sym_AMP_GT] = ACTIONS(3951), - [anon_sym_AMP_GT_GT] = ACTIONS(3949), - [anon_sym_LT_AMP] = ACTIONS(3949), - [anon_sym_GT_AMP] = ACTIONS(3949), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_LT_LT_DASH] = ACTIONS(3949), - [anon_sym_LT_LT_LT] = ACTIONS(3949), - [sym__special_characters] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3951), - [sym_raw_string] = ACTIONS(3949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3949), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3949), - [anon_sym_BQUOTE] = ACTIONS(3949), - [anon_sym_LT_LPAREN] = ACTIONS(3949), - [anon_sym_GT_LPAREN] = ACTIONS(3949), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3951), - [sym_word] = ACTIONS(3951), - [anon_sym_LF] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3951), - }, - [1684] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4594), - [sym_comment] = ACTIONS(57), - }, - [1685] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4596), - [sym_comment] = ACTIONS(57), - }, - [1686] = { - [anon_sym_RBRACE] = ACTIONS(4596), - [sym_comment] = ACTIONS(57), - }, - [1687] = { - [sym_concatenation] = STATE(2002), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2002), - [anon_sym_RBRACE] = ACTIONS(4598), - [anon_sym_EQ] = ACTIONS(4600), - [anon_sym_DASH] = ACTIONS(4600), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4600), - [anon_sym_COLON_QMARK] = ACTIONS(4600), - [anon_sym_COLON_DASH] = ACTIONS(4600), - [anon_sym_PERCENT] = ACTIONS(4600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym__simple_heredoc_body] = ACTIONS(4005), - [sym__heredoc_body_beginning] = ACTIONS(4005), - [sym_file_descriptor] = ACTIONS(4005), - [sym__concat] = ACTIONS(4005), - [ts_builtin_sym_end] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4007), - [anon_sym_RPAREN] = ACTIONS(4005), - [anon_sym_SEMI_SEMI] = ACTIONS(4005), - [anon_sym_PIPE_AMP] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4005), - [anon_sym_PIPE_PIPE] = ACTIONS(4005), - [anon_sym_LT] = ACTIONS(4007), - [anon_sym_GT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_AMP_GT] = ACTIONS(4007), - [anon_sym_AMP_GT_GT] = ACTIONS(4005), - [anon_sym_LT_AMP] = ACTIONS(4005), - [anon_sym_GT_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_LT_LT_DASH] = ACTIONS(4005), - [anon_sym_LT_LT_LT] = ACTIONS(4005), - [sym__special_characters] = ACTIONS(4005), - [anon_sym_DQUOTE] = ACTIONS(4005), - [anon_sym_DOLLAR] = ACTIONS(4007), - [sym_raw_string] = ACTIONS(4005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4005), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4005), - [anon_sym_BQUOTE] = ACTIONS(4005), - [anon_sym_LT_LPAREN] = ACTIONS(4005), - [anon_sym_GT_LPAREN] = ACTIONS(4005), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4007), - [sym_word] = ACTIONS(4007), - [anon_sym_LF] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4007), - }, - [1689] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4598), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(2003), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2003), - [anon_sym_RBRACE] = ACTIONS(4596), - [anon_sym_EQ] = ACTIONS(4604), - [anon_sym_DASH] = ACTIONS(4604), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4606), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4604), - [anon_sym_COLON_QMARK] = ACTIONS(4604), - [anon_sym_COLON_DASH] = ACTIONS(4604), - [anon_sym_PERCENT] = ACTIONS(4604), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4596), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__simple_heredoc_body] = ACTIONS(4050), - [sym__heredoc_body_beginning] = ACTIONS(4050), - [sym_file_descriptor] = ACTIONS(4050), - [sym__concat] = ACTIONS(4050), - [ts_builtin_sym_end] = ACTIONS(4050), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_RPAREN] = ACTIONS(4050), - [anon_sym_SEMI_SEMI] = ACTIONS(4050), - [anon_sym_PIPE_AMP] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_GT_GT] = ACTIONS(4050), - [anon_sym_AMP_GT] = ACTIONS(4052), - [anon_sym_AMP_GT_GT] = ACTIONS(4050), - [anon_sym_LT_AMP] = ACTIONS(4050), - [anon_sym_GT_AMP] = ACTIONS(4050), - [anon_sym_LT_LT] = ACTIONS(4052), - [anon_sym_LT_LT_DASH] = ACTIONS(4050), - [anon_sym_LT_LT_LT] = ACTIONS(4050), - [sym__special_characters] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), - [anon_sym_LT_LPAREN] = ACTIONS(4050), - [anon_sym_GT_LPAREN] = ACTIONS(4050), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4052), - [sym_word] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), - }, - [1693] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4608), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__simple_heredoc_body] = ACTIONS(4084), - [sym__heredoc_body_beginning] = ACTIONS(4084), - [sym_file_descriptor] = ACTIONS(4084), - [sym__concat] = ACTIONS(4084), - [ts_builtin_sym_end] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym_PIPE] = ACTIONS(4086), - [anon_sym_RPAREN] = ACTIONS(4084), - [anon_sym_SEMI_SEMI] = ACTIONS(4084), - [anon_sym_PIPE_AMP] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_GT_GT] = ACTIONS(4084), - [anon_sym_AMP_GT] = ACTIONS(4086), - [anon_sym_AMP_GT_GT] = ACTIONS(4084), - [anon_sym_LT_AMP] = ACTIONS(4084), - [anon_sym_GT_AMP] = ACTIONS(4084), - [anon_sym_LT_LT] = ACTIONS(4086), - [anon_sym_LT_LT_DASH] = ACTIONS(4084), - [anon_sym_LT_LT_LT] = ACTIONS(4084), - [sym__special_characters] = ACTIONS(4084), - [anon_sym_DQUOTE] = ACTIONS(4084), - [anon_sym_DOLLAR] = ACTIONS(4086), - [sym_raw_string] = ACTIONS(4084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4084), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4084), - [anon_sym_BQUOTE] = ACTIONS(4084), - [anon_sym_LT_LPAREN] = ACTIONS(4084), - [anon_sym_GT_LPAREN] = ACTIONS(4084), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4086), - [sym_word] = ACTIONS(4086), - [anon_sym_LF] = ACTIONS(4084), - [anon_sym_AMP] = ACTIONS(4086), - }, - [1695] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4610), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1696] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(4610), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1697] = { - [sym__simple_heredoc_body] = ACTIONS(4090), - [sym__heredoc_body_beginning] = ACTIONS(4090), - [sym_file_descriptor] = ACTIONS(4090), - [sym__concat] = ACTIONS(4090), - [ts_builtin_sym_end] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4092), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_SEMI_SEMI] = ACTIONS(4090), - [anon_sym_PIPE_AMP] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4090), - [anon_sym_AMP_GT] = ACTIONS(4092), - [anon_sym_AMP_GT_GT] = ACTIONS(4090), - [anon_sym_LT_AMP] = ACTIONS(4090), - [anon_sym_GT_AMP] = ACTIONS(4090), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_LT_LT_DASH] = ACTIONS(4090), - [anon_sym_LT_LT_LT] = ACTIONS(4090), - [sym__special_characters] = ACTIONS(4090), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4092), - [sym_raw_string] = ACTIONS(4090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4090), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4090), - [anon_sym_BQUOTE] = ACTIONS(4090), - [anon_sym_LT_LPAREN] = ACTIONS(4090), - [anon_sym_GT_LPAREN] = ACTIONS(4090), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4092), - [sym_word] = ACTIONS(4092), - [anon_sym_LF] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4092), - }, - [1698] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4612), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1699] = { - [sym_file_descriptor] = ACTIONS(3941), - [sym__concat] = ACTIONS(3941), - [sym_variable_name] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_GT_GT] = ACTIONS(3941), - [anon_sym_AMP_GT] = ACTIONS(3943), - [anon_sym_AMP_GT_GT] = ACTIONS(3941), - [anon_sym_LT_AMP] = ACTIONS(3941), - [anon_sym_GT_AMP] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3943), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [anon_sym_LT_LPAREN] = ACTIONS(3941), - [anon_sym_GT_LPAREN] = ACTIONS(3941), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3941), - }, - [1700] = { - [sym_file_descriptor] = ACTIONS(3949), - [sym__concat] = ACTIONS(3949), - [sym_variable_name] = ACTIONS(3949), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3949), - [anon_sym_AMP_GT] = ACTIONS(3951), - [anon_sym_AMP_GT_GT] = ACTIONS(3949), - [anon_sym_LT_AMP] = ACTIONS(3949), - [anon_sym_GT_AMP] = ACTIONS(3949), - [sym__special_characters] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3951), - [sym_raw_string] = ACTIONS(3949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3949), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3949), - [anon_sym_BQUOTE] = ACTIONS(3949), - [anon_sym_LT_LPAREN] = ACTIONS(3949), - [anon_sym_GT_LPAREN] = ACTIONS(3949), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3949), - }, - [1701] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4614), - [sym_comment] = ACTIONS(57), - }, - [1702] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4616), - [sym_comment] = ACTIONS(57), - }, - [1703] = { - [anon_sym_RBRACE] = ACTIONS(4616), - [sym_comment] = ACTIONS(57), - }, - [1704] = { - [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(4618), - [anon_sym_EQ] = ACTIONS(4620), - [anon_sym_DASH] = ACTIONS(4620), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [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(859), - [anon_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_file_descriptor] = ACTIONS(4005), - [sym__concat] = ACTIONS(4005), - [sym_variable_name] = ACTIONS(4005), - [anon_sym_LT] = ACTIONS(4007), - [anon_sym_GT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_AMP_GT] = ACTIONS(4007), - [anon_sym_AMP_GT_GT] = ACTIONS(4005), - [anon_sym_LT_AMP] = ACTIONS(4005), - [anon_sym_GT_AMP] = ACTIONS(4005), - [sym__special_characters] = ACTIONS(4005), - [anon_sym_DQUOTE] = ACTIONS(4005), - [anon_sym_DOLLAR] = ACTIONS(4007), - [sym_raw_string] = ACTIONS(4005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4005), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4005), - [anon_sym_BQUOTE] = ACTIONS(4005), - [anon_sym_LT_LPAREN] = ACTIONS(4005), - [anon_sym_GT_LPAREN] = ACTIONS(4005), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4005), - }, - [1706] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4618), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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(2011), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2011), - [anon_sym_RBRACE] = ACTIONS(4616), - [anon_sym_EQ] = ACTIONS(4624), - [anon_sym_DASH] = ACTIONS(4624), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4626), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4624), - [anon_sym_COLON_QMARK] = ACTIONS(4624), - [anon_sym_COLON_DASH] = ACTIONS(4624), - [anon_sym_PERCENT] = ACTIONS(4624), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4616), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_file_descriptor] = ACTIONS(4050), - [sym__concat] = ACTIONS(4050), - [sym_variable_name] = ACTIONS(4050), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_GT_GT] = ACTIONS(4050), - [anon_sym_AMP_GT] = ACTIONS(4052), - [anon_sym_AMP_GT_GT] = ACTIONS(4050), - [anon_sym_LT_AMP] = ACTIONS(4050), - [anon_sym_GT_AMP] = ACTIONS(4050), - [sym__special_characters] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), - [anon_sym_LT_LPAREN] = ACTIONS(4050), - [anon_sym_GT_LPAREN] = ACTIONS(4050), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4050), - }, - [1710] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4628), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_file_descriptor] = ACTIONS(4084), - [sym__concat] = ACTIONS(4084), - [sym_variable_name] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_GT_GT] = ACTIONS(4084), - [anon_sym_AMP_GT] = ACTIONS(4086), - [anon_sym_AMP_GT_GT] = ACTIONS(4084), - [anon_sym_LT_AMP] = ACTIONS(4084), - [anon_sym_GT_AMP] = ACTIONS(4084), - [sym__special_characters] = ACTIONS(4084), - [anon_sym_DQUOTE] = ACTIONS(4084), - [anon_sym_DOLLAR] = ACTIONS(4086), - [sym_raw_string] = ACTIONS(4084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4084), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4084), - [anon_sym_BQUOTE] = ACTIONS(4084), - [anon_sym_LT_LPAREN] = ACTIONS(4084), - [anon_sym_GT_LPAREN] = ACTIONS(4084), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4084), - }, - [1712] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4630), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1713] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(4630), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1714] = { - [sym_file_descriptor] = ACTIONS(4090), - [sym__concat] = ACTIONS(4090), - [sym_variable_name] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4090), - [anon_sym_AMP_GT] = ACTIONS(4092), - [anon_sym_AMP_GT_GT] = ACTIONS(4090), - [anon_sym_LT_AMP] = ACTIONS(4090), - [anon_sym_GT_AMP] = ACTIONS(4090), - [sym__special_characters] = ACTIONS(4090), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4092), - [sym_raw_string] = ACTIONS(4090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4090), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4090), - [anon_sym_BQUOTE] = ACTIONS(4090), - [anon_sym_LT_LPAREN] = ACTIONS(4090), - [anon_sym_GT_LPAREN] = ACTIONS(4090), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4090), - }, - [1715] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4632), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1716] = { - [sym__concat] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3943), - [anon_sym_DOLLAR] = ACTIONS(3943), - [sym__string_content] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3943), - [anon_sym_BQUOTE] = ACTIONS(3943), - [sym_comment] = ACTIONS(265), - }, - [1717] = { - [sym__concat] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3951), - [anon_sym_DOLLAR] = ACTIONS(3951), - [sym__string_content] = ACTIONS(3949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3951), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3951), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_comment] = ACTIONS(265), - }, - [1718] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4634), - [sym_comment] = ACTIONS(57), - }, - [1719] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4636), - [sym_comment] = ACTIONS(57), - }, - [1720] = { - [anon_sym_RBRACE] = ACTIONS(4636), - [sym_comment] = ACTIONS(57), - }, - [1721] = { - [sym_concatenation] = STATE(2018), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2018), - [anon_sym_RBRACE] = ACTIONS(4638), - [anon_sym_EQ] = ACTIONS(4640), - [anon_sym_DASH] = ACTIONS(4640), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4642), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4640), - [anon_sym_COLON_QMARK] = ACTIONS(4640), - [anon_sym_COLON_DASH] = ACTIONS(4640), - [anon_sym_PERCENT] = ACTIONS(4640), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1722] = { - [sym__concat] = ACTIONS(4005), - [anon_sym_DQUOTE] = ACTIONS(4007), - [anon_sym_DOLLAR] = ACTIONS(4007), - [sym__string_content] = ACTIONS(4005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4007), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4007), - [anon_sym_BQUOTE] = ACTIONS(4007), - [sym_comment] = ACTIONS(265), - }, - [1723] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4638), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1724] = { - [sym_concatenation] = STATE(2019), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2019), - [anon_sym_RBRACE] = ACTIONS(4636), - [anon_sym_EQ] = ACTIONS(4644), - [anon_sym_DASH] = ACTIONS(4644), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4646), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4644), - [anon_sym_COLON_QMARK] = ACTIONS(4644), - [anon_sym_COLON_DASH] = ACTIONS(4644), - [anon_sym_PERCENT] = ACTIONS(4644), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4636), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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(4050), - [anon_sym_DQUOTE] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym__string_content] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4052), - [anon_sym_BQUOTE] = ACTIONS(4052), - [sym_comment] = ACTIONS(265), - }, - [1727] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4648), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__concat] = ACTIONS(4084), - [anon_sym_DQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR] = ACTIONS(4086), - [sym__string_content] = ACTIONS(4084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4086), - [anon_sym_BQUOTE] = ACTIONS(4086), - [sym_comment] = ACTIONS(265), - }, - [1729] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4650), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1730] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(4650), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1731] = { - [sym__concat] = ACTIONS(4652), - [anon_sym_RBRACE] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(4654), - [anon_sym_DASH] = ACTIONS(4654), - [sym__special_characters] = ACTIONS(4654), - [anon_sym_DQUOTE] = ACTIONS(3204), - [anon_sym_DOLLAR] = ACTIONS(4654), - [sym_raw_string] = ACTIONS(3204), - [anon_sym_POUND] = ACTIONS(3204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_COLON] = ACTIONS(4654), - [anon_sym_COLON_QMARK] = ACTIONS(4654), - [anon_sym_COLON_DASH] = ACTIONS(4654), - [anon_sym_PERCENT] = ACTIONS(4654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3204), - [anon_sym_BQUOTE] = ACTIONS(3204), - [anon_sym_LT_LPAREN] = ACTIONS(3204), - [anon_sym_GT_LPAREN] = ACTIONS(3204), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4654), - }, - [1732] = { - [anon_sym_RBRACE] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(4654), - [anon_sym_DASH] = ACTIONS(4654), - [sym__special_characters] = ACTIONS(4654), - [anon_sym_DQUOTE] = ACTIONS(3204), - [anon_sym_DOLLAR] = ACTIONS(4654), - [sym_raw_string] = ACTIONS(3204), - [anon_sym_POUND] = ACTIONS(3204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_COLON] = ACTIONS(4654), - [anon_sym_COLON_QMARK] = ACTIONS(4654), - [anon_sym_COLON_DASH] = ACTIONS(4654), - [anon_sym_PERCENT] = ACTIONS(4654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3204), - [anon_sym_BQUOTE] = ACTIONS(3204), - [anon_sym_LT_LPAREN] = ACTIONS(3204), - [anon_sym_GT_LPAREN] = ACTIONS(3204), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4654), - }, - [1733] = { - [sym__concat] = ACTIONS(4656), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_EQ] = ACTIONS(4658), - [anon_sym_DASH] = ACTIONS(4658), - [sym__special_characters] = ACTIONS(4658), - [anon_sym_DQUOTE] = ACTIONS(3208), - [anon_sym_DOLLAR] = ACTIONS(4658), - [sym_raw_string] = ACTIONS(3208), - [anon_sym_POUND] = ACTIONS(3208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3208), - [anon_sym_SLASH] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(4658), - [anon_sym_COLON_QMARK] = ACTIONS(4658), - [anon_sym_COLON_DASH] = ACTIONS(4658), - [anon_sym_PERCENT] = ACTIONS(4658), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3208), - [anon_sym_BQUOTE] = ACTIONS(3208), - [anon_sym_LT_LPAREN] = ACTIONS(3208), - [anon_sym_GT_LPAREN] = ACTIONS(3208), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4658), - }, - [1734] = { - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_EQ] = ACTIONS(4658), - [anon_sym_DASH] = ACTIONS(4658), - [sym__special_characters] = ACTIONS(4658), - [anon_sym_DQUOTE] = ACTIONS(3208), - [anon_sym_DOLLAR] = ACTIONS(4658), - [sym_raw_string] = ACTIONS(3208), - [anon_sym_POUND] = ACTIONS(3208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3208), - [anon_sym_SLASH] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(4658), - [anon_sym_COLON_QMARK] = ACTIONS(4658), - [anon_sym_COLON_DASH] = ACTIONS(4658), - [anon_sym_PERCENT] = ACTIONS(4658), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3208), - [anon_sym_BQUOTE] = ACTIONS(3208), - [anon_sym_LT_LPAREN] = ACTIONS(3208), - [anon_sym_GT_LPAREN] = ACTIONS(3208), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4658), - }, - [1735] = { - [sym__concat] = ACTIONS(1730), - [anon_sym_RBRACE] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - }, - [1736] = { - [aux_sym_concatenation_repeat1] = STATE(1736), - [sym__concat] = ACTIONS(4660), - [anon_sym_RBRACE] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - }, - [1737] = { - [sym__concat] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [sym_comment] = ACTIONS(57), - }, - [1738] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(4663), - [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), - }, - [1739] = { - [sym_concatenation] = STATE(2028), - [sym_string] = STATE(2027), - [sym_simple_expansion] = STATE(2027), - [sym_string_expansion] = STATE(2027), - [sym_expansion] = STATE(2027), - [sym_command_substitution] = STATE(2027), - [sym_process_substitution] = STATE(2027), - [anon_sym_RBRACE] = ACTIONS(4665), - [sym__special_characters] = ACTIONS(4667), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(4669), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4669), - }, - [1740] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(4671), - [sym_comment] = ACTIONS(57), - }, - [1741] = { - [sym_concatenation] = STATE(2032), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2032), - [anon_sym_RBRACE] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4675), - [anon_sym_DASH] = ACTIONS(4675), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(4679), - [anon_sym_COLON] = ACTIONS(4675), - [anon_sym_COLON_QMARK] = ACTIONS(4675), - [anon_sym_COLON_DASH] = ACTIONS(4675), - [anon_sym_PERCENT] = ACTIONS(4675), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1742] = { - [sym_concatenation] = STATE(2034), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2034), - [anon_sym_RBRACE] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4681), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4683), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_COLON_QMARK] = ACTIONS(4681), - [anon_sym_COLON_DASH] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1743] = { - [sym__concat] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [sym_comment] = ACTIONS(57), - }, - [1744] = { - [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(4687), - [anon_sym_RBRACE] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4693), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_COLON_QMARK] = ACTIONS(4691), - [anon_sym_COLON_DASH] = ACTIONS(4691), - [anon_sym_PERCENT] = ACTIONS(4691), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1745] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1746] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [sym_comment] = ACTIONS(57), - }, - [1747] = { - [sym_concatenation] = STATE(2034), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2034), - [sym_regex] = ACTIONS(4695), - [anon_sym_RBRACE] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4681), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4683), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_COLON_QMARK] = ACTIONS(4681), - [anon_sym_COLON_DASH] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1748] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1749] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1750] = { - [sym__concat] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1894), - [sym_comment] = ACTIONS(57), - }, - [1751] = { - [anon_sym_SEMI] = ACTIONS(4699), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_SEMI_SEMI] = ACTIONS(4701), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4701), - }, - [1752] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2042), - [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(4703), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_SEMI_SEMI] = ACTIONS(4705), - [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(4705), - [anon_sym_AMP] = ACTIONS(4703), - }, - [1753] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2042), - [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(4703), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_SEMI_SEMI] = ACTIONS(4705), - [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(4705), - [anon_sym_AMP] = ACTIONS(4703), - }, - [1754] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(4697), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1755] = { - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_SEMI_SEMI] = ACTIONS(4709), - [anon_sym_BQUOTE] = ACTIONS(4697), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4709), - [anon_sym_AMP] = ACTIONS(4709), - }, - [1756] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2045), - [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(4711), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(4713), - [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(4697), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4713), - [anon_sym_AMP] = ACTIONS(4711), - }, - [1757] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2045), - [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(4711), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(4713), - [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(4697), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(4713), - [anon_sym_AMP] = ACTIONS(4711), - }, - [1758] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4715), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1759] = { - [sym__concat] = ACTIONS(1928), - [anon_sym_RBRACE] = ACTIONS(1928), - [sym_comment] = ACTIONS(57), - }, - [1760] = { - [anon_sym_SEMI] = ACTIONS(4717), - [anon_sym_RPAREN] = ACTIONS(4715), - [anon_sym_SEMI_SEMI] = ACTIONS(4719), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4719), - [anon_sym_AMP] = ACTIONS(4719), - }, - [1761] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2049), - [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(4721), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4715), - [anon_sym_SEMI_SEMI] = ACTIONS(4723), - [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(4723), - [anon_sym_AMP] = ACTIONS(4721), - }, - [1762] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2049), - [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(4721), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4715), - [anon_sym_SEMI_SEMI] = ACTIONS(4723), - [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(4723), - [anon_sym_AMP] = ACTIONS(4721), - }, - [1763] = { - [sym__simple_heredoc_body] = ACTIONS(4725), - [sym__heredoc_body_beginning] = ACTIONS(4725), - [sym_file_descriptor] = ACTIONS(4725), - [sym__concat] = ACTIONS(4725), - [ts_builtin_sym_end] = ACTIONS(4725), - [anon_sym_SEMI] = ACTIONS(4727), - [anon_sym_PIPE] = ACTIONS(4727), - [anon_sym_RPAREN] = ACTIONS(4725), - [anon_sym_SEMI_SEMI] = ACTIONS(4725), - [anon_sym_PIPE_AMP] = ACTIONS(4725), - [anon_sym_AMP_AMP] = ACTIONS(4725), - [anon_sym_PIPE_PIPE] = ACTIONS(4725), - [anon_sym_EQ_TILDE] = ACTIONS(4727), - [anon_sym_EQ_EQ] = ACTIONS(4727), - [anon_sym_LT] = ACTIONS(4727), - [anon_sym_GT] = ACTIONS(4727), - [anon_sym_GT_GT] = ACTIONS(4725), - [anon_sym_AMP_GT] = ACTIONS(4727), - [anon_sym_AMP_GT_GT] = ACTIONS(4725), - [anon_sym_LT_AMP] = ACTIONS(4725), - [anon_sym_GT_AMP] = ACTIONS(4725), - [anon_sym_LT_LT] = ACTIONS(4727), - [anon_sym_LT_LT_DASH] = ACTIONS(4725), - [anon_sym_LT_LT_LT] = ACTIONS(4725), - [sym__special_characters] = ACTIONS(4725), - [anon_sym_DQUOTE] = ACTIONS(4725), - [anon_sym_DOLLAR] = ACTIONS(4727), - [sym_raw_string] = ACTIONS(4725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4725), - [anon_sym_BQUOTE] = ACTIONS(4725), - [anon_sym_LT_LPAREN] = ACTIONS(4725), - [anon_sym_GT_LPAREN] = ACTIONS(4725), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4727), - [anon_sym_LF] = ACTIONS(4725), - [anon_sym_AMP] = ACTIONS(4727), - }, - [1764] = { - [sym__simple_heredoc_body] = ACTIONS(4729), - [sym__heredoc_body_beginning] = ACTIONS(4729), - [sym_file_descriptor] = ACTIONS(4729), - [sym__concat] = ACTIONS(4729), - [ts_builtin_sym_end] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_PIPE] = ACTIONS(4731), - [anon_sym_RPAREN] = ACTIONS(4729), - [anon_sym_SEMI_SEMI] = ACTIONS(4729), - [anon_sym_PIPE_AMP] = ACTIONS(4729), - [anon_sym_AMP_AMP] = ACTIONS(4729), - [anon_sym_PIPE_PIPE] = ACTIONS(4729), - [anon_sym_EQ_TILDE] = ACTIONS(4731), - [anon_sym_EQ_EQ] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4731), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_GT_GT] = ACTIONS(4729), - [anon_sym_AMP_GT] = ACTIONS(4731), - [anon_sym_AMP_GT_GT] = ACTIONS(4729), - [anon_sym_LT_AMP] = ACTIONS(4729), - [anon_sym_GT_AMP] = ACTIONS(4729), - [anon_sym_LT_LT] = ACTIONS(4731), - [anon_sym_LT_LT_DASH] = ACTIONS(4729), - [anon_sym_LT_LT_LT] = ACTIONS(4729), - [sym__special_characters] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(4729), - [anon_sym_DOLLAR] = ACTIONS(4731), - [sym_raw_string] = ACTIONS(4729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4729), - [anon_sym_BQUOTE] = ACTIONS(4729), - [anon_sym_LT_LPAREN] = ACTIONS(4729), - [anon_sym_GT_LPAREN] = ACTIONS(4729), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4731), - [anon_sym_LF] = ACTIONS(4729), - [anon_sym_AMP] = ACTIONS(4731), - }, - [1765] = { - [sym__simple_heredoc_body] = ACTIONS(4733), - [sym__heredoc_body_beginning] = ACTIONS(4733), - [sym_file_descriptor] = ACTIONS(4733), - [sym__concat] = ACTIONS(4733), - [ts_builtin_sym_end] = ACTIONS(4733), - [anon_sym_SEMI] = ACTIONS(4735), - [anon_sym_PIPE] = ACTIONS(4735), - [anon_sym_RPAREN] = ACTIONS(4733), - [anon_sym_SEMI_SEMI] = ACTIONS(4733), - [anon_sym_PIPE_AMP] = ACTIONS(4733), - [anon_sym_AMP_AMP] = ACTIONS(4733), - [anon_sym_PIPE_PIPE] = ACTIONS(4733), - [anon_sym_EQ_TILDE] = ACTIONS(4735), - [anon_sym_EQ_EQ] = ACTIONS(4735), - [anon_sym_LT] = ACTIONS(4735), - [anon_sym_GT] = ACTIONS(4735), - [anon_sym_GT_GT] = ACTIONS(4733), - [anon_sym_AMP_GT] = ACTIONS(4735), - [anon_sym_AMP_GT_GT] = ACTIONS(4733), - [anon_sym_LT_AMP] = ACTIONS(4733), - [anon_sym_GT_AMP] = ACTIONS(4733), - [anon_sym_LT_LT] = ACTIONS(4735), - [anon_sym_LT_LT_DASH] = ACTIONS(4733), - [anon_sym_LT_LT_LT] = ACTIONS(4733), - [sym__special_characters] = ACTIONS(4733), - [anon_sym_DQUOTE] = ACTIONS(4733), - [anon_sym_DOLLAR] = ACTIONS(4735), - [sym_raw_string] = ACTIONS(4733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4733), - [anon_sym_BQUOTE] = ACTIONS(4733), - [anon_sym_LT_LPAREN] = ACTIONS(4733), - [anon_sym_GT_LPAREN] = ACTIONS(4733), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4735), - [anon_sym_LF] = ACTIONS(4733), - [anon_sym_AMP] = ACTIONS(4735), - }, - [1766] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4737), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1767] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4739), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1768] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2936), - [anon_sym_DASH] = ACTIONS(2936), - [sym__special_characters] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2934), - [anon_sym_POUND] = ACTIONS(2934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), - [anon_sym_COLON] = ACTIONS(2936), - [anon_sym_COLON_QMARK] = ACTIONS(2936), - [anon_sym_COLON_DASH] = ACTIONS(2936), - [anon_sym_PERCENT] = ACTIONS(2936), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_LT_LPAREN] = ACTIONS(2934), - [anon_sym_GT_LPAREN] = ACTIONS(2934), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(2936), - }, - [1769] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_RBRACE] = ACTIONS(2948), - [anon_sym_EQ] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [sym__special_characters] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2948), - [anon_sym_POUND] = ACTIONS(2948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), - [anon_sym_COLON] = ACTIONS(2950), - [anon_sym_COLON_QMARK] = ACTIONS(2950), - [anon_sym_COLON_DASH] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2948), - [anon_sym_BQUOTE] = ACTIONS(2948), - [anon_sym_LT_LPAREN] = ACTIONS(2948), - [anon_sym_GT_LPAREN] = ACTIONS(2948), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(2950), - }, - [1770] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4741), - [sym_comment] = ACTIONS(57), - }, - [1771] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4743), - [sym_comment] = ACTIONS(57), - }, - [1772] = { - [anon_sym_RBRACE] = ACTIONS(4743), - [sym_comment] = ACTIONS(57), - }, - [1773] = { - [sym_concatenation] = STATE(2056), - [sym_string] = STATE(2055), - [sym_simple_expansion] = STATE(2055), - [sym_string_expansion] = STATE(2055), - [sym_expansion] = STATE(2055), - [sym_command_substitution] = STATE(2055), - [sym_process_substitution] = STATE(2055), - [anon_sym_RBRACE] = ACTIONS(4743), - [sym__special_characters] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(4747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4747), - }, - [1774] = { - [sym__concat] = ACTIONS(2984), - [anon_sym_RBRACE] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [sym__special_characters] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [sym_raw_string] = ACTIONS(2984), - [anon_sym_POUND] = ACTIONS(2984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2984), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_DASH] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2984), - [anon_sym_BQUOTE] = ACTIONS(2984), - [anon_sym_LT_LPAREN] = ACTIONS(2984), - [anon_sym_GT_LPAREN] = ACTIONS(2984), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(2986), - }, - [1775] = { - [sym_concatenation] = STATE(2059), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2059), - [sym_regex] = ACTIONS(4749), - [anon_sym_RBRACE] = ACTIONS(4751), - [anon_sym_EQ] = ACTIONS(4753), - [anon_sym_DASH] = ACTIONS(4753), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [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(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1776] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4751), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1777] = { - [sym_concatenation] = STATE(2061), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2061), - [sym_regex] = ACTIONS(4757), - [anon_sym_RBRACE] = ACTIONS(4743), - [anon_sym_EQ] = ACTIONS(4759), - [anon_sym_DASH] = ACTIONS(4759), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4761), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4759), - [anon_sym_COLON_QMARK] = ACTIONS(4759), - [anon_sym_COLON_DASH] = ACTIONS(4759), - [anon_sym_PERCENT] = ACTIONS(4759), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1778] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4743), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1779] = { - [sym_concatenation] = STATE(2063), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2063), - [anon_sym_RBRACE] = ACTIONS(4763), - [anon_sym_EQ] = ACTIONS(4765), - [anon_sym_DASH] = ACTIONS(4765), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4767), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4765), - [anon_sym_COLON_QMARK] = ACTIONS(4765), - [anon_sym_COLON_DASH] = ACTIONS(4765), - [anon_sym_PERCENT] = ACTIONS(4765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1780] = { - [sym__concat] = ACTIONS(3040), - [anon_sym_RBRACE] = ACTIONS(3040), - [anon_sym_EQ] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [sym__special_characters] = ACTIONS(3042), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [sym_raw_string] = ACTIONS(3040), - [anon_sym_POUND] = ACTIONS(3040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), - [anon_sym_COLON] = ACTIONS(3042), - [anon_sym_COLON_QMARK] = ACTIONS(3042), - [anon_sym_COLON_DASH] = ACTIONS(3042), - [anon_sym_PERCENT] = ACTIONS(3042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), - [anon_sym_BQUOTE] = ACTIONS(3040), - [anon_sym_LT_LPAREN] = ACTIONS(3040), - [anon_sym_GT_LPAREN] = ACTIONS(3040), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(3042), - }, - [1781] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4763), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1782] = { - [sym_concatenation] = STATE(2061), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2061), - [anon_sym_RBRACE] = ACTIONS(4743), - [anon_sym_EQ] = ACTIONS(4759), - [anon_sym_DASH] = ACTIONS(4759), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4761), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4759), - [anon_sym_COLON_QMARK] = ACTIONS(4759), - [anon_sym_COLON_DASH] = ACTIONS(4759), - [anon_sym_PERCENT] = ACTIONS(4759), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1783] = { - [sym__simple_heredoc_body] = ACTIONS(4769), - [sym__heredoc_body_beginning] = ACTIONS(4769), - [sym_file_descriptor] = ACTIONS(4769), - [sym__concat] = ACTIONS(4769), - [ts_builtin_sym_end] = ACTIONS(4769), - [anon_sym_SEMI] = ACTIONS(4771), - [anon_sym_PIPE] = ACTIONS(4771), - [anon_sym_RPAREN] = ACTIONS(4769), - [anon_sym_SEMI_SEMI] = ACTIONS(4769), - [anon_sym_PIPE_AMP] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_EQ_TILDE] = ACTIONS(4771), - [anon_sym_EQ_EQ] = ACTIONS(4771), - [anon_sym_LT] = ACTIONS(4771), - [anon_sym_GT] = ACTIONS(4771), - [anon_sym_GT_GT] = ACTIONS(4769), - [anon_sym_AMP_GT] = ACTIONS(4771), - [anon_sym_AMP_GT_GT] = ACTIONS(4769), - [anon_sym_LT_AMP] = ACTIONS(4769), - [anon_sym_GT_AMP] = ACTIONS(4769), - [anon_sym_LT_LT] = ACTIONS(4771), - [anon_sym_LT_LT_DASH] = ACTIONS(4769), - [anon_sym_LT_LT_LT] = ACTIONS(4769), - [sym__special_characters] = ACTIONS(4769), - [anon_sym_DQUOTE] = ACTIONS(4769), - [anon_sym_DOLLAR] = ACTIONS(4771), - [sym_raw_string] = ACTIONS(4769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4769), - [anon_sym_BQUOTE] = ACTIONS(4769), - [anon_sym_LT_LPAREN] = ACTIONS(4769), - [anon_sym_GT_LPAREN] = ACTIONS(4769), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4771), - [anon_sym_LF] = ACTIONS(4769), - [anon_sym_AMP] = ACTIONS(4771), - }, - [1784] = { - [sym__concat] = ACTIONS(3095), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [sym__special_characters] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [sym_raw_string] = ACTIONS(3095), - [anon_sym_POUND] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), - [anon_sym_COLON] = ACTIONS(3097), - [anon_sym_COLON_QMARK] = ACTIONS(3097), - [anon_sym_COLON_DASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), - [anon_sym_BQUOTE] = ACTIONS(3095), - [anon_sym_LT_LPAREN] = ACTIONS(3095), - [anon_sym_GT_LPAREN] = ACTIONS(3095), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(3097), - }, - [1785] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4773), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1786] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4773), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1787] = { - [anon_sym_SEMI] = ACTIONS(4775), - [anon_sym_RPAREN] = ACTIONS(4773), - [anon_sym_SEMI_SEMI] = ACTIONS(4777), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4777), - [anon_sym_AMP] = ACTIONS(4777), - }, - [1788] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(4773), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1789] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(4773), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1790] = { - [anon_sym_SEMI] = ACTIONS(4779), - [anon_sym_SEMI_SEMI] = ACTIONS(4781), - [anon_sym_BQUOTE] = ACTIONS(4773), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4781), - [anon_sym_AMP] = ACTIONS(4781), - }, - [1791] = { - [sym__concat] = ACTIONS(3125), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_EQ] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [sym__special_characters] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3125), - [anon_sym_DOLLAR] = ACTIONS(3127), - [sym_raw_string] = ACTIONS(3125), - [anon_sym_POUND] = ACTIONS(3125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3125), - [anon_sym_COLON] = ACTIONS(3127), - [anon_sym_COLON_QMARK] = ACTIONS(3127), - [anon_sym_COLON_DASH] = ACTIONS(3127), - [anon_sym_PERCENT] = ACTIONS(3127), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3125), - [anon_sym_BQUOTE] = ACTIONS(3125), - [anon_sym_LT_LPAREN] = ACTIONS(3125), - [anon_sym_GT_LPAREN] = ACTIONS(3125), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(3127), - }, - [1792] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4783), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1793] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4783), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1794] = { - [anon_sym_SEMI] = ACTIONS(4785), - [anon_sym_RPAREN] = ACTIONS(4783), - [anon_sym_SEMI_SEMI] = ACTIONS(4787), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4787), - [anon_sym_AMP] = ACTIONS(4787), - }, - [1795] = { - [sym__simple_heredoc_body] = ACTIONS(4789), - [sym__heredoc_body_beginning] = ACTIONS(4789), - [sym_file_descriptor] = ACTIONS(4789), - [sym__concat] = ACTIONS(4789), - [ts_builtin_sym_end] = ACTIONS(4789), - [anon_sym_SEMI] = ACTIONS(4791), - [anon_sym_PIPE] = ACTIONS(4791), - [anon_sym_RPAREN] = ACTIONS(4789), - [anon_sym_SEMI_SEMI] = ACTIONS(4789), - [anon_sym_PIPE_AMP] = ACTIONS(4789), - [anon_sym_AMP_AMP] = ACTIONS(4789), - [anon_sym_PIPE_PIPE] = ACTIONS(4789), - [anon_sym_EQ_TILDE] = ACTIONS(4791), - [anon_sym_EQ_EQ] = ACTIONS(4791), - [anon_sym_LT] = ACTIONS(4791), - [anon_sym_GT] = ACTIONS(4791), - [anon_sym_GT_GT] = ACTIONS(4789), - [anon_sym_AMP_GT] = ACTIONS(4791), - [anon_sym_AMP_GT_GT] = ACTIONS(4789), - [anon_sym_LT_AMP] = ACTIONS(4789), - [anon_sym_GT_AMP] = ACTIONS(4789), - [anon_sym_LT_LT] = ACTIONS(4791), - [anon_sym_LT_LT_DASH] = ACTIONS(4789), - [anon_sym_LT_LT_LT] = ACTIONS(4789), - [sym__special_characters] = ACTIONS(4789), - [anon_sym_DQUOTE] = ACTIONS(4789), - [anon_sym_DOLLAR] = ACTIONS(4791), - [sym_raw_string] = ACTIONS(4789), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4789), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4789), - [anon_sym_BQUOTE] = ACTIONS(4789), - [anon_sym_LT_LPAREN] = ACTIONS(4789), - [anon_sym_GT_LPAREN] = ACTIONS(4789), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4791), - [anon_sym_LF] = ACTIONS(4789), - [anon_sym_AMP] = ACTIONS(4791), - }, - [1796] = { - [aux_sym_concatenation_repeat1] = STATE(1796), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [1797] = { - [sym__simple_heredoc_body] = ACTIONS(4793), - [sym__heredoc_body_beginning] = ACTIONS(4793), - [sym_file_descriptor] = ACTIONS(4793), - [sym__concat] = ACTIONS(4793), - [ts_builtin_sym_end] = ACTIONS(4793), - [anon_sym_SEMI] = ACTIONS(4795), - [anon_sym_PIPE] = ACTIONS(4795), - [anon_sym_RPAREN] = ACTIONS(4793), - [anon_sym_SEMI_SEMI] = ACTIONS(4793), - [anon_sym_PIPE_AMP] = ACTIONS(4793), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_EQ_TILDE] = ACTIONS(4795), - [anon_sym_EQ_EQ] = ACTIONS(4795), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_GT_GT] = ACTIONS(4793), - [anon_sym_AMP_GT] = ACTIONS(4795), - [anon_sym_AMP_GT_GT] = ACTIONS(4793), - [anon_sym_LT_AMP] = ACTIONS(4793), - [anon_sym_GT_AMP] = ACTIONS(4793), - [anon_sym_LT_LT] = ACTIONS(4795), - [anon_sym_LT_LT_DASH] = ACTIONS(4793), - [anon_sym_LT_LT_LT] = ACTIONS(4793), - [sym__special_characters] = ACTIONS(4793), - [anon_sym_DQUOTE] = ACTIONS(4793), - [anon_sym_DOLLAR] = ACTIONS(4795), - [sym_raw_string] = ACTIONS(4793), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4793), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4793), - [anon_sym_BQUOTE] = ACTIONS(4793), - [anon_sym_LT_LPAREN] = ACTIONS(4793), - [anon_sym_GT_LPAREN] = ACTIONS(4793), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4795), - [anon_sym_LF] = ACTIONS(4793), - [anon_sym_AMP] = ACTIONS(4795), - }, - [1798] = { - [sym__heredoc_body_middle] = ACTIONS(2948), - [sym__heredoc_body_end] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2948), - [anon_sym_BQUOTE] = ACTIONS(2948), - [sym_comment] = ACTIONS(57), - }, - [1799] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4797), - [sym_comment] = ACTIONS(57), - }, - [1800] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4799), - [sym_comment] = ACTIONS(57), - }, - [1801] = { - [anon_sym_RBRACE] = ACTIONS(4799), - [sym_comment] = ACTIONS(57), - }, - [1802] = { - [sym_concatenation] = STATE(2073), - [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), - [anon_sym_RBRACE] = ACTIONS(4799), - [sym__special_characters] = ACTIONS(4801), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(4803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4803), - }, - [1803] = { - [sym__heredoc_body_middle] = ACTIONS(2984), - [sym__heredoc_body_end] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2984), - [anon_sym_BQUOTE] = ACTIONS(2984), - [sym_comment] = ACTIONS(57), - }, - [1804] = { - [sym_concatenation] = STATE(2076), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2076), - [sym_regex] = ACTIONS(4805), - [anon_sym_RBRACE] = ACTIONS(4807), - [anon_sym_EQ] = ACTIONS(4809), - [anon_sym_DASH] = ACTIONS(4809), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4809), - [anon_sym_COLON_QMARK] = ACTIONS(4809), - [anon_sym_COLON_DASH] = ACTIONS(4809), - [anon_sym_PERCENT] = ACTIONS(4809), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4807), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [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), - [sym_regex] = ACTIONS(4813), - [anon_sym_RBRACE] = ACTIONS(4799), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_DASH] = ACTIONS(4815), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4817), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_COLON_QMARK] = ACTIONS(4815), - [anon_sym_COLON_DASH] = ACTIONS(4815), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4799), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1808] = { - [sym_concatenation] = STATE(2080), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2080), - [anon_sym_RBRACE] = ACTIONS(4819), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4821), - [anon_sym_COLON_QMARK] = ACTIONS(4821), - [anon_sym_COLON_DASH] = ACTIONS(4821), - [anon_sym_PERCENT] = ACTIONS(4821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__heredoc_body_middle] = ACTIONS(3040), - [sym__heredoc_body_end] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), - [anon_sym_BQUOTE] = ACTIONS(3040), - [sym_comment] = ACTIONS(57), - }, - [1810] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4819), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1811] = { - [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(4799), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_DASH] = ACTIONS(4815), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4817), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_COLON_QMARK] = ACTIONS(4815), - [anon_sym_COLON_DASH] = ACTIONS(4815), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1812] = { - [sym__heredoc_body_middle] = ACTIONS(3095), - [sym__heredoc_body_end] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), - [anon_sym_BQUOTE] = ACTIONS(3095), - [sym_comment] = ACTIONS(57), - }, - [1813] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4825), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1814] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4825), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1815] = { - [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), - }, - [1816] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(4825), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1817] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(4825), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1818] = { - [anon_sym_SEMI] = ACTIONS(4831), - [anon_sym_SEMI_SEMI] = ACTIONS(4833), - [anon_sym_BQUOTE] = ACTIONS(4825), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4833), - [anon_sym_AMP] = ACTIONS(4833), - }, - [1819] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_RPAREN] = ACTIONS(2934), - [sym__special_characters] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_LT_LPAREN] = ACTIONS(2934), - [anon_sym_GT_LPAREN] = ACTIONS(2934), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2934), - }, - [1820] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_RPAREN] = ACTIONS(2948), - [sym__special_characters] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2948), - [anon_sym_BQUOTE] = ACTIONS(2948), - [anon_sym_LT_LPAREN] = ACTIONS(2948), - [anon_sym_GT_LPAREN] = ACTIONS(2948), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2948), - }, - [1821] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4835), - [sym_comment] = ACTIONS(57), - }, - [1822] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4837), - [sym_comment] = ACTIONS(57), - }, - [1823] = { - [anon_sym_RBRACE] = ACTIONS(4837), - [sym_comment] = ACTIONS(57), - }, - [1824] = { - [sym_concatenation] = STATE(2088), - [sym_string] = STATE(2087), - [sym_simple_expansion] = STATE(2087), - [sym_string_expansion] = STATE(2087), - [sym_expansion] = STATE(2087), - [sym_command_substitution] = STATE(2087), - [sym_process_substitution] = STATE(2087), - [anon_sym_RBRACE] = ACTIONS(4837), - [sym__special_characters] = ACTIONS(4839), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(4841), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4841), - }, - [1825] = { - [sym__concat] = ACTIONS(2984), - [anon_sym_RPAREN] = ACTIONS(2984), - [sym__special_characters] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [sym_raw_string] = ACTIONS(2984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2984), - [anon_sym_BQUOTE] = ACTIONS(2984), - [anon_sym_LT_LPAREN] = ACTIONS(2984), - [anon_sym_GT_LPAREN] = ACTIONS(2984), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2984), - }, - [1826] = { - [sym_concatenation] = STATE(2091), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2091), - [sym_regex] = ACTIONS(4843), - [anon_sym_RBRACE] = ACTIONS(4845), - [anon_sym_EQ] = ACTIONS(4847), - [anon_sym_DASH] = ACTIONS(4847), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4847), - [anon_sym_COLON_QMARK] = ACTIONS(4847), - [anon_sym_COLON_DASH] = ACTIONS(4847), - [anon_sym_PERCENT] = ACTIONS(4847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4845), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1828] = { - [sym_concatenation] = STATE(2093), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2093), - [sym_regex] = ACTIONS(4851), - [anon_sym_RBRACE] = ACTIONS(4837), - [anon_sym_EQ] = ACTIONS(4853), - [anon_sym_DASH] = ACTIONS(4853), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4855), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4853), - [anon_sym_COLON_QMARK] = ACTIONS(4853), - [anon_sym_COLON_DASH] = ACTIONS(4853), - [anon_sym_PERCENT] = ACTIONS(4853), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4837), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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(2095), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2095), - [anon_sym_RBRACE] = ACTIONS(4857), - [anon_sym_EQ] = ACTIONS(4859), - [anon_sym_DASH] = ACTIONS(4859), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4859), - [anon_sym_COLON_QMARK] = ACTIONS(4859), - [anon_sym_COLON_DASH] = ACTIONS(4859), - [anon_sym_PERCENT] = ACTIONS(4859), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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(3040), - [anon_sym_RPAREN] = ACTIONS(3040), - [sym__special_characters] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [sym_raw_string] = ACTIONS(3040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), - [anon_sym_BQUOTE] = ACTIONS(3040), - [anon_sym_LT_LPAREN] = ACTIONS(3040), - [anon_sym_GT_LPAREN] = ACTIONS(3040), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3040), - }, - [1832] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4857), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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(2093), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2093), - [anon_sym_RBRACE] = ACTIONS(4837), - [anon_sym_EQ] = ACTIONS(4853), - [anon_sym_DASH] = ACTIONS(4853), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4855), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4853), - [anon_sym_COLON_QMARK] = ACTIONS(4853), - [anon_sym_COLON_DASH] = ACTIONS(4853), - [anon_sym_PERCENT] = ACTIONS(4853), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1834] = { - [sym__concat] = ACTIONS(3095), - [anon_sym_RPAREN] = ACTIONS(3095), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [sym_raw_string] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), - [anon_sym_BQUOTE] = ACTIONS(3095), - [anon_sym_LT_LPAREN] = ACTIONS(3095), - [anon_sym_GT_LPAREN] = ACTIONS(3095), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3095), - }, - [1835] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4863), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1836] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4863), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1837] = { - [anon_sym_SEMI] = ACTIONS(4865), - [anon_sym_RPAREN] = ACTIONS(4863), - [anon_sym_SEMI_SEMI] = ACTIONS(4867), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4867), - [anon_sym_AMP] = ACTIONS(4867), - }, - [1838] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(4863), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1839] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(4863), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1840] = { - [anon_sym_SEMI] = ACTIONS(4869), - [anon_sym_SEMI_SEMI] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4863), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4871), - [anon_sym_AMP] = ACTIONS(4871), - }, - [1841] = { - [sym__concat] = ACTIONS(3125), - [anon_sym_RPAREN] = ACTIONS(3125), - [sym__special_characters] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [anon_sym_DOLLAR] = ACTIONS(3127), - [sym_raw_string] = ACTIONS(3125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3125), - [anon_sym_BQUOTE] = ACTIONS(3125), - [anon_sym_LT_LPAREN] = ACTIONS(3125), - [anon_sym_GT_LPAREN] = ACTIONS(3125), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3125), - }, - [1842] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4873), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1843] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4873), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1844] = { - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym_RPAREN] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4877), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4877), - [anon_sym_AMP] = ACTIONS(4877), - }, - [1845] = { - [sym__simple_heredoc_body] = ACTIONS(3941), - [sym__heredoc_body_beginning] = ACTIONS(3941), - [sym_file_descriptor] = ACTIONS(3941), - [sym__concat] = ACTIONS(3941), - [sym_variable_name] = ACTIONS(3941), - [ts_builtin_sym_end] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_RPAREN] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [anon_sym_PIPE_AMP] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_GT_GT] = ACTIONS(3941), - [anon_sym_AMP_GT] = ACTIONS(3943), - [anon_sym_AMP_GT_GT] = ACTIONS(3941), - [anon_sym_LT_AMP] = ACTIONS(3941), - [anon_sym_GT_AMP] = ACTIONS(3941), - [anon_sym_LT_LT] = ACTIONS(3943), - [anon_sym_LT_LT_DASH] = ACTIONS(3941), - [anon_sym_LT_LT_LT] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3943), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [anon_sym_LT_LPAREN] = ACTIONS(3941), - [anon_sym_GT_LPAREN] = ACTIONS(3941), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3943), - [anon_sym_LF] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - }, - [1846] = { - [sym__simple_heredoc_body] = ACTIONS(3949), - [sym__heredoc_body_beginning] = ACTIONS(3949), - [sym_file_descriptor] = ACTIONS(3949), - [sym__concat] = ACTIONS(3949), - [sym_variable_name] = ACTIONS(3949), - [ts_builtin_sym_end] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_RPAREN] = ACTIONS(3949), - [anon_sym_SEMI_SEMI] = ACTIONS(3949), - [anon_sym_PIPE_AMP] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3949), - [anon_sym_PIPE_PIPE] = ACTIONS(3949), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3949), - [anon_sym_AMP_GT] = ACTIONS(3951), - [anon_sym_AMP_GT_GT] = ACTIONS(3949), - [anon_sym_LT_AMP] = ACTIONS(3949), - [anon_sym_GT_AMP] = ACTIONS(3949), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_LT_LT_DASH] = ACTIONS(3949), - [anon_sym_LT_LT_LT] = ACTIONS(3949), - [sym__special_characters] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3951), - [sym_raw_string] = ACTIONS(3949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3949), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3949), - [anon_sym_BQUOTE] = ACTIONS(3949), - [anon_sym_LT_LPAREN] = ACTIONS(3949), - [anon_sym_GT_LPAREN] = ACTIONS(3949), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3951), - [anon_sym_LF] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3951), - }, - [1847] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4879), - [sym_comment] = ACTIONS(57), - }, - [1848] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4881), - [sym_comment] = ACTIONS(57), - }, - [1849] = { - [anon_sym_RBRACE] = ACTIONS(4881), - [sym_comment] = ACTIONS(57), - }, - [1850] = { - [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(4883), - [anon_sym_EQ] = ACTIONS(4885), - [anon_sym_DASH] = ACTIONS(4885), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4887), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4885), - [anon_sym_COLON_QMARK] = ACTIONS(4885), - [anon_sym_COLON_DASH] = ACTIONS(4885), - [anon_sym_PERCENT] = ACTIONS(4885), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__simple_heredoc_body] = ACTIONS(4005), - [sym__heredoc_body_beginning] = ACTIONS(4005), - [sym_file_descriptor] = ACTIONS(4005), - [sym__concat] = ACTIONS(4005), - [sym_variable_name] = ACTIONS(4005), - [ts_builtin_sym_end] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4007), - [anon_sym_RPAREN] = ACTIONS(4005), - [anon_sym_SEMI_SEMI] = ACTIONS(4005), - [anon_sym_PIPE_AMP] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4005), - [anon_sym_PIPE_PIPE] = ACTIONS(4005), - [anon_sym_LT] = ACTIONS(4007), - [anon_sym_GT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_AMP_GT] = ACTIONS(4007), - [anon_sym_AMP_GT_GT] = ACTIONS(4005), - [anon_sym_LT_AMP] = ACTIONS(4005), - [anon_sym_GT_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_LT_LT_DASH] = ACTIONS(4005), - [anon_sym_LT_LT_LT] = ACTIONS(4005), - [sym__special_characters] = ACTIONS(4005), - [anon_sym_DQUOTE] = ACTIONS(4005), - [anon_sym_DOLLAR] = ACTIONS(4007), - [sym_raw_string] = ACTIONS(4005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4005), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4005), - [anon_sym_BQUOTE] = ACTIONS(4005), - [anon_sym_LT_LPAREN] = ACTIONS(4005), - [anon_sym_GT_LPAREN] = ACTIONS(4005), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4007), - [anon_sym_LF] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4007), - }, - [1852] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4883), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym_concatenation] = STATE(2105), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2105), - [anon_sym_RBRACE] = ACTIONS(4881), - [anon_sym_EQ] = ACTIONS(4889), - [anon_sym_DASH] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4889), - [anon_sym_COLON_QMARK] = ACTIONS(4889), - [anon_sym_COLON_DASH] = ACTIONS(4889), - [anon_sym_PERCENT] = ACTIONS(4889), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1854] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4881), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1855] = { - [sym__simple_heredoc_body] = ACTIONS(4050), - [sym__heredoc_body_beginning] = ACTIONS(4050), - [sym_file_descriptor] = ACTIONS(4050), - [sym__concat] = ACTIONS(4050), - [sym_variable_name] = ACTIONS(4050), - [ts_builtin_sym_end] = ACTIONS(4050), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_RPAREN] = ACTIONS(4050), - [anon_sym_SEMI_SEMI] = ACTIONS(4050), - [anon_sym_PIPE_AMP] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_GT_GT] = ACTIONS(4050), - [anon_sym_AMP_GT] = ACTIONS(4052), - [anon_sym_AMP_GT_GT] = ACTIONS(4050), - [anon_sym_LT_AMP] = ACTIONS(4050), - [anon_sym_GT_AMP] = ACTIONS(4050), - [anon_sym_LT_LT] = ACTIONS(4052), - [anon_sym_LT_LT_DASH] = ACTIONS(4050), - [anon_sym_LT_LT_LT] = ACTIONS(4050), - [sym__special_characters] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), - [anon_sym_LT_LPAREN] = ACTIONS(4050), - [anon_sym_GT_LPAREN] = ACTIONS(4050), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), - }, - [1856] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4893), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1857] = { - [sym__simple_heredoc_body] = ACTIONS(4084), - [sym__heredoc_body_beginning] = ACTIONS(4084), - [sym_file_descriptor] = ACTIONS(4084), - [sym__concat] = ACTIONS(4084), - [sym_variable_name] = ACTIONS(4084), - [ts_builtin_sym_end] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym_PIPE] = ACTIONS(4086), - [anon_sym_RPAREN] = ACTIONS(4084), - [anon_sym_SEMI_SEMI] = ACTIONS(4084), - [anon_sym_PIPE_AMP] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_GT_GT] = ACTIONS(4084), - [anon_sym_AMP_GT] = ACTIONS(4086), - [anon_sym_AMP_GT_GT] = ACTIONS(4084), - [anon_sym_LT_AMP] = ACTIONS(4084), - [anon_sym_GT_AMP] = ACTIONS(4084), - [anon_sym_LT_LT] = ACTIONS(4086), - [anon_sym_LT_LT_DASH] = ACTIONS(4084), - [anon_sym_LT_LT_LT] = ACTIONS(4084), - [sym__special_characters] = ACTIONS(4084), - [anon_sym_DQUOTE] = ACTIONS(4084), - [anon_sym_DOLLAR] = ACTIONS(4086), - [sym_raw_string] = ACTIONS(4084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4084), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4084), - [anon_sym_BQUOTE] = ACTIONS(4084), - [anon_sym_LT_LPAREN] = ACTIONS(4084), - [anon_sym_GT_LPAREN] = ACTIONS(4084), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4086), - [anon_sym_LF] = ACTIONS(4084), - [anon_sym_AMP] = ACTIONS(4086), - }, - [1858] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4895), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1859] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(4895), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1860] = { - [sym__simple_heredoc_body] = ACTIONS(4090), - [sym__heredoc_body_beginning] = ACTIONS(4090), - [sym_file_descriptor] = ACTIONS(4090), - [sym__concat] = ACTIONS(4090), - [sym_variable_name] = ACTIONS(4090), - [ts_builtin_sym_end] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4092), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_SEMI_SEMI] = ACTIONS(4090), - [anon_sym_PIPE_AMP] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4090), - [anon_sym_AMP_GT] = ACTIONS(4092), - [anon_sym_AMP_GT_GT] = ACTIONS(4090), - [anon_sym_LT_AMP] = ACTIONS(4090), - [anon_sym_GT_AMP] = ACTIONS(4090), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_LT_LT_DASH] = ACTIONS(4090), - [anon_sym_LT_LT_LT] = ACTIONS(4090), - [sym__special_characters] = ACTIONS(4090), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4092), - [sym_raw_string] = ACTIONS(4090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4090), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4090), - [anon_sym_BQUOTE] = ACTIONS(4090), - [anon_sym_LT_LPAREN] = ACTIONS(4090), - [anon_sym_GT_LPAREN] = ACTIONS(4090), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4092), - [anon_sym_LF] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4092), - }, - [1861] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4897), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1862] = { - [sym__simple_heredoc_body] = ACTIONS(4899), - [sym__heredoc_body_beginning] = ACTIONS(4899), - [sym_file_descriptor] = ACTIONS(4899), - [ts_builtin_sym_end] = ACTIONS(4899), - [anon_sym_SEMI] = ACTIONS(4901), - [anon_sym_esac] = ACTIONS(4899), - [anon_sym_PIPE] = ACTIONS(4901), - [anon_sym_RPAREN] = ACTIONS(4899), - [anon_sym_SEMI_SEMI] = ACTIONS(4899), - [anon_sym_PIPE_AMP] = ACTIONS(4899), - [anon_sym_AMP_AMP] = ACTIONS(4899), - [anon_sym_PIPE_PIPE] = ACTIONS(4899), - [anon_sym_LT] = ACTIONS(4901), - [anon_sym_GT] = ACTIONS(4901), - [anon_sym_GT_GT] = ACTIONS(4899), - [anon_sym_AMP_GT] = ACTIONS(4901), - [anon_sym_AMP_GT_GT] = ACTIONS(4899), - [anon_sym_LT_AMP] = ACTIONS(4899), - [anon_sym_GT_AMP] = ACTIONS(4899), - [anon_sym_LT_LT] = ACTIONS(4901), - [anon_sym_LT_LT_DASH] = ACTIONS(4899), - [anon_sym_LT_LT_LT] = ACTIONS(4899), - [anon_sym_BQUOTE] = ACTIONS(4899), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4899), - [anon_sym_AMP] = ACTIONS(4901), - }, - [1863] = { - [sym_do_group] = STATE(2109), - [sym_compound_statement] = STATE(2109), - [anon_sym_do] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(25), - [sym_comment] = ACTIONS(57), - }, - [1864] = { - [sym_do_group] = STATE(2109), - [sym_compound_statement] = STATE(2109), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_do] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(25), - [sym_comment] = ACTIONS(57), - }, - [1865] = { - [sym__concat] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3943), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [anon_sym_EQ_TILDE] = ACTIONS(3941), - [anon_sym_EQ_EQ] = ACTIONS(3941), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_PLUS_EQ] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_BANG_EQ] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_DASH_EQ] = ACTIONS(3941), - [anon_sym_LT_EQ] = ACTIONS(3941), - [anon_sym_GT_EQ] = ACTIONS(3941), - [anon_sym_PLUS_PLUS] = ACTIONS(3941), - [anon_sym_DASH_DASH] = ACTIONS(3941), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - }, - [1866] = { - [sym__concat] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3951), - [anon_sym_SEMI_SEMI] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3949), - [anon_sym_PIPE_PIPE] = ACTIONS(3949), - [anon_sym_EQ_TILDE] = ACTIONS(3949), - [anon_sym_EQ_EQ] = ACTIONS(3949), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3949), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_BANG_EQ] = ACTIONS(3949), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_DASH_EQ] = ACTIONS(3949), - [anon_sym_LT_EQ] = ACTIONS(3949), - [anon_sym_GT_EQ] = ACTIONS(3949), - [anon_sym_PLUS_PLUS] = ACTIONS(3949), - [anon_sym_DASH_DASH] = ACTIONS(3949), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3949), - [anon_sym_LF] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3951), - }, - [1867] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4905), - [sym_comment] = ACTIONS(57), - }, - [1868] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4907), - [sym_comment] = ACTIONS(57), - }, - [1869] = { - [anon_sym_RBRACE] = ACTIONS(4907), - [sym_comment] = ACTIONS(57), - }, - [1870] = { - [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(4909), - [anon_sym_EQ] = ACTIONS(4911), - [anon_sym_DASH] = ACTIONS(4911), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4913), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4911), - [anon_sym_COLON_QMARK] = ACTIONS(4911), - [anon_sym_COLON_DASH] = ACTIONS(4911), - [anon_sym_PERCENT] = ACTIONS(4911), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_SEMI_SEMI] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4005), - [anon_sym_PIPE_PIPE] = ACTIONS(4005), - [anon_sym_EQ_TILDE] = ACTIONS(4005), - [anon_sym_EQ_EQ] = ACTIONS(4005), - [anon_sym_EQ] = ACTIONS(4007), - [anon_sym_PLUS_EQ] = ACTIONS(4005), - [anon_sym_LT] = ACTIONS(4007), - [anon_sym_GT] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4005), - [anon_sym_PLUS] = ACTIONS(4007), - [anon_sym_DASH] = ACTIONS(4007), - [anon_sym_DASH_EQ] = ACTIONS(4005), - [anon_sym_LT_EQ] = ACTIONS(4005), - [anon_sym_GT_EQ] = ACTIONS(4005), - [anon_sym_PLUS_PLUS] = ACTIONS(4005), - [anon_sym_DASH_DASH] = ACTIONS(4005), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4005), - [anon_sym_LF] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4007), - }, - [1872] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4909), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(2115), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2115), - [anon_sym_RBRACE] = ACTIONS(4907), - [anon_sym_EQ] = ACTIONS(4915), - [anon_sym_DASH] = ACTIONS(4915), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4915), - [anon_sym_COLON_QMARK] = ACTIONS(4915), - [anon_sym_COLON_DASH] = ACTIONS(4915), - [anon_sym_PERCENT] = ACTIONS(4915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4907), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1875] = { - [sym__concat] = ACTIONS(4050), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [anon_sym_EQ_TILDE] = ACTIONS(4050), - [anon_sym_EQ_EQ] = ACTIONS(4050), - [anon_sym_EQ] = ACTIONS(4052), - [anon_sym_PLUS_EQ] = ACTIONS(4050), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_BANG_EQ] = ACTIONS(4050), - [anon_sym_PLUS] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_DASH_EQ] = ACTIONS(4050), - [anon_sym_LT_EQ] = ACTIONS(4050), - [anon_sym_GT_EQ] = ACTIONS(4050), - [anon_sym_PLUS_PLUS] = ACTIONS(4050), - [anon_sym_DASH_DASH] = ACTIONS(4050), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4050), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), - }, - [1876] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4919), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1877] = { - [sym__concat] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym_SEMI_SEMI] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_EQ_TILDE] = ACTIONS(4084), - [anon_sym_EQ_EQ] = ACTIONS(4084), - [anon_sym_EQ] = ACTIONS(4086), - [anon_sym_PLUS_EQ] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_BANG_EQ] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4086), - [anon_sym_DASH] = ACTIONS(4086), - [anon_sym_DASH_EQ] = ACTIONS(4084), - [anon_sym_LT_EQ] = ACTIONS(4084), - [anon_sym_GT_EQ] = ACTIONS(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4084), - [anon_sym_LF] = ACTIONS(4084), - [anon_sym_AMP] = ACTIONS(4086), - }, - [1878] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4921), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1879] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(4921), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1880] = { - [sym__concat] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym_SEMI_SEMI] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_EQ_TILDE] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ] = ACTIONS(4092), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_BANG_EQ] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4092), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4090), - [anon_sym_LF] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4092), - }, - [1881] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4923), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1882] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(4925), - [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), - }, - [1883] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_SEMI_SEMI] = ACTIONS(2934), - [sym__special_characters] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_LT_LPAREN] = ACTIONS(2934), - [anon_sym_GT_LPAREN] = ACTIONS(2934), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2936), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2934), - }, - [1884] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_SEMI_SEMI] = ACTIONS(2948), - [sym__special_characters] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2948), - [anon_sym_BQUOTE] = ACTIONS(2948), - [anon_sym_LT_LPAREN] = ACTIONS(2948), - [anon_sym_GT_LPAREN] = ACTIONS(2948), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2948), - }, - [1885] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4927), - [sym_comment] = ACTIONS(57), - }, - [1886] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4929), - [sym_comment] = ACTIONS(57), - }, - [1887] = { - [anon_sym_RBRACE] = ACTIONS(4929), - [sym_comment] = ACTIONS(57), - }, - [1888] = { - [sym_concatenation] = STATE(2124), - [sym_string] = STATE(2123), - [sym_simple_expansion] = STATE(2123), - [sym_string_expansion] = STATE(2123), - [sym_expansion] = STATE(2123), - [sym_command_substitution] = STATE(2123), - [sym_process_substitution] = STATE(2123), - [anon_sym_RBRACE] = ACTIONS(4929), - [sym__special_characters] = ACTIONS(4931), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(4933), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4933), - }, - [1889] = { - [sym__concat] = ACTIONS(2984), - [anon_sym_SEMI] = ACTIONS(2986), - [anon_sym_SEMI_SEMI] = ACTIONS(2984), - [sym__special_characters] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [sym_raw_string] = ACTIONS(2984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2984), - [anon_sym_BQUOTE] = ACTIONS(2984), - [anon_sym_LT_LPAREN] = ACTIONS(2984), - [anon_sym_GT_LPAREN] = ACTIONS(2984), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2984), - }, - [1890] = { - [sym_concatenation] = STATE(2127), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2127), - [sym_regex] = ACTIONS(4935), - [anon_sym_RBRACE] = ACTIONS(4937), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_COLON_QMARK] = ACTIONS(4939), - [anon_sym_COLON_DASH] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4937), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1892] = { - [sym_concatenation] = STATE(2129), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2129), - [sym_regex] = ACTIONS(4943), - [anon_sym_RBRACE] = ACTIONS(4929), - [anon_sym_EQ] = ACTIONS(4945), - [anon_sym_DASH] = ACTIONS(4945), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4947), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4945), - [anon_sym_COLON_QMARK] = ACTIONS(4945), - [anon_sym_COLON_DASH] = ACTIONS(4945), - [anon_sym_PERCENT] = ACTIONS(4945), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4929), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(2131), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2131), - [anon_sym_RBRACE] = ACTIONS(4949), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4951), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4953), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [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(859), - [anon_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] = { - [sym__concat] = ACTIONS(3040), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_SEMI_SEMI] = ACTIONS(3040), - [sym__special_characters] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [sym_raw_string] = ACTIONS(3040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), - [anon_sym_BQUOTE] = ACTIONS(3040), - [anon_sym_LT_LPAREN] = ACTIONS(3040), - [anon_sym_GT_LPAREN] = ACTIONS(3040), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3042), - [anon_sym_LF] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3040), - }, - [1896] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4949), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym_concatenation] = STATE(2129), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2129), - [anon_sym_RBRACE] = ACTIONS(4929), - [anon_sym_EQ] = ACTIONS(4945), - [anon_sym_DASH] = ACTIONS(4945), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4947), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4945), - [anon_sym_COLON_QMARK] = ACTIONS(4945), - [anon_sym_COLON_DASH] = ACTIONS(4945), - [anon_sym_PERCENT] = ACTIONS(4945), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1898] = { - [sym__concat] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [sym_raw_string] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), - [anon_sym_BQUOTE] = ACTIONS(3095), - [anon_sym_LT_LPAREN] = ACTIONS(3095), - [anon_sym_GT_LPAREN] = ACTIONS(3095), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3097), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - }, - [1899] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4955), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1900] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4955), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1901] = { - [anon_sym_SEMI] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4955), - [anon_sym_SEMI_SEMI] = ACTIONS(4959), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4959), - }, - [1902] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(4955), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1903] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(4955), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1904] = { - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_SEMI_SEMI] = ACTIONS(4963), - [anon_sym_BQUOTE] = ACTIONS(4955), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4963), - [anon_sym_AMP] = ACTIONS(4963), - }, - [1905] = { - [sym__concat] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_SEMI_SEMI] = ACTIONS(3125), - [sym__special_characters] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [anon_sym_DOLLAR] = ACTIONS(3127), - [sym_raw_string] = ACTIONS(3125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3125), - [anon_sym_BQUOTE] = ACTIONS(3125), - [anon_sym_LT_LPAREN] = ACTIONS(3125), - [anon_sym_GT_LPAREN] = ACTIONS(3125), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3127), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3125), - }, - [1906] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4965), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1907] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(4965), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [1908] = { - [anon_sym_SEMI] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4965), - [anon_sym_SEMI_SEMI] = ACTIONS(4969), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4969), - [anon_sym_AMP] = ACTIONS(4969), - }, - [1909] = { - [sym__concat] = ACTIONS(3941), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_RPAREN] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [anon_sym_EQ_TILDE] = ACTIONS(3941), - [anon_sym_EQ_EQ] = ACTIONS(3941), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_PLUS_EQ] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_BANG_EQ] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_DASH_EQ] = ACTIONS(3941), - [anon_sym_LT_EQ] = ACTIONS(3941), - [anon_sym_GT_EQ] = ACTIONS(3941), - [anon_sym_PLUS_PLUS] = ACTIONS(3941), - [anon_sym_DASH_DASH] = ACTIONS(3941), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3941), - }, - [1910] = { - [sym__concat] = ACTIONS(3949), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_RPAREN] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3949), - [anon_sym_PIPE_PIPE] = ACTIONS(3949), - [anon_sym_EQ_TILDE] = ACTIONS(3949), - [anon_sym_EQ_EQ] = ACTIONS(3949), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3949), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_BANG_EQ] = ACTIONS(3949), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_DASH_EQ] = ACTIONS(3949), - [anon_sym_LT_EQ] = ACTIONS(3949), - [anon_sym_GT_EQ] = ACTIONS(3949), - [anon_sym_PLUS_PLUS] = ACTIONS(3949), - [anon_sym_DASH_DASH] = ACTIONS(3949), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(3949), - }, - [1911] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4971), - [sym_comment] = ACTIONS(57), - }, - [1912] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(4973), - [sym_comment] = ACTIONS(57), - }, - [1913] = { - [anon_sym_RBRACE] = ACTIONS(4973), - [sym_comment] = ACTIONS(57), - }, - [1914] = { - [sym_concatenation] = STATE(2140), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2140), - [anon_sym_RBRACE] = ACTIONS(4975), - [anon_sym_EQ] = ACTIONS(4977), - [anon_sym_DASH] = ACTIONS(4977), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4977), - [anon_sym_COLON_QMARK] = ACTIONS(4977), - [anon_sym_COLON_DASH] = ACTIONS(4977), - [anon_sym_PERCENT] = ACTIONS(4977), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1915] = { - [sym__concat] = ACTIONS(4005), - [anon_sym_PIPE] = ACTIONS(4007), - [anon_sym_RPAREN] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4005), - [anon_sym_PIPE_PIPE] = ACTIONS(4005), - [anon_sym_EQ_TILDE] = ACTIONS(4005), - [anon_sym_EQ_EQ] = ACTIONS(4005), - [anon_sym_EQ] = ACTIONS(4007), - [anon_sym_PLUS_EQ] = ACTIONS(4005), - [anon_sym_LT] = ACTIONS(4007), - [anon_sym_GT] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4005), - [anon_sym_PLUS] = ACTIONS(4007), - [anon_sym_DASH] = ACTIONS(4007), - [anon_sym_DASH_EQ] = ACTIONS(4005), - [anon_sym_LT_EQ] = ACTIONS(4005), - [anon_sym_GT_EQ] = ACTIONS(4005), - [anon_sym_PLUS_PLUS] = ACTIONS(4005), - [anon_sym_DASH_DASH] = ACTIONS(4005), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4005), - }, - [1916] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4975), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1917] = { - [sym_concatenation] = STATE(2141), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2141), - [anon_sym_RBRACE] = ACTIONS(4973), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_DASH] = ACTIONS(4981), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(4983), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(4981), - [anon_sym_COLON_QMARK] = ACTIONS(4981), - [anon_sym_COLON_DASH] = ACTIONS(4981), - [anon_sym_PERCENT] = ACTIONS(4981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1918] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4973), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1919] = { - [sym__concat] = ACTIONS(4050), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_RPAREN] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [anon_sym_EQ_TILDE] = ACTIONS(4050), - [anon_sym_EQ_EQ] = ACTIONS(4050), - [anon_sym_EQ] = ACTIONS(4052), - [anon_sym_PLUS_EQ] = ACTIONS(4050), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_BANG_EQ] = ACTIONS(4050), - [anon_sym_PLUS] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_DASH_EQ] = ACTIONS(4050), - [anon_sym_LT_EQ] = ACTIONS(4050), - [anon_sym_GT_EQ] = ACTIONS(4050), - [anon_sym_PLUS_PLUS] = ACTIONS(4050), - [anon_sym_DASH_DASH] = ACTIONS(4050), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4050), - }, - [1920] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1921] = { - [sym__concat] = ACTIONS(4084), - [anon_sym_PIPE] = ACTIONS(4086), - [anon_sym_RPAREN] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_EQ_TILDE] = ACTIONS(4084), - [anon_sym_EQ_EQ] = ACTIONS(4084), - [anon_sym_EQ] = ACTIONS(4086), - [anon_sym_PLUS_EQ] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_BANG_EQ] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4086), - [anon_sym_DASH] = ACTIONS(4086), - [anon_sym_DASH_EQ] = ACTIONS(4084), - [anon_sym_LT_EQ] = ACTIONS(4084), - [anon_sym_GT_EQ] = ACTIONS(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4084), - }, - [1922] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4987), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1923] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(4987), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1924] = { - [sym__concat] = ACTIONS(4090), - [anon_sym_PIPE] = ACTIONS(4092), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_EQ_TILDE] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ] = ACTIONS(4092), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_BANG_EQ] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4092), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4090), - }, - [1925] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [1926] = { - [sym__concat] = ACTIONS(4725), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4725), - [anon_sym_AMP_AMP] = ACTIONS(4725), - [anon_sym_PIPE_PIPE] = ACTIONS(4725), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4725), - [anon_sym_EQ_TILDE] = ACTIONS(4725), - [anon_sym_EQ_EQ] = ACTIONS(4725), - [anon_sym_EQ] = ACTIONS(4727), - [anon_sym_PLUS_EQ] = ACTIONS(4725), - [anon_sym_LT] = ACTIONS(4727), - [anon_sym_GT] = ACTIONS(4727), - [anon_sym_BANG_EQ] = ACTIONS(4725), - [anon_sym_PLUS] = ACTIONS(4727), - [anon_sym_DASH] = ACTIONS(4727), - [anon_sym_DASH_EQ] = ACTIONS(4725), - [anon_sym_LT_EQ] = ACTIONS(4725), - [anon_sym_GT_EQ] = ACTIONS(4725), - [anon_sym_PLUS_PLUS] = ACTIONS(4725), - [anon_sym_DASH_DASH] = ACTIONS(4725), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4725), - }, - [1927] = { - [sym__concat] = ACTIONS(4729), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4729), - [anon_sym_AMP_AMP] = ACTIONS(4729), - [anon_sym_PIPE_PIPE] = ACTIONS(4729), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4729), - [anon_sym_EQ_TILDE] = ACTIONS(4729), - [anon_sym_EQ_EQ] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4731), - [anon_sym_PLUS_EQ] = ACTIONS(4729), - [anon_sym_LT] = ACTIONS(4731), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_BANG_EQ] = ACTIONS(4729), - [anon_sym_PLUS] = ACTIONS(4731), - [anon_sym_DASH] = ACTIONS(4731), - [anon_sym_DASH_EQ] = ACTIONS(4729), - [anon_sym_LT_EQ] = ACTIONS(4729), - [anon_sym_GT_EQ] = ACTIONS(4729), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4729), - }, - [1928] = { - [sym__concat] = ACTIONS(4733), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4733), - [anon_sym_AMP_AMP] = ACTIONS(4733), - [anon_sym_PIPE_PIPE] = ACTIONS(4733), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4733), - [anon_sym_EQ_TILDE] = ACTIONS(4733), - [anon_sym_EQ_EQ] = ACTIONS(4733), - [anon_sym_EQ] = ACTIONS(4735), - [anon_sym_PLUS_EQ] = ACTIONS(4733), - [anon_sym_LT] = ACTIONS(4735), - [anon_sym_GT] = ACTIONS(4735), - [anon_sym_BANG_EQ] = ACTIONS(4733), - [anon_sym_PLUS] = ACTIONS(4735), - [anon_sym_DASH] = ACTIONS(4735), - [anon_sym_DASH_EQ] = ACTIONS(4733), - [anon_sym_LT_EQ] = ACTIONS(4733), - [anon_sym_GT_EQ] = ACTIONS(4733), - [anon_sym_PLUS_PLUS] = ACTIONS(4733), - [anon_sym_DASH_DASH] = ACTIONS(4733), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4733), - }, - [1929] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1930] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4993), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [1931] = { - [sym__concat] = ACTIONS(4769), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4769), - [anon_sym_EQ_TILDE] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ] = ACTIONS(4771), - [anon_sym_PLUS_EQ] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4771), - [anon_sym_GT] = ACTIONS(4771), - [anon_sym_BANG_EQ] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4771), - [anon_sym_DASH] = ACTIONS(4771), - [anon_sym_DASH_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4769), - }, - [1932] = { - [sym__concat] = ACTIONS(4789), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4789), - [anon_sym_AMP_AMP] = ACTIONS(4789), - [anon_sym_PIPE_PIPE] = ACTIONS(4789), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4789), - [anon_sym_EQ_TILDE] = ACTIONS(4789), - [anon_sym_EQ_EQ] = ACTIONS(4789), - [anon_sym_EQ] = ACTIONS(4791), - [anon_sym_PLUS_EQ] = ACTIONS(4789), - [anon_sym_LT] = ACTIONS(4791), - [anon_sym_GT] = ACTIONS(4791), - [anon_sym_BANG_EQ] = ACTIONS(4789), - [anon_sym_PLUS] = ACTIONS(4791), - [anon_sym_DASH] = ACTIONS(4791), - [anon_sym_DASH_EQ] = ACTIONS(4789), - [anon_sym_LT_EQ] = ACTIONS(4789), - [anon_sym_GT_EQ] = ACTIONS(4789), - [anon_sym_PLUS_PLUS] = ACTIONS(4789), - [anon_sym_DASH_DASH] = ACTIONS(4789), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4789), - }, - [1933] = { - [sym__concat] = ACTIONS(4793), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4793), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4793), - [anon_sym_EQ_TILDE] = ACTIONS(4793), - [anon_sym_EQ_EQ] = ACTIONS(4793), - [anon_sym_EQ] = ACTIONS(4795), - [anon_sym_PLUS_EQ] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_BANG_EQ] = ACTIONS(4793), - [anon_sym_PLUS] = ACTIONS(4795), - [anon_sym_DASH] = ACTIONS(4795), - [anon_sym_DASH_EQ] = ACTIONS(4793), - [anon_sym_LT_EQ] = ACTIONS(4793), - [anon_sym_GT_EQ] = ACTIONS(4793), - [anon_sym_PLUS_PLUS] = ACTIONS(4793), - [anon_sym_DASH_DASH] = ACTIONS(4793), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4793), - }, - [1934] = { - [sym__terminated_statement] = STATE(1173), - [sym_redirected_statement] = STATE(526), - [sym_for_statement] = STATE(526), - [sym_c_style_for_statement] = STATE(526), - [sym_while_statement] = STATE(526), - [sym_if_statement] = STATE(526), - [sym_case_statement] = STATE(526), - [sym_function_definition] = STATE(526), - [sym_compound_statement] = STATE(526), - [sym_subshell] = STATE(526), - [sym_pipeline] = STATE(526), - [sym_list] = STATE(526), - [sym_negated_command] = STATE(526), - [sym_test_command] = STATE(526), - [sym_declaration_command] = STATE(526), - [sym_unset_command] = STATE(526), - [sym_command] = STATE(526), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(527), - [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(1173), - [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(4995), - [anon_sym_elif] = ACTIONS(4995), - [anon_sym_else] = ACTIONS(4995), - [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), - }, - [1935] = { - [sym__simple_heredoc_body] = ACTIONS(4997), - [sym__heredoc_body_beginning] = ACTIONS(4997), - [sym_file_descriptor] = ACTIONS(4997), - [ts_builtin_sym_end] = ACTIONS(4997), - [anon_sym_SEMI] = ACTIONS(4999), - [anon_sym_esac] = ACTIONS(4997), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_RPAREN] = ACTIONS(4997), - [anon_sym_SEMI_SEMI] = ACTIONS(4997), - [anon_sym_PIPE_AMP] = ACTIONS(4997), - [anon_sym_AMP_AMP] = ACTIONS(4997), - [anon_sym_PIPE_PIPE] = ACTIONS(4997), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_GT_GT] = ACTIONS(4997), - [anon_sym_AMP_GT] = ACTIONS(4999), - [anon_sym_AMP_GT_GT] = ACTIONS(4997), - [anon_sym_LT_AMP] = ACTIONS(4997), - [anon_sym_GT_AMP] = ACTIONS(4997), - [anon_sym_LT_LT] = ACTIONS(4999), - [anon_sym_LT_LT_DASH] = ACTIONS(4997), - [anon_sym_LT_LT_LT] = ACTIONS(4997), - [anon_sym_BQUOTE] = ACTIONS(4997), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4997), - [anon_sym_AMP] = ACTIONS(4999), - }, - [1936] = { - [aux_sym_concatenation_repeat1] = STATE(1616), - [sym__concat] = ACTIONS(1195), - [anon_sym_PIPE] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(5001), - [sym_comment] = ACTIONS(57), - }, - [1937] = { - [aux_sym_concatenation_repeat1] = STATE(1616), - [sym__concat] = ACTIONS(1195), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [sym_comment] = ACTIONS(57), - }, - [1938] = { - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [sym_comment] = ACTIONS(57), - }, - [1939] = { - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_PLUS_EQ] = ACTIONS(5005), - [sym_comment] = ACTIONS(57), - }, - [1940] = { - [anon_sym_esac] = ACTIONS(5007), - [sym__special_characters] = ACTIONS(5009), - [anon_sym_DQUOTE] = ACTIONS(5009), - [anon_sym_DOLLAR] = ACTIONS(5011), - [sym_raw_string] = ACTIONS(5009), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5009), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5009), - [anon_sym_BQUOTE] = ACTIONS(5009), - [anon_sym_LT_LPAREN] = ACTIONS(5009), - [anon_sym_GT_LPAREN] = ACTIONS(5009), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5011), - }, - [1941] = { - [sym_subshell] = STATE(93), - [sym_test_command] = STATE(93), - [sym_command] = STATE(93), - [sym_command_name] = STATE(1954), - [sym_variable_assignment] = STATE(1959), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(1959), - [sym_concatenation] = STATE(1957), - [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), - [aux_sym_command_repeat1] = STATE(1959), - [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(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4474), - }, - [1942] = { - [sym_variable_assignment] = STATE(2158), - [sym_subscript] = STATE(2157), - [sym_concatenation] = STATE(2158), - [sym_string] = STATE(2152), - [sym_simple_expansion] = STATE(2152), - [sym_string_expansion] = STATE(2152), - [sym_expansion] = STATE(2152), - [sym_command_substitution] = STATE(2152), - [sym_process_substitution] = STATE(2152), - [aux_sym_declaration_command_repeat1] = STATE(2158), - [sym__simple_heredoc_body] = ACTIONS(181), - [sym__heredoc_body_beginning] = ACTIONS(181), - [sym_file_descriptor] = ACTIONS(181), - [sym_variable_name] = ACTIONS(5013), - [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(5015), - [anon_sym_DQUOTE] = ACTIONS(5017), - [anon_sym_DOLLAR] = ACTIONS(5019), - [sym_raw_string] = ACTIONS(5021), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LT_LPAREN] = ACTIONS(5029), - [anon_sym_GT_LPAREN] = ACTIONS(5029), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5031), - [sym_word] = ACTIONS(5033), - [anon_sym_LF] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(185), - }, - [1943] = { - [sym_concatenation] = STATE(2167), - [sym_string] = STATE(2162), - [sym_simple_expansion] = STATE(2162), - [sym_string_expansion] = STATE(2162), - [sym_expansion] = STATE(2162), - [sym_command_substitution] = STATE(2162), - [sym_process_substitution] = STATE(2162), - [aux_sym_unset_command_repeat1] = STATE(2167), - [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(5035), - [anon_sym_DQUOTE] = ACTIONS(5037), - [anon_sym_DOLLAR] = ACTIONS(5039), - [sym_raw_string] = ACTIONS(5041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5045), - [anon_sym_BQUOTE] = ACTIONS(5047), - [anon_sym_LT_LPAREN] = ACTIONS(5049), - [anon_sym_GT_LPAREN] = ACTIONS(5049), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5051), - [sym_word] = ACTIONS(5053), - [anon_sym_LF] = ACTIONS(207), - [anon_sym_AMP] = ACTIONS(209), - }, - [1944] = { - [aux_sym_concatenation_repeat1] = STATE(2169), - [sym__simple_heredoc_body] = ACTIONS(247), - [sym__heredoc_body_beginning] = ACTIONS(247), - [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(5055), - [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), - }, - [1945] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(2172), - [anon_sym_DQUOTE] = ACTIONS(5057), - [anon_sym_DOLLAR] = ACTIONS(5059), - [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), - }, - [1946] = { - [sym_string] = STATE(2174), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(5061), - [sym_raw_string] = ACTIONS(5063), - [anon_sym_POUND] = ACTIONS(5061), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5067), - [anon_sym_AT] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(5067), - [anon_sym_0] = ACTIONS(5065), - [anon_sym__] = ACTIONS(5065), - }, - [1947] = { - [aux_sym_concatenation_repeat1] = STATE(2169), - [sym__simple_heredoc_body] = ACTIONS(275), - [sym__heredoc_body_beginning] = ACTIONS(275), - [sym_file_descriptor] = ACTIONS(275), - [sym__concat] = ACTIONS(5055), - [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), - }, - [1948] = { - [sym_subscript] = STATE(2179), - [sym_variable_name] = ACTIONS(5069), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5073), - [anon_sym_POUND] = ACTIONS(5071), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5077), - [anon_sym_AT] = ACTIONS(5077), - [anon_sym_QMARK] = ACTIONS(5077), - [anon_sym_0] = ACTIONS(5075), - [anon_sym__] = ACTIONS(5075), - }, - [1949] = { - [sym__terminated_statement] = STATE(2182), - [sym_redirected_statement] = STATE(2180), - [sym_for_statement] = STATE(2180), - [sym_c_style_for_statement] = STATE(2180), - [sym_while_statement] = STATE(2180), - [sym_if_statement] = STATE(2180), - [sym_case_statement] = STATE(2180), - [sym_function_definition] = STATE(2180), - [sym_compound_statement] = STATE(2180), - [sym_subshell] = STATE(2180), - [sym_pipeline] = STATE(2180), - [sym_list] = STATE(2180), - [sym_negated_command] = STATE(2180), - [sym_test_command] = STATE(2180), - [sym_declaration_command] = STATE(2180), - [sym_unset_command] = STATE(2180), - [sym_command] = STATE(2180), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(2181), - [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(2182), - [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), - }, - [1950] = { - [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(162), - [sym_variable_assignment] = STATE(2184), - [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(2185), - [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), - }, - [1951] = { - [sym__terminated_statement] = STATE(2188), - [sym_redirected_statement] = STATE(2186), - [sym_for_statement] = STATE(2186), - [sym_c_style_for_statement] = STATE(2186), - [sym_while_statement] = STATE(2186), - [sym_if_statement] = STATE(2186), - [sym_case_statement] = STATE(2186), - [sym_function_definition] = STATE(2186), - [sym_compound_statement] = STATE(2186), - [sym_subshell] = STATE(2186), - [sym_pipeline] = STATE(2186), - [sym_list] = STATE(2186), - [sym_negated_command] = STATE(2186), - [sym_test_command] = STATE(2186), - [sym_declaration_command] = STATE(2186), - [sym_unset_command] = STATE(2186), - [sym_command] = STATE(2186), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(2187), - [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(2188), - [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), - }, - [1952] = { - [aux_sym_concatenation_repeat1] = STATE(2169), - [sym__simple_heredoc_body] = ACTIONS(275), - [sym__heredoc_body_beginning] = ACTIONS(275), - [sym_file_descriptor] = ACTIONS(275), - [sym__concat] = ACTIONS(5055), - [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), - }, - [1953] = { - [sym_file_redirect] = STATE(2197), - [sym_heredoc_redirect] = STATE(2197), - [sym_heredoc_body] = STATE(2196), - [sym_herestring_redirect] = STATE(2197), - [aux_sym_redirected_statement_repeat1] = STATE(2197), - [sym__simple_heredoc_body] = ACTIONS(299), - [sym__heredoc_body_beginning] = ACTIONS(301), - [sym_file_descriptor] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5081), - [anon_sym_esac] = ACTIONS(5083), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_SEMI_SEMI] = ACTIONS(5087), - [anon_sym_PIPE_AMP] = ACTIONS(5089), - [anon_sym_AMP_AMP] = ACTIONS(5091), - [anon_sym_PIPE_PIPE] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_GT_GT] = ACTIONS(5095), - [anon_sym_AMP_GT] = ACTIONS(5093), - [anon_sym_AMP_GT_GT] = ACTIONS(5095), - [anon_sym_LT_AMP] = ACTIONS(5095), - [anon_sym_GT_AMP] = ACTIONS(5095), - [anon_sym_LT_LT] = ACTIONS(321), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(5097), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5081), - }, - [1954] = { - [sym_concatenation] = STATE(2201), - [sym_string] = STATE(2200), - [sym_simple_expansion] = STATE(2200), - [sym_string_expansion] = STATE(2200), - [sym_expansion] = STATE(2200), - [sym_command_substitution] = STATE(2200), - [sym_process_substitution] = STATE(2200), - [aux_sym_command_repeat2] = STATE(2201), - [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(5101), - [anon_sym_EQ_EQ] = ACTIONS(5101), - [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(5103), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(5105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5107), - [anon_sym_LF] = ACTIONS(327), - [anon_sym_AMP] = ACTIONS(329), - }, - [1955] = { - [sym_file_redirect] = STATE(2197), - [sym_heredoc_redirect] = STATE(2197), - [sym_heredoc_body] = STATE(2196), - [sym_herestring_redirect] = STATE(2197), - [aux_sym_redirected_statement_repeat1] = STATE(2197), - [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(5081), - [anon_sym_esac] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_SEMI_SEMI] = ACTIONS(5087), - [anon_sym_PIPE_AMP] = ACTIONS(5089), - [anon_sym_AMP_AMP] = ACTIONS(5091), - [anon_sym_PIPE_PIPE] = ACTIONS(5091), - [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(5097), - [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(5099), - [anon_sym_AMP] = ACTIONS(5081), - }, - [1956] = { - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_PLUS_EQ] = ACTIONS(5005), - [sym_comment] = ACTIONS(57), - }, - [1957] = { - [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), - }, - [1958] = { - [sym__terminated_statement] = STATE(2205), - [sym_redirected_statement] = STATE(2203), - [sym_for_statement] = STATE(2203), - [sym_c_style_for_statement] = STATE(2203), - [sym_while_statement] = STATE(2203), - [sym_if_statement] = STATE(2203), - [sym_case_statement] = STATE(2203), - [sym_function_definition] = STATE(2203), - [sym_compound_statement] = STATE(2203), - [sym_subshell] = STATE(2203), - [sym_pipeline] = STATE(2203), - [sym_list] = STATE(2203), - [sym_negated_command] = STATE(2203), - [sym_test_command] = STATE(2203), - [sym_declaration_command] = STATE(2203), - [sym_unset_command] = STATE(2203), - [sym_command] = STATE(2203), - [sym_command_name] = STATE(1954), - [sym_variable_assignment] = STATE(2204), - [sym_subscript] = STATE(1956), - [sym_file_redirect] = STATE(1959), - [sym_concatenation] = STATE(1957), - [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), - [aux_sym__statements_repeat1] = STATE(2205), - [aux_sym_command_repeat1] = STATE(1959), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4456), - [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(5007), - [anon_sym_SEMI_SEMI] = ACTIONS(5109), - [anon_sym_function] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_LBRACK_LBRACK] = ACTIONS(31), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), - [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(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4484), - }, - [1959] = { - [sym_command_name] = STATE(2206), - [sym_variable_assignment] = STATE(189), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(189), - [sym_concatenation] = STATE(1957), - [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), - [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(5111), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4474), - }, - [1960] = { - [sym__terminated_statement] = STATE(2207), - [sym_redirected_statement] = STATE(2203), - [sym_for_statement] = STATE(2203), - [sym_c_style_for_statement] = STATE(2203), - [sym_while_statement] = STATE(2203), - [sym_if_statement] = STATE(2203), - [sym_case_statement] = STATE(2203), - [sym_function_definition] = STATE(2203), - [sym_compound_statement] = STATE(2203), - [sym_subshell] = STATE(2203), - [sym_pipeline] = STATE(2203), - [sym_list] = STATE(2203), - [sym_negated_command] = STATE(2203), - [sym_test_command] = STATE(2203), - [sym_declaration_command] = STATE(2203), - [sym_unset_command] = STATE(2203), - [sym_command] = STATE(2203), - [sym_command_name] = STATE(1954), - [sym_variable_assignment] = STATE(2204), - [sym_subscript] = STATE(1956), - [sym_file_redirect] = STATE(1959), - [sym_concatenation] = STATE(1957), - [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), - [aux_sym__statements_repeat1] = STATE(2207), - [aux_sym_command_repeat1] = STATE(1959), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4456), - [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(5007), - [anon_sym_SEMI_SEMI] = ACTIONS(5109), - [anon_sym_function] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_LBRACK_LBRACK] = ACTIONS(31), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), - [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(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4484), - }, - [1961] = { - [aux_sym_case_item_repeat1] = STATE(1961), - [anon_sym_PIPE] = ACTIONS(5113), - [anon_sym_RPAREN] = ACTIONS(5003), - [sym_comment] = ACTIONS(57), - }, - [1962] = { - [aux_sym_concatenation_repeat1] = STATE(1962), - [sym__concat] = ACTIONS(3503), - [anon_sym_PIPE] = ACTIONS(1730), - [anon_sym_RPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - }, - [1963] = { - [anon_sym_esac] = ACTIONS(5116), - [sym__special_characters] = ACTIONS(5118), - [anon_sym_DQUOTE] = ACTIONS(5118), - [anon_sym_DOLLAR] = ACTIONS(5120), - [sym_raw_string] = ACTIONS(5118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5118), - [anon_sym_BQUOTE] = ACTIONS(5118), - [anon_sym_LT_LPAREN] = ACTIONS(5118), - [anon_sym_GT_LPAREN] = ACTIONS(5118), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5120), - }, - [1964] = { - [sym_file_redirect] = STATE(2197), - [sym_heredoc_redirect] = STATE(2197), - [sym_heredoc_body] = STATE(2196), - [sym_herestring_redirect] = STATE(2197), - [aux_sym_redirected_statement_repeat1] = STATE(2197), - [sym__simple_heredoc_body] = ACTIONS(299), - [sym__heredoc_body_beginning] = ACTIONS(301), - [sym_file_descriptor] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5081), - [anon_sym_esac] = ACTIONS(5122), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_SEMI_SEMI] = ACTIONS(5124), - [anon_sym_PIPE_AMP] = ACTIONS(5089), - [anon_sym_AMP_AMP] = ACTIONS(5091), - [anon_sym_PIPE_PIPE] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_GT_GT] = ACTIONS(5095), - [anon_sym_AMP_GT] = ACTIONS(5093), - [anon_sym_AMP_GT_GT] = ACTIONS(5095), - [anon_sym_LT_AMP] = ACTIONS(5095), - [anon_sym_GT_AMP] = ACTIONS(5095), - [anon_sym_LT_LT] = ACTIONS(321), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(5097), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5081), - }, - [1965] = { - [sym_file_redirect] = STATE(2197), - [sym_heredoc_redirect] = STATE(2197), - [sym_heredoc_body] = STATE(2196), - [sym_herestring_redirect] = STATE(2197), - [aux_sym_redirected_statement_repeat1] = STATE(2197), - [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(5081), - [anon_sym_esac] = ACTIONS(5116), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_SEMI_SEMI] = ACTIONS(5124), - [anon_sym_PIPE_AMP] = ACTIONS(5089), - [anon_sym_AMP_AMP] = ACTIONS(5091), - [anon_sym_PIPE_PIPE] = ACTIONS(5091), - [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(5097), - [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(5099), - [anon_sym_AMP] = ACTIONS(5081), - }, - [1966] = { - [sym__terminated_statement] = STATE(2205), - [sym_redirected_statement] = STATE(2210), - [sym_for_statement] = STATE(2210), - [sym_c_style_for_statement] = STATE(2210), - [sym_while_statement] = STATE(2210), - [sym_if_statement] = STATE(2210), - [sym_case_statement] = STATE(2210), - [sym_function_definition] = STATE(2210), - [sym_compound_statement] = STATE(2210), - [sym_subshell] = STATE(2210), - [sym_pipeline] = STATE(2210), - [sym_list] = STATE(2210), - [sym_negated_command] = STATE(2210), - [sym_test_command] = STATE(2210), - [sym_declaration_command] = STATE(2210), - [sym_unset_command] = STATE(2210), - [sym_command] = STATE(2210), - [sym_command_name] = STATE(1954), - [sym_variable_assignment] = STATE(2211), - [sym_subscript] = STATE(1956), - [sym_file_redirect] = STATE(1959), - [sym_concatenation] = STATE(1957), - [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), - [aux_sym__statements_repeat1] = STATE(2205), - [aux_sym_command_repeat1] = STATE(1959), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4456), - [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(5116), - [anon_sym_SEMI_SEMI] = ACTIONS(5126), - [anon_sym_function] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_LBRACK_LBRACK] = ACTIONS(31), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), - [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(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4484), - }, - [1967] = { - [sym__terminated_statement] = STATE(2212), - [sym_redirected_statement] = STATE(2210), - [sym_for_statement] = STATE(2210), - [sym_c_style_for_statement] = STATE(2210), - [sym_while_statement] = STATE(2210), - [sym_if_statement] = STATE(2210), - [sym_case_statement] = STATE(2210), - [sym_function_definition] = STATE(2210), - [sym_compound_statement] = STATE(2210), - [sym_subshell] = STATE(2210), - [sym_pipeline] = STATE(2210), - [sym_list] = STATE(2210), - [sym_negated_command] = STATE(2210), - [sym_test_command] = STATE(2210), - [sym_declaration_command] = STATE(2210), - [sym_unset_command] = STATE(2210), - [sym_command] = STATE(2210), - [sym_command_name] = STATE(1954), - [sym_variable_assignment] = STATE(2211), - [sym_subscript] = STATE(1956), - [sym_file_redirect] = STATE(1959), - [sym_concatenation] = STATE(1957), - [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), - [aux_sym__statements_repeat1] = STATE(2212), - [aux_sym_command_repeat1] = STATE(1959), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4456), - [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(5116), - [anon_sym_SEMI_SEMI] = ACTIONS(5126), - [anon_sym_function] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_LBRACK_LBRACK] = ACTIONS(31), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), - [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(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4484), - }, - [1968] = { - [sym__simple_heredoc_body] = ACTIONS(5128), - [sym__heredoc_body_beginning] = ACTIONS(5128), - [sym_file_descriptor] = ACTIONS(5128), - [ts_builtin_sym_end] = ACTIONS(5128), - [anon_sym_SEMI] = ACTIONS(5130), - [anon_sym_esac] = ACTIONS(5128), - [anon_sym_PIPE] = ACTIONS(5130), - [anon_sym_RPAREN] = ACTIONS(5128), - [anon_sym_SEMI_SEMI] = ACTIONS(5128), - [anon_sym_PIPE_AMP] = ACTIONS(5128), - [anon_sym_AMP_AMP] = ACTIONS(5128), - [anon_sym_PIPE_PIPE] = ACTIONS(5128), - [anon_sym_LT] = ACTIONS(5130), - [anon_sym_GT] = ACTIONS(5130), - [anon_sym_GT_GT] = ACTIONS(5128), - [anon_sym_AMP_GT] = ACTIONS(5130), - [anon_sym_AMP_GT_GT] = ACTIONS(5128), - [anon_sym_LT_AMP] = ACTIONS(5128), - [anon_sym_GT_AMP] = ACTIONS(5128), - [anon_sym_LT_LT] = ACTIONS(5130), - [anon_sym_LT_LT_DASH] = ACTIONS(5128), - [anon_sym_LT_LT_LT] = ACTIONS(5128), - [anon_sym_BQUOTE] = ACTIONS(5128), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5128), - [anon_sym_AMP] = ACTIONS(5130), - }, - [1969] = { - [aux_sym_case_item_repeat1] = STATE(2214), - [aux_sym_concatenation_repeat1] = STATE(1616), - [sym__concat] = ACTIONS(1195), - [anon_sym_PIPE] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(5132), - [sym_comment] = ACTIONS(57), - }, - [1970] = { - [aux_sym_case_item_repeat1] = STATE(2216), - [aux_sym_concatenation_repeat1] = STATE(1616), - [sym__concat] = ACTIONS(1195), - [anon_sym_PIPE] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(5134), - [sym_comment] = ACTIONS(57), - }, - [1971] = { - [aux_sym_case_item_repeat1] = STATE(2216), - [anon_sym_PIPE] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(5134), - [sym_comment] = ACTIONS(57), - }, - [1972] = { - [anon_sym_esac] = ACTIONS(5136), - [sym_comment] = ACTIONS(57), - }, - [1973] = { - [sym__simple_heredoc_body] = ACTIONS(5138), - [sym__heredoc_body_beginning] = ACTIONS(5138), - [sym_file_descriptor] = ACTIONS(5138), - [ts_builtin_sym_end] = ACTIONS(5138), - [anon_sym_SEMI] = ACTIONS(5140), - [anon_sym_esac] = ACTIONS(5138), - [anon_sym_PIPE] = ACTIONS(5140), - [anon_sym_RPAREN] = ACTIONS(5138), - [anon_sym_SEMI_SEMI] = ACTIONS(5138), - [anon_sym_PIPE_AMP] = ACTIONS(5138), - [anon_sym_AMP_AMP] = ACTIONS(5138), - [anon_sym_PIPE_PIPE] = ACTIONS(5138), - [anon_sym_LT] = ACTIONS(5140), - [anon_sym_GT] = ACTIONS(5140), - [anon_sym_GT_GT] = ACTIONS(5138), - [anon_sym_AMP_GT] = ACTIONS(5140), - [anon_sym_AMP_GT_GT] = ACTIONS(5138), - [anon_sym_LT_AMP] = ACTIONS(5138), - [anon_sym_GT_AMP] = ACTIONS(5138), - [anon_sym_LT_LT] = ACTIONS(5140), - [anon_sym_LT_LT_DASH] = ACTIONS(5138), - [anon_sym_LT_LT_LT] = ACTIONS(5138), - [anon_sym_BQUOTE] = ACTIONS(5138), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5138), - [anon_sym_AMP] = ACTIONS(5140), - }, - [1974] = { - [anon_sym_esac] = ACTIONS(5142), - [sym_comment] = ACTIONS(57), - }, - [1975] = { - [sym__concat] = ACTIONS(4725), - [anon_sym_in] = ACTIONS(4725), - [anon_sym_SEMI] = ACTIONS(4727), - [anon_sym_SEMI_SEMI] = ACTIONS(4725), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4725), - [anon_sym_AMP] = ACTIONS(4725), - }, - [1976] = { - [sym__concat] = ACTIONS(4729), - [anon_sym_in] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_SEMI_SEMI] = ACTIONS(4729), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4729), - [anon_sym_AMP] = ACTIONS(4729), - }, - [1977] = { - [sym__concat] = ACTIONS(4733), - [anon_sym_in] = ACTIONS(4733), - [anon_sym_SEMI] = ACTIONS(4735), - [anon_sym_SEMI_SEMI] = ACTIONS(4733), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4733), - [anon_sym_AMP] = ACTIONS(4733), - }, - [1978] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5144), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5146), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__concat] = ACTIONS(4769), - [anon_sym_in] = ACTIONS(4769), - [anon_sym_SEMI] = ACTIONS(4771), - [anon_sym_SEMI_SEMI] = ACTIONS(4769), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4769), - [anon_sym_AMP] = ACTIONS(4769), - }, - [1981] = { - [sym__concat] = ACTIONS(4789), - [anon_sym_in] = ACTIONS(4789), - [anon_sym_SEMI] = ACTIONS(4791), - [anon_sym_SEMI_SEMI] = ACTIONS(4789), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4789), - [anon_sym_AMP] = ACTIONS(4789), - }, - [1982] = { - [sym__concat] = ACTIONS(4793), - [anon_sym_in] = ACTIONS(4793), - [anon_sym_SEMI] = ACTIONS(4795), - [anon_sym_SEMI_SEMI] = ACTIONS(4793), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4793), - [anon_sym_AMP] = ACTIONS(4793), - }, - [1983] = { - [sym__concat] = ACTIONS(4725), - [anon_sym_AMP_AMP] = ACTIONS(4725), - [anon_sym_PIPE_PIPE] = ACTIONS(4725), - [anon_sym_RBRACK] = ACTIONS(4725), - [anon_sym_EQ_TILDE] = ACTIONS(4725), - [anon_sym_EQ_EQ] = ACTIONS(4725), - [anon_sym_EQ] = ACTIONS(4727), - [anon_sym_PLUS_EQ] = ACTIONS(4725), - [anon_sym_LT] = ACTIONS(4727), - [anon_sym_GT] = ACTIONS(4727), - [anon_sym_BANG_EQ] = ACTIONS(4725), - [anon_sym_PLUS] = ACTIONS(4727), - [anon_sym_DASH] = ACTIONS(4727), - [anon_sym_DASH_EQ] = ACTIONS(4725), - [anon_sym_LT_EQ] = ACTIONS(4725), - [anon_sym_GT_EQ] = ACTIONS(4725), - [anon_sym_PLUS_PLUS] = ACTIONS(4725), - [anon_sym_DASH_DASH] = ACTIONS(4725), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4725), - }, - [1984] = { - [sym__concat] = ACTIONS(4729), - [anon_sym_AMP_AMP] = ACTIONS(4729), - [anon_sym_PIPE_PIPE] = ACTIONS(4729), - [anon_sym_RBRACK] = ACTIONS(4729), - [anon_sym_EQ_TILDE] = ACTIONS(4729), - [anon_sym_EQ_EQ] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4731), - [anon_sym_PLUS_EQ] = ACTIONS(4729), - [anon_sym_LT] = ACTIONS(4731), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_BANG_EQ] = ACTIONS(4729), - [anon_sym_PLUS] = ACTIONS(4731), - [anon_sym_DASH] = ACTIONS(4731), - [anon_sym_DASH_EQ] = ACTIONS(4729), - [anon_sym_LT_EQ] = ACTIONS(4729), - [anon_sym_GT_EQ] = ACTIONS(4729), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4729), - }, - [1985] = { - [sym__concat] = ACTIONS(4733), - [anon_sym_AMP_AMP] = ACTIONS(4733), - [anon_sym_PIPE_PIPE] = ACTIONS(4733), - [anon_sym_RBRACK] = ACTIONS(4733), - [anon_sym_EQ_TILDE] = ACTIONS(4733), - [anon_sym_EQ_EQ] = ACTIONS(4733), - [anon_sym_EQ] = ACTIONS(4735), - [anon_sym_PLUS_EQ] = ACTIONS(4733), - [anon_sym_LT] = ACTIONS(4735), - [anon_sym_GT] = ACTIONS(4735), - [anon_sym_BANG_EQ] = ACTIONS(4733), - [anon_sym_PLUS] = ACTIONS(4735), - [anon_sym_DASH] = ACTIONS(4735), - [anon_sym_DASH_EQ] = ACTIONS(4733), - [anon_sym_LT_EQ] = ACTIONS(4733), - [anon_sym_GT_EQ] = ACTIONS(4733), - [anon_sym_PLUS_PLUS] = ACTIONS(4733), - [anon_sym_DASH_DASH] = ACTIONS(4733), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4733), - }, - [1986] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5148), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5150), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym__concat] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_RBRACK] = ACTIONS(4769), - [anon_sym_EQ_TILDE] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ] = ACTIONS(4771), - [anon_sym_PLUS_EQ] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4771), - [anon_sym_GT] = ACTIONS(4771), - [anon_sym_BANG_EQ] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4771), - [anon_sym_DASH] = ACTIONS(4771), - [anon_sym_DASH_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4769), - }, - [1989] = { - [sym__concat] = ACTIONS(4789), - [anon_sym_AMP_AMP] = ACTIONS(4789), - [anon_sym_PIPE_PIPE] = ACTIONS(4789), - [anon_sym_RBRACK] = ACTIONS(4789), - [anon_sym_EQ_TILDE] = ACTIONS(4789), - [anon_sym_EQ_EQ] = ACTIONS(4789), - [anon_sym_EQ] = ACTIONS(4791), - [anon_sym_PLUS_EQ] = ACTIONS(4789), - [anon_sym_LT] = ACTIONS(4791), - [anon_sym_GT] = ACTIONS(4791), - [anon_sym_BANG_EQ] = ACTIONS(4789), - [anon_sym_PLUS] = ACTIONS(4791), - [anon_sym_DASH] = ACTIONS(4791), - [anon_sym_DASH_EQ] = ACTIONS(4789), - [anon_sym_LT_EQ] = ACTIONS(4789), - [anon_sym_GT_EQ] = ACTIONS(4789), - [anon_sym_PLUS_PLUS] = ACTIONS(4789), - [anon_sym_DASH_DASH] = ACTIONS(4789), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4789), - }, - [1990] = { - [sym__concat] = ACTIONS(4793), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_RBRACK] = ACTIONS(4793), - [anon_sym_EQ_TILDE] = ACTIONS(4793), - [anon_sym_EQ_EQ] = ACTIONS(4793), - [anon_sym_EQ] = ACTIONS(4795), - [anon_sym_PLUS_EQ] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_BANG_EQ] = ACTIONS(4793), - [anon_sym_PLUS] = ACTIONS(4795), - [anon_sym_DASH] = ACTIONS(4795), - [anon_sym_DASH_EQ] = ACTIONS(4793), - [anon_sym_LT_EQ] = ACTIONS(4793), - [anon_sym_GT_EQ] = ACTIONS(4793), - [anon_sym_PLUS_PLUS] = ACTIONS(4793), - [anon_sym_DASH_DASH] = ACTIONS(4793), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4793), - }, - [1991] = { - [sym__simple_heredoc_body] = ACTIONS(4725), - [sym__heredoc_body_beginning] = ACTIONS(4725), - [sym_file_descriptor] = ACTIONS(4725), - [sym__concat] = ACTIONS(4725), - [sym_variable_name] = ACTIONS(4725), - [ts_builtin_sym_end] = ACTIONS(4725), - [anon_sym_SEMI] = ACTIONS(4727), - [anon_sym_PIPE] = ACTIONS(4727), - [anon_sym_RPAREN] = ACTIONS(4725), - [anon_sym_SEMI_SEMI] = ACTIONS(4725), - [anon_sym_PIPE_AMP] = ACTIONS(4725), - [anon_sym_AMP_AMP] = ACTIONS(4725), - [anon_sym_PIPE_PIPE] = ACTIONS(4725), - [anon_sym_LT] = ACTIONS(4727), - [anon_sym_GT] = ACTIONS(4727), - [anon_sym_GT_GT] = ACTIONS(4725), - [anon_sym_AMP_GT] = ACTIONS(4727), - [anon_sym_AMP_GT_GT] = ACTIONS(4725), - [anon_sym_LT_AMP] = ACTIONS(4725), - [anon_sym_GT_AMP] = ACTIONS(4725), - [anon_sym_LT_LT] = ACTIONS(4727), - [anon_sym_LT_LT_DASH] = ACTIONS(4725), - [anon_sym_LT_LT_LT] = ACTIONS(4725), - [sym__special_characters] = ACTIONS(4725), - [anon_sym_DQUOTE] = ACTIONS(4725), - [anon_sym_DOLLAR] = ACTIONS(4727), - [sym_raw_string] = ACTIONS(4725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4725), - [anon_sym_BQUOTE] = ACTIONS(4725), - [anon_sym_LT_LPAREN] = ACTIONS(4725), - [anon_sym_GT_LPAREN] = ACTIONS(4725), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4727), - [sym_word] = ACTIONS(4727), - [anon_sym_LF] = ACTIONS(4725), - [anon_sym_AMP] = ACTIONS(4727), - }, - [1992] = { - [sym__simple_heredoc_body] = ACTIONS(4729), - [sym__heredoc_body_beginning] = ACTIONS(4729), - [sym_file_descriptor] = ACTIONS(4729), - [sym__concat] = ACTIONS(4729), - [sym_variable_name] = ACTIONS(4729), - [ts_builtin_sym_end] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_PIPE] = ACTIONS(4731), - [anon_sym_RPAREN] = ACTIONS(4729), - [anon_sym_SEMI_SEMI] = ACTIONS(4729), - [anon_sym_PIPE_AMP] = ACTIONS(4729), - [anon_sym_AMP_AMP] = ACTIONS(4729), - [anon_sym_PIPE_PIPE] = ACTIONS(4729), - [anon_sym_LT] = ACTIONS(4731), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_GT_GT] = ACTIONS(4729), - [anon_sym_AMP_GT] = ACTIONS(4731), - [anon_sym_AMP_GT_GT] = ACTIONS(4729), - [anon_sym_LT_AMP] = ACTIONS(4729), - [anon_sym_GT_AMP] = ACTIONS(4729), - [anon_sym_LT_LT] = ACTIONS(4731), - [anon_sym_LT_LT_DASH] = ACTIONS(4729), - [anon_sym_LT_LT_LT] = ACTIONS(4729), - [sym__special_characters] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(4729), - [anon_sym_DOLLAR] = ACTIONS(4731), - [sym_raw_string] = ACTIONS(4729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4729), - [anon_sym_BQUOTE] = ACTIONS(4729), - [anon_sym_LT_LPAREN] = ACTIONS(4729), - [anon_sym_GT_LPAREN] = ACTIONS(4729), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4731), - [sym_word] = ACTIONS(4731), - [anon_sym_LF] = ACTIONS(4729), - [anon_sym_AMP] = ACTIONS(4731), - }, - [1993] = { - [sym__simple_heredoc_body] = ACTIONS(4733), - [sym__heredoc_body_beginning] = ACTIONS(4733), - [sym_file_descriptor] = ACTIONS(4733), - [sym__concat] = ACTIONS(4733), - [sym_variable_name] = ACTIONS(4733), - [ts_builtin_sym_end] = ACTIONS(4733), - [anon_sym_SEMI] = ACTIONS(4735), - [anon_sym_PIPE] = ACTIONS(4735), - [anon_sym_RPAREN] = ACTIONS(4733), - [anon_sym_SEMI_SEMI] = ACTIONS(4733), - [anon_sym_PIPE_AMP] = ACTIONS(4733), - [anon_sym_AMP_AMP] = ACTIONS(4733), - [anon_sym_PIPE_PIPE] = ACTIONS(4733), - [anon_sym_LT] = ACTIONS(4735), - [anon_sym_GT] = ACTIONS(4735), - [anon_sym_GT_GT] = ACTIONS(4733), - [anon_sym_AMP_GT] = ACTIONS(4735), - [anon_sym_AMP_GT_GT] = ACTIONS(4733), - [anon_sym_LT_AMP] = ACTIONS(4733), - [anon_sym_GT_AMP] = ACTIONS(4733), - [anon_sym_LT_LT] = ACTIONS(4735), - [anon_sym_LT_LT_DASH] = ACTIONS(4733), - [anon_sym_LT_LT_LT] = ACTIONS(4733), - [sym__special_characters] = ACTIONS(4733), - [anon_sym_DQUOTE] = ACTIONS(4733), - [anon_sym_DOLLAR] = ACTIONS(4735), - [sym_raw_string] = ACTIONS(4733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4733), - [anon_sym_BQUOTE] = ACTIONS(4733), - [anon_sym_LT_LPAREN] = ACTIONS(4733), - [anon_sym_GT_LPAREN] = ACTIONS(4733), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4735), - [sym_word] = ACTIONS(4735), - [anon_sym_LF] = ACTIONS(4733), - [anon_sym_AMP] = ACTIONS(4735), - }, - [1994] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5152), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5154), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym__simple_heredoc_body] = ACTIONS(4769), - [sym__heredoc_body_beginning] = ACTIONS(4769), - [sym_file_descriptor] = ACTIONS(4769), - [sym__concat] = ACTIONS(4769), - [sym_variable_name] = ACTIONS(4769), - [ts_builtin_sym_end] = ACTIONS(4769), - [anon_sym_SEMI] = ACTIONS(4771), - [anon_sym_PIPE] = ACTIONS(4771), - [anon_sym_RPAREN] = ACTIONS(4769), - [anon_sym_SEMI_SEMI] = ACTIONS(4769), - [anon_sym_PIPE_AMP] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4771), - [anon_sym_GT] = ACTIONS(4771), - [anon_sym_GT_GT] = ACTIONS(4769), - [anon_sym_AMP_GT] = ACTIONS(4771), - [anon_sym_AMP_GT_GT] = ACTIONS(4769), - [anon_sym_LT_AMP] = ACTIONS(4769), - [anon_sym_GT_AMP] = ACTIONS(4769), - [anon_sym_LT_LT] = ACTIONS(4771), - [anon_sym_LT_LT_DASH] = ACTIONS(4769), - [anon_sym_LT_LT_LT] = ACTIONS(4769), - [sym__special_characters] = ACTIONS(4769), - [anon_sym_DQUOTE] = ACTIONS(4769), - [anon_sym_DOLLAR] = ACTIONS(4771), - [sym_raw_string] = ACTIONS(4769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4769), - [anon_sym_BQUOTE] = ACTIONS(4769), - [anon_sym_LT_LPAREN] = ACTIONS(4769), - [anon_sym_GT_LPAREN] = ACTIONS(4769), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4771), - [sym_word] = ACTIONS(4771), - [anon_sym_LF] = ACTIONS(4769), - [anon_sym_AMP] = ACTIONS(4771), - }, - [1997] = { - [sym__simple_heredoc_body] = ACTIONS(4789), - [sym__heredoc_body_beginning] = ACTIONS(4789), - [sym_file_descriptor] = ACTIONS(4789), - [sym__concat] = ACTIONS(4789), - [sym_variable_name] = ACTIONS(4789), - [ts_builtin_sym_end] = ACTIONS(4789), - [anon_sym_SEMI] = ACTIONS(4791), - [anon_sym_PIPE] = ACTIONS(4791), - [anon_sym_RPAREN] = ACTIONS(4789), - [anon_sym_SEMI_SEMI] = ACTIONS(4789), - [anon_sym_PIPE_AMP] = ACTIONS(4789), - [anon_sym_AMP_AMP] = ACTIONS(4789), - [anon_sym_PIPE_PIPE] = ACTIONS(4789), - [anon_sym_LT] = ACTIONS(4791), - [anon_sym_GT] = ACTIONS(4791), - [anon_sym_GT_GT] = ACTIONS(4789), - [anon_sym_AMP_GT] = ACTIONS(4791), - [anon_sym_AMP_GT_GT] = ACTIONS(4789), - [anon_sym_LT_AMP] = ACTIONS(4789), - [anon_sym_GT_AMP] = ACTIONS(4789), - [anon_sym_LT_LT] = ACTIONS(4791), - [anon_sym_LT_LT_DASH] = ACTIONS(4789), - [anon_sym_LT_LT_LT] = ACTIONS(4789), - [sym__special_characters] = ACTIONS(4789), - [anon_sym_DQUOTE] = ACTIONS(4789), - [anon_sym_DOLLAR] = ACTIONS(4791), - [sym_raw_string] = ACTIONS(4789), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4789), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4789), - [anon_sym_BQUOTE] = ACTIONS(4789), - [anon_sym_LT_LPAREN] = ACTIONS(4789), - [anon_sym_GT_LPAREN] = ACTIONS(4789), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4791), - [sym_word] = ACTIONS(4791), - [anon_sym_LF] = ACTIONS(4789), - [anon_sym_AMP] = ACTIONS(4791), - }, - [1998] = { - [sym__simple_heredoc_body] = ACTIONS(4793), - [sym__heredoc_body_beginning] = ACTIONS(4793), - [sym_file_descriptor] = ACTIONS(4793), - [sym__concat] = ACTIONS(4793), - [sym_variable_name] = ACTIONS(4793), - [ts_builtin_sym_end] = ACTIONS(4793), - [anon_sym_SEMI] = ACTIONS(4795), - [anon_sym_PIPE] = ACTIONS(4795), - [anon_sym_RPAREN] = ACTIONS(4793), - [anon_sym_SEMI_SEMI] = ACTIONS(4793), - [anon_sym_PIPE_AMP] = ACTIONS(4793), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_GT_GT] = ACTIONS(4793), - [anon_sym_AMP_GT] = ACTIONS(4795), - [anon_sym_AMP_GT_GT] = ACTIONS(4793), - [anon_sym_LT_AMP] = ACTIONS(4793), - [anon_sym_GT_AMP] = ACTIONS(4793), - [anon_sym_LT_LT] = ACTIONS(4795), - [anon_sym_LT_LT_DASH] = ACTIONS(4793), - [anon_sym_LT_LT_LT] = ACTIONS(4793), - [sym__special_characters] = ACTIONS(4793), - [anon_sym_DQUOTE] = ACTIONS(4793), - [anon_sym_DOLLAR] = ACTIONS(4795), - [sym_raw_string] = ACTIONS(4793), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4793), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4793), - [anon_sym_BQUOTE] = ACTIONS(4793), - [anon_sym_LT_LPAREN] = ACTIONS(4793), - [anon_sym_GT_LPAREN] = ACTIONS(4793), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4795), - [sym_word] = ACTIONS(4795), - [anon_sym_LF] = ACTIONS(4793), - [anon_sym_AMP] = ACTIONS(4795), - }, - [1999] = { - [sym__simple_heredoc_body] = ACTIONS(4725), - [sym__heredoc_body_beginning] = ACTIONS(4725), - [sym_file_descriptor] = ACTIONS(4725), - [sym__concat] = ACTIONS(4725), - [ts_builtin_sym_end] = ACTIONS(4725), - [anon_sym_SEMI] = ACTIONS(4727), - [anon_sym_PIPE] = ACTIONS(4727), - [anon_sym_RPAREN] = ACTIONS(4725), - [anon_sym_SEMI_SEMI] = ACTIONS(4725), - [anon_sym_PIPE_AMP] = ACTIONS(4725), - [anon_sym_AMP_AMP] = ACTIONS(4725), - [anon_sym_PIPE_PIPE] = ACTIONS(4725), - [anon_sym_LT] = ACTIONS(4727), - [anon_sym_GT] = ACTIONS(4727), - [anon_sym_GT_GT] = ACTIONS(4725), - [anon_sym_AMP_GT] = ACTIONS(4727), - [anon_sym_AMP_GT_GT] = ACTIONS(4725), - [anon_sym_LT_AMP] = ACTIONS(4725), - [anon_sym_GT_AMP] = ACTIONS(4725), - [anon_sym_LT_LT] = ACTIONS(4727), - [anon_sym_LT_LT_DASH] = ACTIONS(4725), - [anon_sym_LT_LT_LT] = ACTIONS(4725), - [sym__special_characters] = ACTIONS(4725), - [anon_sym_DQUOTE] = ACTIONS(4725), - [anon_sym_DOLLAR] = ACTIONS(4727), - [sym_raw_string] = ACTIONS(4725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4725), - [anon_sym_BQUOTE] = ACTIONS(4725), - [anon_sym_LT_LPAREN] = ACTIONS(4725), - [anon_sym_GT_LPAREN] = ACTIONS(4725), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4727), - [sym_word] = ACTIONS(4727), - [anon_sym_LF] = ACTIONS(4725), - [anon_sym_AMP] = ACTIONS(4727), - }, - [2000] = { - [sym__simple_heredoc_body] = ACTIONS(4729), - [sym__heredoc_body_beginning] = ACTIONS(4729), - [sym_file_descriptor] = ACTIONS(4729), - [sym__concat] = ACTIONS(4729), - [ts_builtin_sym_end] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_PIPE] = ACTIONS(4731), - [anon_sym_RPAREN] = ACTIONS(4729), - [anon_sym_SEMI_SEMI] = ACTIONS(4729), - [anon_sym_PIPE_AMP] = ACTIONS(4729), - [anon_sym_AMP_AMP] = ACTIONS(4729), - [anon_sym_PIPE_PIPE] = ACTIONS(4729), - [anon_sym_LT] = ACTIONS(4731), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_GT_GT] = ACTIONS(4729), - [anon_sym_AMP_GT] = ACTIONS(4731), - [anon_sym_AMP_GT_GT] = ACTIONS(4729), - [anon_sym_LT_AMP] = ACTIONS(4729), - [anon_sym_GT_AMP] = ACTIONS(4729), - [anon_sym_LT_LT] = ACTIONS(4731), - [anon_sym_LT_LT_DASH] = ACTIONS(4729), - [anon_sym_LT_LT_LT] = ACTIONS(4729), - [sym__special_characters] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(4729), - [anon_sym_DOLLAR] = ACTIONS(4731), - [sym_raw_string] = ACTIONS(4729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4729), - [anon_sym_BQUOTE] = ACTIONS(4729), - [anon_sym_LT_LPAREN] = ACTIONS(4729), - [anon_sym_GT_LPAREN] = ACTIONS(4729), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4731), - [sym_word] = ACTIONS(4731), - [anon_sym_LF] = ACTIONS(4729), - [anon_sym_AMP] = ACTIONS(4731), - }, - [2001] = { - [sym__simple_heredoc_body] = ACTIONS(4733), - [sym__heredoc_body_beginning] = ACTIONS(4733), - [sym_file_descriptor] = ACTIONS(4733), - [sym__concat] = ACTIONS(4733), - [ts_builtin_sym_end] = ACTIONS(4733), - [anon_sym_SEMI] = ACTIONS(4735), - [anon_sym_PIPE] = ACTIONS(4735), - [anon_sym_RPAREN] = ACTIONS(4733), - [anon_sym_SEMI_SEMI] = ACTIONS(4733), - [anon_sym_PIPE_AMP] = ACTIONS(4733), - [anon_sym_AMP_AMP] = ACTIONS(4733), - [anon_sym_PIPE_PIPE] = ACTIONS(4733), - [anon_sym_LT] = ACTIONS(4735), - [anon_sym_GT] = ACTIONS(4735), - [anon_sym_GT_GT] = ACTIONS(4733), - [anon_sym_AMP_GT] = ACTIONS(4735), - [anon_sym_AMP_GT_GT] = ACTIONS(4733), - [anon_sym_LT_AMP] = ACTIONS(4733), - [anon_sym_GT_AMP] = ACTIONS(4733), - [anon_sym_LT_LT] = ACTIONS(4735), - [anon_sym_LT_LT_DASH] = ACTIONS(4733), - [anon_sym_LT_LT_LT] = ACTIONS(4733), - [sym__special_characters] = ACTIONS(4733), - [anon_sym_DQUOTE] = ACTIONS(4733), - [anon_sym_DOLLAR] = ACTIONS(4735), - [sym_raw_string] = ACTIONS(4733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4733), - [anon_sym_BQUOTE] = ACTIONS(4733), - [anon_sym_LT_LPAREN] = ACTIONS(4733), - [anon_sym_GT_LPAREN] = ACTIONS(4733), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4735), - [sym_word] = ACTIONS(4735), - [anon_sym_LF] = ACTIONS(4733), - [anon_sym_AMP] = ACTIONS(4735), - }, - [2002] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5156), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2003] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5158), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2004] = { - [sym__simple_heredoc_body] = ACTIONS(4769), - [sym__heredoc_body_beginning] = ACTIONS(4769), - [sym_file_descriptor] = ACTIONS(4769), - [sym__concat] = ACTIONS(4769), - [ts_builtin_sym_end] = ACTIONS(4769), - [anon_sym_SEMI] = ACTIONS(4771), - [anon_sym_PIPE] = ACTIONS(4771), - [anon_sym_RPAREN] = ACTIONS(4769), - [anon_sym_SEMI_SEMI] = ACTIONS(4769), - [anon_sym_PIPE_AMP] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4771), - [anon_sym_GT] = ACTIONS(4771), - [anon_sym_GT_GT] = ACTIONS(4769), - [anon_sym_AMP_GT] = ACTIONS(4771), - [anon_sym_AMP_GT_GT] = ACTIONS(4769), - [anon_sym_LT_AMP] = ACTIONS(4769), - [anon_sym_GT_AMP] = ACTIONS(4769), - [anon_sym_LT_LT] = ACTIONS(4771), - [anon_sym_LT_LT_DASH] = ACTIONS(4769), - [anon_sym_LT_LT_LT] = ACTIONS(4769), - [sym__special_characters] = ACTIONS(4769), - [anon_sym_DQUOTE] = ACTIONS(4769), - [anon_sym_DOLLAR] = ACTIONS(4771), - [sym_raw_string] = ACTIONS(4769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4769), - [anon_sym_BQUOTE] = ACTIONS(4769), - [anon_sym_LT_LPAREN] = ACTIONS(4769), - [anon_sym_GT_LPAREN] = ACTIONS(4769), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4771), - [sym_word] = ACTIONS(4771), - [anon_sym_LF] = ACTIONS(4769), - [anon_sym_AMP] = ACTIONS(4771), - }, - [2005] = { - [sym__simple_heredoc_body] = ACTIONS(4789), - [sym__heredoc_body_beginning] = ACTIONS(4789), - [sym_file_descriptor] = ACTIONS(4789), - [sym__concat] = ACTIONS(4789), - [ts_builtin_sym_end] = ACTIONS(4789), - [anon_sym_SEMI] = ACTIONS(4791), - [anon_sym_PIPE] = ACTIONS(4791), - [anon_sym_RPAREN] = ACTIONS(4789), - [anon_sym_SEMI_SEMI] = ACTIONS(4789), - [anon_sym_PIPE_AMP] = ACTIONS(4789), - [anon_sym_AMP_AMP] = ACTIONS(4789), - [anon_sym_PIPE_PIPE] = ACTIONS(4789), - [anon_sym_LT] = ACTIONS(4791), - [anon_sym_GT] = ACTIONS(4791), - [anon_sym_GT_GT] = ACTIONS(4789), - [anon_sym_AMP_GT] = ACTIONS(4791), - [anon_sym_AMP_GT_GT] = ACTIONS(4789), - [anon_sym_LT_AMP] = ACTIONS(4789), - [anon_sym_GT_AMP] = ACTIONS(4789), - [anon_sym_LT_LT] = ACTIONS(4791), - [anon_sym_LT_LT_DASH] = ACTIONS(4789), - [anon_sym_LT_LT_LT] = ACTIONS(4789), - [sym__special_characters] = ACTIONS(4789), - [anon_sym_DQUOTE] = ACTIONS(4789), - [anon_sym_DOLLAR] = ACTIONS(4791), - [sym_raw_string] = ACTIONS(4789), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4789), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4789), - [anon_sym_BQUOTE] = ACTIONS(4789), - [anon_sym_LT_LPAREN] = ACTIONS(4789), - [anon_sym_GT_LPAREN] = ACTIONS(4789), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4791), - [sym_word] = ACTIONS(4791), - [anon_sym_LF] = ACTIONS(4789), - [anon_sym_AMP] = ACTIONS(4791), - }, - [2006] = { - [sym__simple_heredoc_body] = ACTIONS(4793), - [sym__heredoc_body_beginning] = ACTIONS(4793), - [sym_file_descriptor] = ACTIONS(4793), - [sym__concat] = ACTIONS(4793), - [ts_builtin_sym_end] = ACTIONS(4793), - [anon_sym_SEMI] = ACTIONS(4795), - [anon_sym_PIPE] = ACTIONS(4795), - [anon_sym_RPAREN] = ACTIONS(4793), - [anon_sym_SEMI_SEMI] = ACTIONS(4793), - [anon_sym_PIPE_AMP] = ACTIONS(4793), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_GT_GT] = ACTIONS(4793), - [anon_sym_AMP_GT] = ACTIONS(4795), - [anon_sym_AMP_GT_GT] = ACTIONS(4793), - [anon_sym_LT_AMP] = ACTIONS(4793), - [anon_sym_GT_AMP] = ACTIONS(4793), - [anon_sym_LT_LT] = ACTIONS(4795), - [anon_sym_LT_LT_DASH] = ACTIONS(4793), - [anon_sym_LT_LT_LT] = ACTIONS(4793), - [sym__special_characters] = ACTIONS(4793), - [anon_sym_DQUOTE] = ACTIONS(4793), - [anon_sym_DOLLAR] = ACTIONS(4795), - [sym_raw_string] = ACTIONS(4793), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4793), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4793), - [anon_sym_BQUOTE] = ACTIONS(4793), - [anon_sym_LT_LPAREN] = ACTIONS(4793), - [anon_sym_GT_LPAREN] = ACTIONS(4793), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4795), - [sym_word] = ACTIONS(4795), - [anon_sym_LF] = ACTIONS(4793), - [anon_sym_AMP] = ACTIONS(4795), - }, - [2007] = { - [sym_file_descriptor] = ACTIONS(4725), - [sym__concat] = ACTIONS(4725), - [sym_variable_name] = ACTIONS(4725), - [anon_sym_LT] = ACTIONS(4727), - [anon_sym_GT] = ACTIONS(4727), - [anon_sym_GT_GT] = ACTIONS(4725), - [anon_sym_AMP_GT] = ACTIONS(4727), - [anon_sym_AMP_GT_GT] = ACTIONS(4725), - [anon_sym_LT_AMP] = ACTIONS(4725), - [anon_sym_GT_AMP] = ACTIONS(4725), - [sym__special_characters] = ACTIONS(4725), - [anon_sym_DQUOTE] = ACTIONS(4725), - [anon_sym_DOLLAR] = ACTIONS(4727), - [sym_raw_string] = ACTIONS(4725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4725), - [anon_sym_BQUOTE] = ACTIONS(4725), - [anon_sym_LT_LPAREN] = ACTIONS(4725), - [anon_sym_GT_LPAREN] = ACTIONS(4725), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4725), - }, - [2008] = { - [sym_file_descriptor] = ACTIONS(4729), - [sym__concat] = ACTIONS(4729), - [sym_variable_name] = ACTIONS(4729), - [anon_sym_LT] = ACTIONS(4731), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_GT_GT] = ACTIONS(4729), - [anon_sym_AMP_GT] = ACTIONS(4731), - [anon_sym_AMP_GT_GT] = ACTIONS(4729), - [anon_sym_LT_AMP] = ACTIONS(4729), - [anon_sym_GT_AMP] = ACTIONS(4729), - [sym__special_characters] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(4729), - [anon_sym_DOLLAR] = ACTIONS(4731), - [sym_raw_string] = ACTIONS(4729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4729), - [anon_sym_BQUOTE] = ACTIONS(4729), - [anon_sym_LT_LPAREN] = ACTIONS(4729), - [anon_sym_GT_LPAREN] = ACTIONS(4729), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4729), - }, - [2009] = { - [sym_file_descriptor] = ACTIONS(4733), - [sym__concat] = ACTIONS(4733), - [sym_variable_name] = ACTIONS(4733), - [anon_sym_LT] = ACTIONS(4735), - [anon_sym_GT] = ACTIONS(4735), - [anon_sym_GT_GT] = ACTIONS(4733), - [anon_sym_AMP_GT] = ACTIONS(4735), - [anon_sym_AMP_GT_GT] = ACTIONS(4733), - [anon_sym_LT_AMP] = ACTIONS(4733), - [anon_sym_GT_AMP] = ACTIONS(4733), - [sym__special_characters] = ACTIONS(4733), - [anon_sym_DQUOTE] = ACTIONS(4733), - [anon_sym_DOLLAR] = ACTIONS(4735), - [sym_raw_string] = ACTIONS(4733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4733), - [anon_sym_BQUOTE] = ACTIONS(4733), - [anon_sym_LT_LPAREN] = ACTIONS(4733), - [anon_sym_GT_LPAREN] = ACTIONS(4733), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4733), - }, - [2010] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5160), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5162), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_file_descriptor] = ACTIONS(4769), - [sym__concat] = ACTIONS(4769), - [sym_variable_name] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4771), - [anon_sym_GT] = ACTIONS(4771), - [anon_sym_GT_GT] = ACTIONS(4769), - [anon_sym_AMP_GT] = ACTIONS(4771), - [anon_sym_AMP_GT_GT] = ACTIONS(4769), - [anon_sym_LT_AMP] = ACTIONS(4769), - [anon_sym_GT_AMP] = ACTIONS(4769), - [sym__special_characters] = ACTIONS(4769), - [anon_sym_DQUOTE] = ACTIONS(4769), - [anon_sym_DOLLAR] = ACTIONS(4771), - [sym_raw_string] = ACTIONS(4769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4769), - [anon_sym_BQUOTE] = ACTIONS(4769), - [anon_sym_LT_LPAREN] = ACTIONS(4769), - [anon_sym_GT_LPAREN] = ACTIONS(4769), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4769), - }, - [2013] = { - [sym_file_descriptor] = ACTIONS(4789), - [sym__concat] = ACTIONS(4789), - [sym_variable_name] = ACTIONS(4789), - [anon_sym_LT] = ACTIONS(4791), - [anon_sym_GT] = ACTIONS(4791), - [anon_sym_GT_GT] = ACTIONS(4789), - [anon_sym_AMP_GT] = ACTIONS(4791), - [anon_sym_AMP_GT_GT] = ACTIONS(4789), - [anon_sym_LT_AMP] = ACTIONS(4789), - [anon_sym_GT_AMP] = ACTIONS(4789), - [sym__special_characters] = ACTIONS(4789), - [anon_sym_DQUOTE] = ACTIONS(4789), - [anon_sym_DOLLAR] = ACTIONS(4791), - [sym_raw_string] = ACTIONS(4789), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4789), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4789), - [anon_sym_BQUOTE] = ACTIONS(4789), - [anon_sym_LT_LPAREN] = ACTIONS(4789), - [anon_sym_GT_LPAREN] = ACTIONS(4789), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4789), - }, - [2014] = { - [sym_file_descriptor] = ACTIONS(4793), - [sym__concat] = ACTIONS(4793), - [sym_variable_name] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_GT_GT] = ACTIONS(4793), - [anon_sym_AMP_GT] = ACTIONS(4795), - [anon_sym_AMP_GT_GT] = ACTIONS(4793), - [anon_sym_LT_AMP] = ACTIONS(4793), - [anon_sym_GT_AMP] = ACTIONS(4793), - [sym__special_characters] = ACTIONS(4793), - [anon_sym_DQUOTE] = ACTIONS(4793), - [anon_sym_DOLLAR] = ACTIONS(4795), - [sym_raw_string] = ACTIONS(4793), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4793), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4793), - [anon_sym_BQUOTE] = ACTIONS(4793), - [anon_sym_LT_LPAREN] = ACTIONS(4793), - [anon_sym_GT_LPAREN] = ACTIONS(4793), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4793), - }, - [2015] = { - [sym__concat] = ACTIONS(4725), - [anon_sym_DQUOTE] = ACTIONS(4727), - [anon_sym_DOLLAR] = ACTIONS(4727), - [sym__string_content] = ACTIONS(4725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4727), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4727), - [anon_sym_BQUOTE] = ACTIONS(4727), - [sym_comment] = ACTIONS(265), - }, - [2016] = { - [sym__concat] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(4731), - [anon_sym_DOLLAR] = ACTIONS(4731), - [sym__string_content] = ACTIONS(4729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4731), - [anon_sym_BQUOTE] = ACTIONS(4731), - [sym_comment] = ACTIONS(265), - }, - [2017] = { - [sym__concat] = ACTIONS(4733), - [anon_sym_DQUOTE] = ACTIONS(4735), - [anon_sym_DOLLAR] = ACTIONS(4735), - [sym__string_content] = ACTIONS(4733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4735), - [anon_sym_BQUOTE] = ACTIONS(4735), - [sym_comment] = ACTIONS(265), - }, - [2018] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5164), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2019] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5166), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2020] = { - [sym__concat] = ACTIONS(4769), - [anon_sym_DQUOTE] = ACTIONS(4771), - [anon_sym_DOLLAR] = ACTIONS(4771), - [sym__string_content] = ACTIONS(4769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4771), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4771), - [anon_sym_BQUOTE] = ACTIONS(4771), - [sym_comment] = ACTIONS(265), - }, - [2021] = { - [sym__concat] = ACTIONS(4789), - [anon_sym_DQUOTE] = ACTIONS(4791), - [anon_sym_DOLLAR] = ACTIONS(4791), - [sym__string_content] = ACTIONS(4789), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4791), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4791), - [anon_sym_BQUOTE] = ACTIONS(4791), - [sym_comment] = ACTIONS(265), - }, - [2022] = { - [anon_sym_RBRACE] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_DASH] = ACTIONS(5168), - [sym__special_characters] = ACTIONS(5168), - [anon_sym_DQUOTE] = ACTIONS(4146), - [anon_sym_DOLLAR] = ACTIONS(5168), - [sym_raw_string] = ACTIONS(4146), - [anon_sym_POUND] = ACTIONS(4146), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4146), - [anon_sym_SLASH] = ACTIONS(4146), - [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(4146), - [anon_sym_BQUOTE] = ACTIONS(4146), - [anon_sym_LT_LPAREN] = ACTIONS(4146), - [anon_sym_GT_LPAREN] = ACTIONS(4146), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(5168), - }, - [2023] = { - [anon_sym_RBRACE] = ACTIONS(4148), - [anon_sym_EQ] = ACTIONS(5170), - [anon_sym_DASH] = ACTIONS(5170), - [sym__special_characters] = ACTIONS(5170), - [anon_sym_DQUOTE] = ACTIONS(4148), - [anon_sym_DOLLAR] = ACTIONS(5170), - [sym_raw_string] = ACTIONS(4148), - [anon_sym_POUND] = ACTIONS(4148), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4148), - [anon_sym_SLASH] = ACTIONS(4148), - [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(4148), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_LT_LPAREN] = ACTIONS(4148), - [anon_sym_GT_LPAREN] = ACTIONS(4148), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(5170), - }, - [2024] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [sym_comment] = ACTIONS(57), - }, - [2025] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_RBRACE] = ACTIONS(2948), - [sym_comment] = ACTIONS(57), - }, - [2026] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(5172), - [sym_comment] = ACTIONS(57), - }, - [2027] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(5174), - [sym_comment] = ACTIONS(57), - }, - [2028] = { - [anon_sym_RBRACE] = ACTIONS(5174), - [sym_comment] = ACTIONS(57), - }, - [2029] = { - [sym_concatenation] = STATE(2235), - [sym_string] = STATE(2234), - [sym_simple_expansion] = STATE(2234), - [sym_string_expansion] = STATE(2234), - [sym_expansion] = STATE(2234), - [sym_command_substitution] = STATE(2234), - [sym_process_substitution] = STATE(2234), - [anon_sym_RBRACE] = ACTIONS(5174), - [sym__special_characters] = ACTIONS(5176), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(5178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5178), - }, - [2030] = { - [sym__concat] = ACTIONS(2984), - [anon_sym_RBRACE] = ACTIONS(2984), - [sym_comment] = ACTIONS(57), - }, - [2031] = { - [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), - [sym_regex] = ACTIONS(5180), - [anon_sym_RBRACE] = ACTIONS(5182), - [anon_sym_EQ] = ACTIONS(5184), - [anon_sym_DASH] = ACTIONS(5184), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(5184), - [anon_sym_COLON_QMARK] = ACTIONS(5184), - [anon_sym_COLON_DASH] = ACTIONS(5184), - [anon_sym_PERCENT] = ACTIONS(5184), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2032] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5182), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2033] = { - [sym_concatenation] = STATE(2240), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2240), - [sym_regex] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(5174), - [anon_sym_EQ] = ACTIONS(5190), - [anon_sym_DASH] = ACTIONS(5190), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(5190), - [anon_sym_COLON_QMARK] = ACTIONS(5190), - [anon_sym_COLON_DASH] = ACTIONS(5190), - [anon_sym_PERCENT] = ACTIONS(5190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5174), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2035] = { - [sym_concatenation] = STATE(2242), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2242), - [anon_sym_RBRACE] = ACTIONS(5194), - [anon_sym_EQ] = ACTIONS(5196), - [anon_sym_DASH] = ACTIONS(5196), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(5196), - [anon_sym_COLON_QMARK] = ACTIONS(5196), - [anon_sym_COLON_DASH] = ACTIONS(5196), - [anon_sym_PERCENT] = ACTIONS(5196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__concat] = ACTIONS(3040), - [anon_sym_RBRACE] = ACTIONS(3040), - [sym_comment] = ACTIONS(57), - }, - [2037] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5194), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(2240), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2240), - [anon_sym_RBRACE] = ACTIONS(5174), - [anon_sym_EQ] = ACTIONS(5190), - [anon_sym_DASH] = ACTIONS(5190), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(5190), - [anon_sym_COLON_QMARK] = ACTIONS(5190), - [anon_sym_COLON_DASH] = ACTIONS(5190), - [anon_sym_PERCENT] = ACTIONS(5190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2039] = { - [sym__concat] = ACTIONS(3095), - [anon_sym_RBRACE] = ACTIONS(3095), - [sym_comment] = ACTIONS(57), - }, - [2040] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(5200), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [2041] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(5200), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [2042] = { - [anon_sym_SEMI] = ACTIONS(5202), - [anon_sym_RPAREN] = ACTIONS(5200), - [anon_sym_SEMI_SEMI] = ACTIONS(5204), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5204), - [anon_sym_AMP] = ACTIONS(5204), - }, - [2043] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(5200), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [2044] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(5200), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [2045] = { - [anon_sym_SEMI] = ACTIONS(5206), - [anon_sym_SEMI_SEMI] = ACTIONS(5208), - [anon_sym_BQUOTE] = ACTIONS(5200), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5208), - [anon_sym_AMP] = ACTIONS(5208), - }, - [2046] = { - [sym__concat] = ACTIONS(3125), - [anon_sym_RBRACE] = ACTIONS(3125), - [sym_comment] = ACTIONS(57), - }, - [2047] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(5210), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [2048] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(5210), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [2049] = { - [anon_sym_SEMI] = ACTIONS(5212), - [anon_sym_RPAREN] = ACTIONS(5210), - [anon_sym_SEMI_SEMI] = ACTIONS(5214), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(5214), - }, - [2050] = { - [sym__simple_heredoc_body] = ACTIONS(5216), - [sym__heredoc_body_beginning] = ACTIONS(5216), - [sym_file_descriptor] = ACTIONS(5216), - [sym__concat] = ACTIONS(5216), - [ts_builtin_sym_end] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5218), - [anon_sym_PIPE] = ACTIONS(5218), - [anon_sym_RPAREN] = ACTIONS(5216), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [anon_sym_PIPE_AMP] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_EQ_TILDE] = ACTIONS(5218), - [anon_sym_EQ_EQ] = ACTIONS(5218), - [anon_sym_LT] = ACTIONS(5218), - [anon_sym_GT] = ACTIONS(5218), - [anon_sym_GT_GT] = ACTIONS(5216), - [anon_sym_AMP_GT] = ACTIONS(5218), - [anon_sym_AMP_GT_GT] = ACTIONS(5216), - [anon_sym_LT_AMP] = ACTIONS(5216), - [anon_sym_GT_AMP] = ACTIONS(5216), - [anon_sym_LT_LT] = ACTIONS(5218), - [anon_sym_LT_LT_DASH] = ACTIONS(5216), - [anon_sym_LT_LT_LT] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5218), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(5216), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5218), - [anon_sym_LF] = ACTIONS(5216), - [anon_sym_AMP] = ACTIONS(5218), - }, - [2051] = { - [sym__simple_heredoc_body] = ACTIONS(5220), - [sym__heredoc_body_beginning] = ACTIONS(5220), - [sym_file_descriptor] = ACTIONS(5220), - [sym__concat] = ACTIONS(5220), - [ts_builtin_sym_end] = ACTIONS(5220), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(5220), - [anon_sym_SEMI_SEMI] = ACTIONS(5220), - [anon_sym_PIPE_AMP] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_EQ_TILDE] = ACTIONS(5222), - [anon_sym_EQ_EQ] = ACTIONS(5222), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_GT_GT] = ACTIONS(5220), - [anon_sym_AMP_GT] = ACTIONS(5222), - [anon_sym_AMP_GT_GT] = ACTIONS(5220), - [anon_sym_LT_AMP] = ACTIONS(5220), - [anon_sym_GT_AMP] = ACTIONS(5220), - [anon_sym_LT_LT] = ACTIONS(5222), - [anon_sym_LT_LT_DASH] = ACTIONS(5220), - [anon_sym_LT_LT_LT] = ACTIONS(5220), - [sym__special_characters] = ACTIONS(5220), - [anon_sym_DQUOTE] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [anon_sym_LT_LPAREN] = ACTIONS(5220), - [anon_sym_GT_LPAREN] = ACTIONS(5220), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5222), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5222), - }, - [2052] = { - [sym__concat] = ACTIONS(3941), - [anon_sym_RBRACE] = ACTIONS(3941), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [sym__special_characters] = ACTIONS(3943), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3943), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_POUND] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_COLON] = ACTIONS(3943), - [anon_sym_COLON_QMARK] = ACTIONS(3943), - [anon_sym_COLON_DASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [anon_sym_LT_LPAREN] = ACTIONS(3941), - [anon_sym_GT_LPAREN] = ACTIONS(3941), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(3943), - }, - [2053] = { - [sym__concat] = ACTIONS(3949), - [anon_sym_RBRACE] = ACTIONS(3949), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [sym__special_characters] = ACTIONS(3951), - [anon_sym_DQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3951), - [sym_raw_string] = ACTIONS(3949), - [anon_sym_POUND] = ACTIONS(3949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3949), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COLON_QMARK] = ACTIONS(3951), - [anon_sym_COLON_DASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3949), - [anon_sym_BQUOTE] = ACTIONS(3949), - [anon_sym_LT_LPAREN] = ACTIONS(3949), - [anon_sym_GT_LPAREN] = ACTIONS(3949), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(3951), - }, - [2054] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(5224), - [sym_comment] = ACTIONS(57), - }, - [2055] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(5226), - [sym_comment] = ACTIONS(57), - }, - [2056] = { - [anon_sym_RBRACE] = ACTIONS(5226), - [sym_comment] = ACTIONS(57), - }, - [2057] = { - [sym_concatenation] = STATE(2251), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2251), - [anon_sym_RBRACE] = ACTIONS(5228), - [anon_sym_EQ] = ACTIONS(5230), - [anon_sym_DASH] = ACTIONS(5230), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5232), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(5230), - [anon_sym_COLON_QMARK] = ACTIONS(5230), - [anon_sym_COLON_DASH] = ACTIONS(5230), - [anon_sym_PERCENT] = ACTIONS(5230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2058] = { - [sym__concat] = ACTIONS(4005), - [anon_sym_RBRACE] = ACTIONS(4005), - [anon_sym_EQ] = ACTIONS(4007), - [anon_sym_DASH] = ACTIONS(4007), - [sym__special_characters] = ACTIONS(4007), - [anon_sym_DQUOTE] = ACTIONS(4005), - [anon_sym_DOLLAR] = ACTIONS(4007), - [sym_raw_string] = ACTIONS(4005), - [anon_sym_POUND] = ACTIONS(4005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4005), - [anon_sym_COLON] = ACTIONS(4007), - [anon_sym_COLON_QMARK] = ACTIONS(4007), - [anon_sym_COLON_DASH] = ACTIONS(4007), - [anon_sym_PERCENT] = ACTIONS(4007), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4005), - [anon_sym_BQUOTE] = ACTIONS(4005), - [anon_sym_LT_LPAREN] = ACTIONS(4005), - [anon_sym_GT_LPAREN] = ACTIONS(4005), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4007), - }, - [2059] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5228), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2060] = { - [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(5226), - [anon_sym_EQ] = ACTIONS(5234), - [anon_sym_DASH] = ACTIONS(5234), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(5234), - [anon_sym_COLON_QMARK] = ACTIONS(5234), - [anon_sym_COLON_DASH] = ACTIONS(5234), - [anon_sym_PERCENT] = ACTIONS(5234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2061] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5226), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2062] = { - [sym__concat] = ACTIONS(4050), - [anon_sym_RBRACE] = ACTIONS(4050), - [anon_sym_EQ] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [sym__special_characters] = ACTIONS(4052), - [anon_sym_DQUOTE] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4050), - [anon_sym_POUND] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), - [anon_sym_COLON] = ACTIONS(4052), - [anon_sym_COLON_QMARK] = ACTIONS(4052), - [anon_sym_COLON_DASH] = ACTIONS(4052), - [anon_sym_PERCENT] = ACTIONS(4052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), - [anon_sym_LT_LPAREN] = ACTIONS(4050), - [anon_sym_GT_LPAREN] = ACTIONS(4050), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4052), - }, - [2063] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5238), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2064] = { - [sym__concat] = ACTIONS(4084), - [anon_sym_RBRACE] = ACTIONS(4084), - [anon_sym_EQ] = ACTIONS(4086), - [anon_sym_DASH] = ACTIONS(4086), - [sym__special_characters] = ACTIONS(4086), - [anon_sym_DQUOTE] = ACTIONS(4084), - [anon_sym_DOLLAR] = ACTIONS(4086), - [sym_raw_string] = ACTIONS(4084), - [anon_sym_POUND] = ACTIONS(4084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4084), - [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(4084), - [anon_sym_BQUOTE] = ACTIONS(4084), - [anon_sym_LT_LPAREN] = ACTIONS(4084), - [anon_sym_GT_LPAREN] = ACTIONS(4084), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4086), - }, - [2065] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(5240), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [2066] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(5240), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [2067] = { - [sym__concat] = ACTIONS(4090), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_EQ] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4092), - [sym__special_characters] = ACTIONS(4092), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4092), - [sym_raw_string] = ACTIONS(4090), - [anon_sym_POUND] = ACTIONS(4090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4090), - [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(4090), - [anon_sym_BQUOTE] = ACTIONS(4090), - [anon_sym_LT_LPAREN] = ACTIONS(4090), - [anon_sym_GT_LPAREN] = ACTIONS(4090), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4092), - }, - [2068] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(5242), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [2069] = { - [sym__heredoc_body_middle] = ACTIONS(3941), - [sym__heredoc_body_end] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [sym_comment] = ACTIONS(57), - }, - [2070] = { - [sym__heredoc_body_middle] = ACTIONS(3949), - [sym__heredoc_body_end] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3951), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3949), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3949), - [anon_sym_BQUOTE] = ACTIONS(3949), - [sym_comment] = ACTIONS(57), - }, - [2071] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(5244), - [sym_comment] = ACTIONS(57), - }, - [2072] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(5246), - [sym_comment] = ACTIONS(57), - }, - [2073] = { - [anon_sym_RBRACE] = ACTIONS(5246), - [sym_comment] = ACTIONS(57), - }, - [2074] = { - [sym_concatenation] = STATE(2259), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2259), - [anon_sym_RBRACE] = ACTIONS(5248), - [anon_sym_EQ] = ACTIONS(5250), - [anon_sym_DASH] = ACTIONS(5250), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(5250), - [anon_sym_COLON_QMARK] = ACTIONS(5250), - [anon_sym_COLON_DASH] = ACTIONS(5250), - [anon_sym_PERCENT] = ACTIONS(5250), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2075] = { - [sym__heredoc_body_middle] = ACTIONS(4005), - [sym__heredoc_body_end] = ACTIONS(4005), - [anon_sym_DOLLAR] = ACTIONS(4007), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4005), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4005), - [anon_sym_BQUOTE] = ACTIONS(4005), - [sym_comment] = ACTIONS(57), - }, - [2076] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5248), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2077] = { - [sym_concatenation] = STATE(2260), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2260), - [anon_sym_RBRACE] = ACTIONS(5246), - [anon_sym_EQ] = ACTIONS(5254), - [anon_sym_DASH] = ACTIONS(5254), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(5254), - [anon_sym_COLON_QMARK] = ACTIONS(5254), - [anon_sym_COLON_DASH] = ACTIONS(5254), - [anon_sym_PERCENT] = ACTIONS(5254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5246), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym__heredoc_body_middle] = ACTIONS(4050), - [sym__heredoc_body_end] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), - [sym_comment] = ACTIONS(57), - }, - [2080] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5258), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2081] = { - [sym__heredoc_body_middle] = ACTIONS(4084), - [sym__heredoc_body_end] = ACTIONS(4084), - [anon_sym_DOLLAR] = ACTIONS(4086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4084), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4084), - [anon_sym_BQUOTE] = ACTIONS(4084), - [sym_comment] = ACTIONS(57), - }, - [2082] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(5260), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [2083] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(5260), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [2084] = { - [sym__concat] = ACTIONS(3941), - [anon_sym_RPAREN] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3943), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [anon_sym_LT_LPAREN] = ACTIONS(3941), - [anon_sym_GT_LPAREN] = ACTIONS(3941), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3941), - }, - [2085] = { - [sym__concat] = ACTIONS(3949), - [anon_sym_RPAREN] = ACTIONS(3949), - [sym__special_characters] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3951), - [sym_raw_string] = ACTIONS(3949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3949), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3949), - [anon_sym_BQUOTE] = ACTIONS(3949), - [anon_sym_LT_LPAREN] = ACTIONS(3949), - [anon_sym_GT_LPAREN] = ACTIONS(3949), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3949), - }, - [2086] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(5262), - [sym_comment] = ACTIONS(57), - }, - [2087] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(5264), - [sym_comment] = ACTIONS(57), - }, - [2088] = { - [anon_sym_RBRACE] = ACTIONS(5264), - [sym_comment] = ACTIONS(57), - }, - [2089] = { - [sym_concatenation] = STATE(2266), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2266), - [anon_sym_RBRACE] = ACTIONS(5266), - [anon_sym_EQ] = ACTIONS(5268), - [anon_sym_DASH] = ACTIONS(5268), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(5268), - [anon_sym_COLON_QMARK] = ACTIONS(5268), - [anon_sym_COLON_DASH] = ACTIONS(5268), - [anon_sym_PERCENT] = ACTIONS(5268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2090] = { - [sym__concat] = ACTIONS(4005), - [anon_sym_RPAREN] = ACTIONS(4005), - [sym__special_characters] = ACTIONS(4005), - [anon_sym_DQUOTE] = ACTIONS(4005), - [anon_sym_DOLLAR] = ACTIONS(4007), - [sym_raw_string] = ACTIONS(4005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4005), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4005), - [anon_sym_BQUOTE] = ACTIONS(4005), - [anon_sym_LT_LPAREN] = ACTIONS(4005), - [anon_sym_GT_LPAREN] = ACTIONS(4005), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4005), - }, - [2091] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5266), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2092] = { - [sym_concatenation] = STATE(2267), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2267), - [anon_sym_RBRACE] = ACTIONS(5264), - [anon_sym_EQ] = ACTIONS(5272), - [anon_sym_DASH] = ACTIONS(5272), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5274), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(5272), - [anon_sym_COLON_QMARK] = ACTIONS(5272), - [anon_sym_COLON_DASH] = ACTIONS(5272), - [anon_sym_PERCENT] = ACTIONS(5272), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2093] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5264), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2094] = { - [sym__concat] = ACTIONS(4050), - [anon_sym_RPAREN] = ACTIONS(4050), - [sym__special_characters] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), - [anon_sym_LT_LPAREN] = ACTIONS(4050), - [anon_sym_GT_LPAREN] = ACTIONS(4050), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4050), - }, - [2095] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5276), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2096] = { - [sym__concat] = ACTIONS(4084), - [anon_sym_RPAREN] = ACTIONS(4084), - [sym__special_characters] = ACTIONS(4084), - [anon_sym_DQUOTE] = ACTIONS(4084), - [anon_sym_DOLLAR] = ACTIONS(4086), - [sym_raw_string] = ACTIONS(4084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4084), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4084), - [anon_sym_BQUOTE] = ACTIONS(4084), - [anon_sym_LT_LPAREN] = ACTIONS(4084), - [anon_sym_GT_LPAREN] = ACTIONS(4084), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4084), - }, - [2097] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(5278), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [2098] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(5278), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [2099] = { - [sym__concat] = ACTIONS(4090), - [anon_sym_RPAREN] = ACTIONS(4090), - [sym__special_characters] = ACTIONS(4090), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4092), - [sym_raw_string] = ACTIONS(4090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4090), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4090), - [anon_sym_BQUOTE] = ACTIONS(4090), - [anon_sym_LT_LPAREN] = ACTIONS(4090), - [anon_sym_GT_LPAREN] = ACTIONS(4090), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4090), - }, - [2100] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(5280), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [2101] = { - [sym__simple_heredoc_body] = ACTIONS(4725), - [sym__heredoc_body_beginning] = ACTIONS(4725), - [sym_file_descriptor] = ACTIONS(4725), - [sym__concat] = ACTIONS(4725), - [sym_variable_name] = ACTIONS(4725), - [ts_builtin_sym_end] = ACTIONS(4725), - [anon_sym_SEMI] = ACTIONS(4727), - [anon_sym_PIPE] = ACTIONS(4727), - [anon_sym_RPAREN] = ACTIONS(4725), - [anon_sym_SEMI_SEMI] = ACTIONS(4725), - [anon_sym_PIPE_AMP] = ACTIONS(4725), - [anon_sym_AMP_AMP] = ACTIONS(4725), - [anon_sym_PIPE_PIPE] = ACTIONS(4725), - [anon_sym_LT] = ACTIONS(4727), - [anon_sym_GT] = ACTIONS(4727), - [anon_sym_GT_GT] = ACTIONS(4725), - [anon_sym_AMP_GT] = ACTIONS(4727), - [anon_sym_AMP_GT_GT] = ACTIONS(4725), - [anon_sym_LT_AMP] = ACTIONS(4725), - [anon_sym_GT_AMP] = ACTIONS(4725), - [anon_sym_LT_LT] = ACTIONS(4727), - [anon_sym_LT_LT_DASH] = ACTIONS(4725), - [anon_sym_LT_LT_LT] = ACTIONS(4725), - [sym__special_characters] = ACTIONS(4725), - [anon_sym_DQUOTE] = ACTIONS(4725), - [anon_sym_DOLLAR] = ACTIONS(4727), - [sym_raw_string] = ACTIONS(4725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4725), - [anon_sym_BQUOTE] = ACTIONS(4725), - [anon_sym_LT_LPAREN] = ACTIONS(4725), - [anon_sym_GT_LPAREN] = ACTIONS(4725), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4727), - [anon_sym_LF] = ACTIONS(4725), - [anon_sym_AMP] = ACTIONS(4727), - }, - [2102] = { - [sym__simple_heredoc_body] = ACTIONS(4729), - [sym__heredoc_body_beginning] = ACTIONS(4729), - [sym_file_descriptor] = ACTIONS(4729), - [sym__concat] = ACTIONS(4729), - [sym_variable_name] = ACTIONS(4729), - [ts_builtin_sym_end] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_PIPE] = ACTIONS(4731), - [anon_sym_RPAREN] = ACTIONS(4729), - [anon_sym_SEMI_SEMI] = ACTIONS(4729), - [anon_sym_PIPE_AMP] = ACTIONS(4729), - [anon_sym_AMP_AMP] = ACTIONS(4729), - [anon_sym_PIPE_PIPE] = ACTIONS(4729), - [anon_sym_LT] = ACTIONS(4731), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_GT_GT] = ACTIONS(4729), - [anon_sym_AMP_GT] = ACTIONS(4731), - [anon_sym_AMP_GT_GT] = ACTIONS(4729), - [anon_sym_LT_AMP] = ACTIONS(4729), - [anon_sym_GT_AMP] = ACTIONS(4729), - [anon_sym_LT_LT] = ACTIONS(4731), - [anon_sym_LT_LT_DASH] = ACTIONS(4729), - [anon_sym_LT_LT_LT] = ACTIONS(4729), - [sym__special_characters] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(4729), - [anon_sym_DOLLAR] = ACTIONS(4731), - [sym_raw_string] = ACTIONS(4729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4729), - [anon_sym_BQUOTE] = ACTIONS(4729), - [anon_sym_LT_LPAREN] = ACTIONS(4729), - [anon_sym_GT_LPAREN] = ACTIONS(4729), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4731), - [anon_sym_LF] = ACTIONS(4729), - [anon_sym_AMP] = ACTIONS(4731), - }, - [2103] = { - [sym__simple_heredoc_body] = ACTIONS(4733), - [sym__heredoc_body_beginning] = ACTIONS(4733), - [sym_file_descriptor] = ACTIONS(4733), - [sym__concat] = ACTIONS(4733), - [sym_variable_name] = ACTIONS(4733), - [ts_builtin_sym_end] = ACTIONS(4733), - [anon_sym_SEMI] = ACTIONS(4735), - [anon_sym_PIPE] = ACTIONS(4735), - [anon_sym_RPAREN] = ACTIONS(4733), - [anon_sym_SEMI_SEMI] = ACTIONS(4733), - [anon_sym_PIPE_AMP] = ACTIONS(4733), - [anon_sym_AMP_AMP] = ACTIONS(4733), - [anon_sym_PIPE_PIPE] = ACTIONS(4733), - [anon_sym_LT] = ACTIONS(4735), - [anon_sym_GT] = ACTIONS(4735), - [anon_sym_GT_GT] = ACTIONS(4733), - [anon_sym_AMP_GT] = ACTIONS(4735), - [anon_sym_AMP_GT_GT] = ACTIONS(4733), - [anon_sym_LT_AMP] = ACTIONS(4733), - [anon_sym_GT_AMP] = ACTIONS(4733), - [anon_sym_LT_LT] = ACTIONS(4735), - [anon_sym_LT_LT_DASH] = ACTIONS(4733), - [anon_sym_LT_LT_LT] = ACTIONS(4733), - [sym__special_characters] = ACTIONS(4733), - [anon_sym_DQUOTE] = ACTIONS(4733), - [anon_sym_DOLLAR] = ACTIONS(4735), - [sym_raw_string] = ACTIONS(4733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4733), - [anon_sym_BQUOTE] = ACTIONS(4733), - [anon_sym_LT_LPAREN] = ACTIONS(4733), - [anon_sym_GT_LPAREN] = ACTIONS(4733), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4735), - [anon_sym_LF] = ACTIONS(4733), - [anon_sym_AMP] = ACTIONS(4735), - }, - [2104] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5282), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5284), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2106] = { - [sym__simple_heredoc_body] = ACTIONS(4769), - [sym__heredoc_body_beginning] = ACTIONS(4769), - [sym_file_descriptor] = ACTIONS(4769), - [sym__concat] = ACTIONS(4769), - [sym_variable_name] = ACTIONS(4769), - [ts_builtin_sym_end] = ACTIONS(4769), - [anon_sym_SEMI] = ACTIONS(4771), - [anon_sym_PIPE] = ACTIONS(4771), - [anon_sym_RPAREN] = ACTIONS(4769), - [anon_sym_SEMI_SEMI] = ACTIONS(4769), - [anon_sym_PIPE_AMP] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4771), - [anon_sym_GT] = ACTIONS(4771), - [anon_sym_GT_GT] = ACTIONS(4769), - [anon_sym_AMP_GT] = ACTIONS(4771), - [anon_sym_AMP_GT_GT] = ACTIONS(4769), - [anon_sym_LT_AMP] = ACTIONS(4769), - [anon_sym_GT_AMP] = ACTIONS(4769), - [anon_sym_LT_LT] = ACTIONS(4771), - [anon_sym_LT_LT_DASH] = ACTIONS(4769), - [anon_sym_LT_LT_LT] = ACTIONS(4769), - [sym__special_characters] = ACTIONS(4769), - [anon_sym_DQUOTE] = ACTIONS(4769), - [anon_sym_DOLLAR] = ACTIONS(4771), - [sym_raw_string] = ACTIONS(4769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4769), - [anon_sym_BQUOTE] = ACTIONS(4769), - [anon_sym_LT_LPAREN] = ACTIONS(4769), - [anon_sym_GT_LPAREN] = ACTIONS(4769), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4771), - [anon_sym_LF] = ACTIONS(4769), - [anon_sym_AMP] = ACTIONS(4771), - }, - [2107] = { - [sym__simple_heredoc_body] = ACTIONS(4789), - [sym__heredoc_body_beginning] = ACTIONS(4789), - [sym_file_descriptor] = ACTIONS(4789), - [sym__concat] = ACTIONS(4789), - [sym_variable_name] = ACTIONS(4789), - [ts_builtin_sym_end] = ACTIONS(4789), - [anon_sym_SEMI] = ACTIONS(4791), - [anon_sym_PIPE] = ACTIONS(4791), - [anon_sym_RPAREN] = ACTIONS(4789), - [anon_sym_SEMI_SEMI] = ACTIONS(4789), - [anon_sym_PIPE_AMP] = ACTIONS(4789), - [anon_sym_AMP_AMP] = ACTIONS(4789), - [anon_sym_PIPE_PIPE] = ACTIONS(4789), - [anon_sym_LT] = ACTIONS(4791), - [anon_sym_GT] = ACTIONS(4791), - [anon_sym_GT_GT] = ACTIONS(4789), - [anon_sym_AMP_GT] = ACTIONS(4791), - [anon_sym_AMP_GT_GT] = ACTIONS(4789), - [anon_sym_LT_AMP] = ACTIONS(4789), - [anon_sym_GT_AMP] = ACTIONS(4789), - [anon_sym_LT_LT] = ACTIONS(4791), - [anon_sym_LT_LT_DASH] = ACTIONS(4789), - [anon_sym_LT_LT_LT] = ACTIONS(4789), - [sym__special_characters] = ACTIONS(4789), - [anon_sym_DQUOTE] = ACTIONS(4789), - [anon_sym_DOLLAR] = ACTIONS(4791), - [sym_raw_string] = ACTIONS(4789), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4789), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4789), - [anon_sym_BQUOTE] = ACTIONS(4789), - [anon_sym_LT_LPAREN] = ACTIONS(4789), - [anon_sym_GT_LPAREN] = ACTIONS(4789), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4791), - [anon_sym_LF] = ACTIONS(4789), - [anon_sym_AMP] = ACTIONS(4791), - }, - [2108] = { - [sym__simple_heredoc_body] = ACTIONS(4793), - [sym__heredoc_body_beginning] = ACTIONS(4793), - [sym_file_descriptor] = ACTIONS(4793), - [sym__concat] = ACTIONS(4793), - [sym_variable_name] = ACTIONS(4793), - [ts_builtin_sym_end] = ACTIONS(4793), - [anon_sym_SEMI] = ACTIONS(4795), - [anon_sym_PIPE] = ACTIONS(4795), - [anon_sym_RPAREN] = ACTIONS(4793), - [anon_sym_SEMI_SEMI] = ACTIONS(4793), - [anon_sym_PIPE_AMP] = ACTIONS(4793), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_GT_GT] = ACTIONS(4793), - [anon_sym_AMP_GT] = ACTIONS(4795), - [anon_sym_AMP_GT_GT] = ACTIONS(4793), - [anon_sym_LT_AMP] = ACTIONS(4793), - [anon_sym_GT_AMP] = ACTIONS(4793), - [anon_sym_LT_LT] = ACTIONS(4795), - [anon_sym_LT_LT_DASH] = ACTIONS(4793), - [anon_sym_LT_LT_LT] = ACTIONS(4793), - [sym__special_characters] = ACTIONS(4793), - [anon_sym_DQUOTE] = ACTIONS(4793), - [anon_sym_DOLLAR] = ACTIONS(4795), - [sym_raw_string] = ACTIONS(4793), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4793), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4793), - [anon_sym_BQUOTE] = ACTIONS(4793), - [anon_sym_LT_LPAREN] = ACTIONS(4793), - [anon_sym_GT_LPAREN] = ACTIONS(4793), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4795), - [anon_sym_LF] = ACTIONS(4793), - [anon_sym_AMP] = ACTIONS(4795), - }, - [2109] = { - [sym__simple_heredoc_body] = ACTIONS(5286), - [sym__heredoc_body_beginning] = ACTIONS(5286), - [sym_file_descriptor] = ACTIONS(5286), - [ts_builtin_sym_end] = ACTIONS(5286), - [anon_sym_SEMI] = ACTIONS(5288), - [anon_sym_esac] = ACTIONS(5286), - [anon_sym_PIPE] = ACTIONS(5288), - [anon_sym_RPAREN] = ACTIONS(5286), - [anon_sym_SEMI_SEMI] = ACTIONS(5286), - [anon_sym_PIPE_AMP] = ACTIONS(5286), - [anon_sym_AMP_AMP] = ACTIONS(5286), - [anon_sym_PIPE_PIPE] = ACTIONS(5286), - [anon_sym_LT] = ACTIONS(5288), - [anon_sym_GT] = ACTIONS(5288), - [anon_sym_GT_GT] = ACTIONS(5286), - [anon_sym_AMP_GT] = ACTIONS(5288), - [anon_sym_AMP_GT_GT] = ACTIONS(5286), - [anon_sym_LT_AMP] = ACTIONS(5286), - [anon_sym_GT_AMP] = ACTIONS(5286), - [anon_sym_LT_LT] = ACTIONS(5288), - [anon_sym_LT_LT_DASH] = ACTIONS(5286), - [anon_sym_LT_LT_LT] = ACTIONS(5286), - [anon_sym_BQUOTE] = ACTIONS(5286), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5286), - [anon_sym_AMP] = ACTIONS(5288), - }, - [2110] = { - [sym_do_group] = STATE(2273), - [sym_compound_statement] = STATE(2273), - [anon_sym_do] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(25), - [sym_comment] = ACTIONS(57), - }, - [2111] = { - [sym__concat] = ACTIONS(4725), - [anon_sym_SEMI] = ACTIONS(4727), - [anon_sym_SEMI_SEMI] = ACTIONS(4725), - [anon_sym_AMP_AMP] = ACTIONS(4725), - [anon_sym_PIPE_PIPE] = ACTIONS(4725), - [anon_sym_EQ_TILDE] = ACTIONS(4725), - [anon_sym_EQ_EQ] = ACTIONS(4725), - [anon_sym_EQ] = ACTIONS(4727), - [anon_sym_PLUS_EQ] = ACTIONS(4725), - [anon_sym_LT] = ACTIONS(4727), - [anon_sym_GT] = ACTIONS(4727), - [anon_sym_BANG_EQ] = ACTIONS(4725), - [anon_sym_PLUS] = ACTIONS(4727), - [anon_sym_DASH] = ACTIONS(4727), - [anon_sym_DASH_EQ] = ACTIONS(4725), - [anon_sym_LT_EQ] = ACTIONS(4725), - [anon_sym_GT_EQ] = ACTIONS(4725), - [anon_sym_PLUS_PLUS] = ACTIONS(4725), - [anon_sym_DASH_DASH] = ACTIONS(4725), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4725), - [anon_sym_LF] = ACTIONS(4725), - [anon_sym_AMP] = ACTIONS(4727), - }, - [2112] = { - [sym__concat] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_SEMI_SEMI] = ACTIONS(4729), - [anon_sym_AMP_AMP] = ACTIONS(4729), - [anon_sym_PIPE_PIPE] = ACTIONS(4729), - [anon_sym_EQ_TILDE] = ACTIONS(4729), - [anon_sym_EQ_EQ] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4731), - [anon_sym_PLUS_EQ] = ACTIONS(4729), - [anon_sym_LT] = ACTIONS(4731), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_BANG_EQ] = ACTIONS(4729), - [anon_sym_PLUS] = ACTIONS(4731), - [anon_sym_DASH] = ACTIONS(4731), - [anon_sym_DASH_EQ] = ACTIONS(4729), - [anon_sym_LT_EQ] = ACTIONS(4729), - [anon_sym_GT_EQ] = ACTIONS(4729), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4729), - [anon_sym_LF] = ACTIONS(4729), - [anon_sym_AMP] = ACTIONS(4731), - }, - [2113] = { - [sym__concat] = ACTIONS(4733), - [anon_sym_SEMI] = ACTIONS(4735), - [anon_sym_SEMI_SEMI] = ACTIONS(4733), - [anon_sym_AMP_AMP] = ACTIONS(4733), - [anon_sym_PIPE_PIPE] = ACTIONS(4733), - [anon_sym_EQ_TILDE] = ACTIONS(4733), - [anon_sym_EQ_EQ] = ACTIONS(4733), - [anon_sym_EQ] = ACTIONS(4735), - [anon_sym_PLUS_EQ] = ACTIONS(4733), - [anon_sym_LT] = ACTIONS(4735), - [anon_sym_GT] = ACTIONS(4735), - [anon_sym_BANG_EQ] = ACTIONS(4733), - [anon_sym_PLUS] = ACTIONS(4735), - [anon_sym_DASH] = ACTIONS(4735), - [anon_sym_DASH_EQ] = ACTIONS(4733), - [anon_sym_LT_EQ] = ACTIONS(4733), - [anon_sym_GT_EQ] = ACTIONS(4733), - [anon_sym_PLUS_PLUS] = ACTIONS(4733), - [anon_sym_DASH_DASH] = ACTIONS(4733), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4733), - [anon_sym_LF] = ACTIONS(4733), - [anon_sym_AMP] = ACTIONS(4735), - }, - [2114] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5290), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5292), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2116] = { - [sym__concat] = ACTIONS(4769), - [anon_sym_SEMI] = ACTIONS(4771), - [anon_sym_SEMI_SEMI] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_EQ_TILDE] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ] = ACTIONS(4771), - [anon_sym_PLUS_EQ] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4771), - [anon_sym_GT] = ACTIONS(4771), - [anon_sym_BANG_EQ] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4771), - [anon_sym_DASH] = ACTIONS(4771), - [anon_sym_DASH_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4769), - [anon_sym_LF] = ACTIONS(4769), - [anon_sym_AMP] = ACTIONS(4771), - }, - [2117] = { - [sym__concat] = ACTIONS(4789), - [anon_sym_SEMI] = ACTIONS(4791), - [anon_sym_SEMI_SEMI] = ACTIONS(4789), - [anon_sym_AMP_AMP] = ACTIONS(4789), - [anon_sym_PIPE_PIPE] = ACTIONS(4789), - [anon_sym_EQ_TILDE] = ACTIONS(4789), - [anon_sym_EQ_EQ] = ACTIONS(4789), - [anon_sym_EQ] = ACTIONS(4791), - [anon_sym_PLUS_EQ] = ACTIONS(4789), - [anon_sym_LT] = ACTIONS(4791), - [anon_sym_GT] = ACTIONS(4791), - [anon_sym_BANG_EQ] = ACTIONS(4789), - [anon_sym_PLUS] = ACTIONS(4791), - [anon_sym_DASH] = ACTIONS(4791), - [anon_sym_DASH_EQ] = ACTIONS(4789), - [anon_sym_LT_EQ] = ACTIONS(4789), - [anon_sym_GT_EQ] = ACTIONS(4789), - [anon_sym_PLUS_PLUS] = ACTIONS(4789), - [anon_sym_DASH_DASH] = ACTIONS(4789), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4789), - [anon_sym_LF] = ACTIONS(4789), - [anon_sym_AMP] = ACTIONS(4791), - }, - [2118] = { - [sym__concat] = ACTIONS(4793), - [anon_sym_SEMI] = ACTIONS(4795), - [anon_sym_SEMI_SEMI] = ACTIONS(4793), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_EQ_TILDE] = ACTIONS(4793), - [anon_sym_EQ_EQ] = ACTIONS(4793), - [anon_sym_EQ] = ACTIONS(4795), - [anon_sym_PLUS_EQ] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_BANG_EQ] = ACTIONS(4793), - [anon_sym_PLUS] = ACTIONS(4795), - [anon_sym_DASH] = ACTIONS(4795), - [anon_sym_DASH_EQ] = ACTIONS(4793), - [anon_sym_LT_EQ] = ACTIONS(4793), - [anon_sym_GT_EQ] = ACTIONS(4793), - [anon_sym_PLUS_PLUS] = ACTIONS(4793), - [anon_sym_DASH_DASH] = ACTIONS(4793), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4793), - [anon_sym_LF] = ACTIONS(4793), - [anon_sym_AMP] = ACTIONS(4795), - }, - [2119] = { - [sym_do_group] = STATE(2273), - [sym_compound_statement] = STATE(2273), - [anon_sym_SEMI] = ACTIONS(5294), - [anon_sym_do] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(25), - [sym_comment] = ACTIONS(57), - }, - [2120] = { - [sym__concat] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3943), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3943), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [anon_sym_LT_LPAREN] = ACTIONS(3941), - [anon_sym_GT_LPAREN] = ACTIONS(3941), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3943), - [anon_sym_LF] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3941), - }, - [2121] = { - [sym__concat] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3951), - [anon_sym_SEMI_SEMI] = ACTIONS(3949), - [sym__special_characters] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3951), - [sym_raw_string] = ACTIONS(3949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3949), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3949), - [anon_sym_BQUOTE] = ACTIONS(3949), - [anon_sym_LT_LPAREN] = ACTIONS(3949), - [anon_sym_GT_LPAREN] = ACTIONS(3949), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3951), - [anon_sym_LF] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3949), - }, - [2122] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(5296), - [sym_comment] = ACTIONS(57), - }, - [2123] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(5298), - [sym_comment] = ACTIONS(57), - }, - [2124] = { - [anon_sym_RBRACE] = ACTIONS(5298), - [sym_comment] = ACTIONS(57), - }, - [2125] = { - [sym_concatenation] = STATE(2280), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2280), - [anon_sym_RBRACE] = ACTIONS(5300), - [anon_sym_EQ] = ACTIONS(5302), - [anon_sym_DASH] = ACTIONS(5302), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(5302), - [anon_sym_COLON_QMARK] = ACTIONS(5302), - [anon_sym_COLON_DASH] = ACTIONS(5302), - [anon_sym_PERCENT] = ACTIONS(5302), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2126] = { - [sym__concat] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_SEMI_SEMI] = ACTIONS(4005), - [sym__special_characters] = ACTIONS(4005), - [anon_sym_DQUOTE] = ACTIONS(4005), - [anon_sym_DOLLAR] = ACTIONS(4007), - [sym_raw_string] = ACTIONS(4005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4005), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4005), - [anon_sym_BQUOTE] = ACTIONS(4005), - [anon_sym_LT_LPAREN] = ACTIONS(4005), - [anon_sym_GT_LPAREN] = ACTIONS(4005), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4007), - [anon_sym_LF] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4005), - }, - [2127] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5300), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2128] = { - [sym_concatenation] = STATE(2281), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2281), - [anon_sym_RBRACE] = ACTIONS(5298), - [anon_sym_EQ] = ACTIONS(5306), - [anon_sym_DASH] = ACTIONS(5306), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(5306), - [anon_sym_COLON_QMARK] = ACTIONS(5306), - [anon_sym_COLON_DASH] = ACTIONS(5306), - [anon_sym_PERCENT] = ACTIONS(5306), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2129] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5298), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2130] = { - [sym__concat] = ACTIONS(4050), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4050), - [sym__special_characters] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), - [anon_sym_LT_LPAREN] = ACTIONS(4050), - [anon_sym_GT_LPAREN] = ACTIONS(4050), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4050), - }, - [2131] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5310), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2132] = { - [sym__concat] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym_SEMI_SEMI] = ACTIONS(4084), - [sym__special_characters] = ACTIONS(4084), - [anon_sym_DQUOTE] = ACTIONS(4084), - [anon_sym_DOLLAR] = ACTIONS(4086), - [sym_raw_string] = ACTIONS(4084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4084), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4084), - [anon_sym_BQUOTE] = ACTIONS(4084), - [anon_sym_LT_LPAREN] = ACTIONS(4084), - [anon_sym_GT_LPAREN] = ACTIONS(4084), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4086), - [anon_sym_LF] = ACTIONS(4084), - [anon_sym_AMP] = ACTIONS(4084), - }, - [2133] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(5312), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [2134] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(5312), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [2135] = { - [sym__concat] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym_SEMI_SEMI] = ACTIONS(4090), - [sym__special_characters] = ACTIONS(4090), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4092), - [sym_raw_string] = ACTIONS(4090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4090), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4090), - [anon_sym_BQUOTE] = ACTIONS(4090), - [anon_sym_LT_LPAREN] = ACTIONS(4090), - [anon_sym_GT_LPAREN] = ACTIONS(4090), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4092), - [anon_sym_LF] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4090), - }, - [2136] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(5314), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [2137] = { - [sym__concat] = ACTIONS(4725), - [anon_sym_PIPE] = ACTIONS(4727), - [anon_sym_RPAREN] = ACTIONS(4725), - [anon_sym_AMP_AMP] = ACTIONS(4725), - [anon_sym_PIPE_PIPE] = ACTIONS(4725), - [anon_sym_EQ_TILDE] = ACTIONS(4725), - [anon_sym_EQ_EQ] = ACTIONS(4725), - [anon_sym_EQ] = ACTIONS(4727), - [anon_sym_PLUS_EQ] = ACTIONS(4725), - [anon_sym_LT] = ACTIONS(4727), - [anon_sym_GT] = ACTIONS(4727), - [anon_sym_BANG_EQ] = ACTIONS(4725), - [anon_sym_PLUS] = ACTIONS(4727), - [anon_sym_DASH] = ACTIONS(4727), - [anon_sym_DASH_EQ] = ACTIONS(4725), - [anon_sym_LT_EQ] = ACTIONS(4725), - [anon_sym_GT_EQ] = ACTIONS(4725), - [anon_sym_PLUS_PLUS] = ACTIONS(4725), - [anon_sym_DASH_DASH] = ACTIONS(4725), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4725), - }, - [2138] = { - [sym__concat] = ACTIONS(4729), - [anon_sym_PIPE] = ACTIONS(4731), - [anon_sym_RPAREN] = ACTIONS(4729), - [anon_sym_AMP_AMP] = ACTIONS(4729), - [anon_sym_PIPE_PIPE] = ACTIONS(4729), - [anon_sym_EQ_TILDE] = ACTIONS(4729), - [anon_sym_EQ_EQ] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4731), - [anon_sym_PLUS_EQ] = ACTIONS(4729), - [anon_sym_LT] = ACTIONS(4731), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_BANG_EQ] = ACTIONS(4729), - [anon_sym_PLUS] = ACTIONS(4731), - [anon_sym_DASH] = ACTIONS(4731), - [anon_sym_DASH_EQ] = ACTIONS(4729), - [anon_sym_LT_EQ] = ACTIONS(4729), - [anon_sym_GT_EQ] = ACTIONS(4729), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4729), - }, - [2139] = { - [sym__concat] = ACTIONS(4733), - [anon_sym_PIPE] = ACTIONS(4735), - [anon_sym_RPAREN] = ACTIONS(4733), - [anon_sym_AMP_AMP] = ACTIONS(4733), - [anon_sym_PIPE_PIPE] = ACTIONS(4733), - [anon_sym_EQ_TILDE] = ACTIONS(4733), - [anon_sym_EQ_EQ] = ACTIONS(4733), - [anon_sym_EQ] = ACTIONS(4735), - [anon_sym_PLUS_EQ] = ACTIONS(4733), - [anon_sym_LT] = ACTIONS(4735), - [anon_sym_GT] = ACTIONS(4735), - [anon_sym_BANG_EQ] = ACTIONS(4733), - [anon_sym_PLUS] = ACTIONS(4735), - [anon_sym_DASH] = ACTIONS(4735), - [anon_sym_DASH_EQ] = ACTIONS(4733), - [anon_sym_LT_EQ] = ACTIONS(4733), - [anon_sym_GT_EQ] = ACTIONS(4733), - [anon_sym_PLUS_PLUS] = ACTIONS(4733), - [anon_sym_DASH_DASH] = ACTIONS(4733), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4733), - }, - [2140] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5316), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2141] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5318), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2142] = { - [sym__concat] = ACTIONS(4769), - [anon_sym_PIPE] = ACTIONS(4771), - [anon_sym_RPAREN] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_EQ_TILDE] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ] = ACTIONS(4771), - [anon_sym_PLUS_EQ] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4771), - [anon_sym_GT] = ACTIONS(4771), - [anon_sym_BANG_EQ] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4771), - [anon_sym_DASH] = ACTIONS(4771), - [anon_sym_DASH_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4769), - }, - [2143] = { - [sym__concat] = ACTIONS(4789), - [anon_sym_PIPE] = ACTIONS(4791), - [anon_sym_RPAREN] = ACTIONS(4789), - [anon_sym_AMP_AMP] = ACTIONS(4789), - [anon_sym_PIPE_PIPE] = ACTIONS(4789), - [anon_sym_EQ_TILDE] = ACTIONS(4789), - [anon_sym_EQ_EQ] = ACTIONS(4789), - [anon_sym_EQ] = ACTIONS(4791), - [anon_sym_PLUS_EQ] = ACTIONS(4789), - [anon_sym_LT] = ACTIONS(4791), - [anon_sym_GT] = ACTIONS(4791), - [anon_sym_BANG_EQ] = ACTIONS(4789), - [anon_sym_PLUS] = ACTIONS(4791), - [anon_sym_DASH] = ACTIONS(4791), - [anon_sym_DASH_EQ] = ACTIONS(4789), - [anon_sym_LT_EQ] = ACTIONS(4789), - [anon_sym_GT_EQ] = ACTIONS(4789), - [anon_sym_PLUS_PLUS] = ACTIONS(4789), - [anon_sym_DASH_DASH] = ACTIONS(4789), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4789), - }, - [2144] = { - [sym__concat] = ACTIONS(4793), - [anon_sym_PIPE] = ACTIONS(4795), - [anon_sym_RPAREN] = ACTIONS(4793), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_EQ_TILDE] = ACTIONS(4793), - [anon_sym_EQ_EQ] = ACTIONS(4793), - [anon_sym_EQ] = ACTIONS(4795), - [anon_sym_PLUS_EQ] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_BANG_EQ] = ACTIONS(4793), - [anon_sym_PLUS] = ACTIONS(4795), - [anon_sym_DASH] = ACTIONS(4795), - [anon_sym_DASH_EQ] = ACTIONS(4793), - [anon_sym_LT_EQ] = ACTIONS(4793), - [anon_sym_GT_EQ] = ACTIONS(4793), - [anon_sym_PLUS_PLUS] = ACTIONS(4793), - [anon_sym_DASH_DASH] = ACTIONS(4793), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(4793), - }, - [2145] = { - [sym__concat] = ACTIONS(5216), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5216), - [anon_sym_EQ_TILDE] = ACTIONS(5216), - [anon_sym_EQ_EQ] = ACTIONS(5216), - [anon_sym_EQ] = ACTIONS(5218), - [anon_sym_PLUS_EQ] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5218), - [anon_sym_GT] = ACTIONS(5218), - [anon_sym_BANG_EQ] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(5218), - [anon_sym_DASH] = ACTIONS(5218), - [anon_sym_DASH_EQ] = ACTIONS(5216), - [anon_sym_LT_EQ] = ACTIONS(5216), - [anon_sym_GT_EQ] = ACTIONS(5216), - [anon_sym_PLUS_PLUS] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5216), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(5216), - }, - [2146] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5220), - [anon_sym_EQ_TILDE] = ACTIONS(5220), - [anon_sym_EQ_EQ] = ACTIONS(5220), - [anon_sym_EQ] = ACTIONS(5222), - [anon_sym_PLUS_EQ] = ACTIONS(5220), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_BANG_EQ] = ACTIONS(5220), - [anon_sym_PLUS] = ACTIONS(5222), - [anon_sym_DASH] = ACTIONS(5222), - [anon_sym_DASH_EQ] = ACTIONS(5220), - [anon_sym_LT_EQ] = ACTIONS(5220), - [anon_sym_GT_EQ] = ACTIONS(5220), - [anon_sym_PLUS_PLUS] = ACTIONS(5220), - [anon_sym_DASH_DASH] = ACTIONS(5220), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(5220), - }, - [2147] = { - [sym_concatenation] = STATE(2287), - [sym_string] = STATE(2292), - [sym_array] = STATE(2287), - [sym_simple_expansion] = STATE(2292), - [sym_string_expansion] = STATE(2292), - [sym_expansion] = STATE(2292), - [sym_command_substitution] = STATE(2292), - [sym_process_substitution] = STATE(2292), - [sym__empty_value] = ACTIONS(5320), - [anon_sym_LPAREN] = ACTIONS(5322), - [sym__special_characters] = ACTIONS(5324), - [anon_sym_DQUOTE] = ACTIONS(5326), - [anon_sym_DOLLAR] = ACTIONS(5328), - [sym_raw_string] = ACTIONS(5330), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5332), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5334), - [anon_sym_BQUOTE] = ACTIONS(5336), - [anon_sym_LT_LPAREN] = ACTIONS(5338), - [anon_sym_GT_LPAREN] = ACTIONS(5338), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5330), - }, - [2148] = { - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_EQ] = ACTIONS(5340), - [anon_sym_PLUS_EQ] = ACTIONS(5340), - [sym_comment] = ACTIONS(57), - }, - [2149] = { - [aux_sym_concatenation_repeat1] = STATE(2299), - [sym__simple_heredoc_body] = ACTIONS(669), - [sym__heredoc_body_beginning] = ACTIONS(669), - [sym_file_descriptor] = ACTIONS(669), - [sym__concat] = ACTIONS(5342), - [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), + [358] = { + [sym_concatenation] = STATE(861), + [sym_string] = STATE(860), + [sym_simple_expansion] = STATE(860), + [sym_string_expansion] = STATE(860), + [sym_expansion] = STATE(860), + [sym_command_substitution] = STATE(860), + [sym_process_substitution] = STATE(860), + [sym__special_characters] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(1745), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1745), + }, + [359] = { + [sym_heredoc_start] = ACTIONS(1747), + [sym_comment] = ACTIONS(57), + }, + [360] = { + [sym_concatenation] = STATE(865), + [sym_string] = STATE(864), + [sym_simple_expansion] = STATE(864), + [sym_string_expansion] = STATE(864), + [sym_expansion] = STATE(864), + [sym_command_substitution] = STATE(864), + [sym_process_substitution] = STATE(864), + [sym__special_characters] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(1751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1751), + }, + [361] = { + [sym_file_redirect] = STATE(866), + [sym_heredoc_redirect] = STATE(866), + [sym_herestring_redirect] = STATE(866), + [aux_sym_redirected_statement_repeat1] = STATE(866), + [sym_file_descriptor] = ACTIONS(645), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1233), + [anon_sym_PIPE_AMP] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_AMP_GT] = ACTIONS(657), + [anon_sym_AMP_GT_GT] = ACTIONS(659), + [anon_sym_LT_AMP] = ACTIONS(659), + [anon_sym_GT_AMP] = ACTIONS(659), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), + [anon_sym_LT_LT_LT] = ACTIONS(665), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1235), + }, + [362] = { + [sym_concatenation] = STATE(867), + [sym_string] = STATE(869), + [sym_simple_expansion] = STATE(869), + [sym_string_expansion] = STATE(869), + [sym_expansion] = STATE(869), + [sym_command_substitution] = STATE(869), + [sym_process_substitution] = STATE(869), + [sym_regex] = ACTIONS(1753), + [sym__special_characters] = ACTIONS(1755), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(1757), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1757), + }, + [363] = { + [aux_sym_concatenation_repeat1] = STATE(337), + [sym_file_descriptor] = ACTIONS(1243), + [sym__concat] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1245), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_LT_LT_DASH] = ACTIONS(1243), + [anon_sym_LT_LT_LT] = ACTIONS(1243), + [sym__special_characters] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1245), + [sym_raw_string] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [anon_sym_LT_LPAREN] = ACTIONS(1243), + [anon_sym_GT_LPAREN] = ACTIONS(1243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1245), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1245), + }, + [364] = { + [aux_sym_concatenation_repeat1] = STATE(337), + [sym_file_descriptor] = ACTIONS(1247), + [sym__concat] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_SEMI_SEMI] = ACTIONS(1247), + [anon_sym_PIPE_AMP] = ACTIONS(1247), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_AMP_GT] = ACTIONS(1249), + [anon_sym_AMP_GT_GT] = ACTIONS(1247), + [anon_sym_LT_AMP] = ACTIONS(1247), + [anon_sym_GT_AMP] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_LT_LT_DASH] = ACTIONS(1247), + [anon_sym_LT_LT_LT] = ACTIONS(1247), + [sym__special_characters] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1247), + [anon_sym_DOLLAR] = ACTIONS(1249), + [sym_raw_string] = ACTIONS(1247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1247), + [anon_sym_BQUOTE] = ACTIONS(1247), + [anon_sym_LT_LPAREN] = ACTIONS(1247), + [anon_sym_GT_LPAREN] = ACTIONS(1247), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1249), + [anon_sym_LF] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1249), + }, + [365] = { + [sym_concatenation] = STATE(870), + [sym_string] = STATE(364), + [sym_simple_expansion] = STATE(364), + [sym_string_expansion] = STATE(364), + [sym_expansion] = STATE(364), + [sym_command_substitution] = STATE(364), + [sym_process_substitution] = STATE(364), + [aux_sym_command_repeat2] = STATE(870), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(667), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), [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), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), [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), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), }, - [2150] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(2302), - [anon_sym_DQUOTE] = ACTIONS(5344), - [anon_sym_DOLLAR] = ACTIONS(5346), - [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), - }, - [2151] = { - [sym_string] = STATE(2304), - [anon_sym_DASH] = ACTIONS(5348), - [anon_sym_DQUOTE] = ACTIONS(5017), - [anon_sym_DOLLAR] = ACTIONS(5348), - [sym_raw_string] = ACTIONS(5350), - [anon_sym_POUND] = ACTIONS(5348), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5352), - [anon_sym_STAR] = ACTIONS(5354), - [anon_sym_AT] = ACTIONS(5354), - [anon_sym_QMARK] = ACTIONS(5354), - [anon_sym_0] = ACTIONS(5352), - [anon_sym__] = ACTIONS(5352), - }, - [2152] = { - [aux_sym_concatenation_repeat1] = STATE(2299), - [sym__simple_heredoc_body] = ACTIONS(687), - [sym__heredoc_body_beginning] = ACTIONS(687), - [sym_file_descriptor] = ACTIONS(687), - [sym__concat] = ACTIONS(5342), - [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), + [366] = { + [sym_concatenation] = STATE(871), + [sym_string] = STATE(364), + [sym_simple_expansion] = STATE(364), + [sym_string_expansion] = STATE(364), + [sym_expansion] = STATE(364), + [sym_command_substitution] = STATE(364), + [sym_process_substitution] = STATE(364), + [aux_sym_command_repeat2] = STATE(871), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(667), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), [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), + [sym_word] = ACTIONS(673), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), }, - [2153] = { - [sym_subscript] = STATE(2309), - [sym_variable_name] = ACTIONS(5356), - [anon_sym_BANG] = ACTIONS(5358), - [anon_sym_DASH] = ACTIONS(5360), - [anon_sym_DOLLAR] = ACTIONS(5360), - [anon_sym_POUND] = ACTIONS(5358), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5362), - [anon_sym_STAR] = ACTIONS(5364), - [anon_sym_AT] = ACTIONS(5364), - [anon_sym_QMARK] = ACTIONS(5364), - [anon_sym_0] = ACTIONS(5362), - [anon_sym__] = ACTIONS(5362), - }, - [2154] = { - [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), + [367] = { + [sym__statements] = STATE(888), + [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_elif_clause] = STATE(896), + [sym_else_clause] = STATE(890), + [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(891), + [sym_variable_assignment] = STATE(892), + [sym_subscript] = STATE(893), + [sym_file_redirect] = STATE(897), + [sym_concatenation] = STATE(894), + [sym_string] = STATE(882), + [sym_simple_expansion] = STATE(882), + [sym_string_expansion] = STATE(882), + [sym_expansion] = STATE(882), + [sym_command_substitution] = STATE(882), + [sym_process_substitution] = STATE(882), + [aux_sym__statements_repeat1] = STATE(895), + [aux_sym_if_statement_repeat1] = STATE(896), + [aux_sym_command_repeat1] = STATE(897), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(129), + [sym_variable_name] = ACTIONS(1759), [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(1761), + [anon_sym_elif] = ACTIONS(1763), + [anon_sym_else] = ACTIONS(1765), [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_BANG] = ACTIONS(1767), [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_declare] = ACTIONS(1769), + [anon_sym_typeset] = ACTIONS(1769), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_readonly] = ACTIONS(1769), + [anon_sym_local] = ACTIONS(1769), + [anon_sym_unset] = ACTIONS(1771), + [anon_sym_unsetenv] = ACTIONS(1771), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -68533,1701 +22930,392 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_DOLLAR] = ACTIONS(1777), + [sym_raw_string] = ACTIONS(1779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1783), + [anon_sym_BQUOTE] = ACTIONS(1785), + [anon_sym_LT_LPAREN] = ACTIONS(1787), + [anon_sym_GT_LPAREN] = ACTIONS(1787), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(141), + [sym_word] = ACTIONS(1789), }, - [2155] = { - [sym__terminated_statement] = STATE(2315), - [sym_redirected_statement] = STATE(2313), - [sym_for_statement] = STATE(2313), - [sym_c_style_for_statement] = STATE(2313), - [sym_while_statement] = STATE(2313), - [sym_if_statement] = STATE(2313), - [sym_case_statement] = STATE(2313), - [sym_function_definition] = STATE(2313), - [sym_compound_statement] = STATE(2313), - [sym_subshell] = STATE(2313), - [sym_pipeline] = STATE(2313), - [sym_list] = STATE(2313), - [sym_negated_command] = STATE(2313), - [sym_test_command] = STATE(2313), - [sym_declaration_command] = STATE(2313), - [sym_unset_command] = STATE(2313), - [sym_command] = STATE(2313), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(2314), - [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(2315), - [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), + [368] = { + [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(1791), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR] = ACTIONS(147), + [sym_raw_string] = ACTIONS(1791), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(151), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(155), + [anon_sym_LT_LPAREN] = ACTIONS(157), + [anon_sym_GT_LPAREN] = ACTIONS(157), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(109), + [sym_word] = ACTIONS(1791), }, - [2156] = { - [sym__terminated_statement] = STATE(2318), - [sym_redirected_statement] = STATE(2316), - [sym_for_statement] = STATE(2316), - [sym_c_style_for_statement] = STATE(2316), - [sym_while_statement] = STATE(2316), - [sym_if_statement] = STATE(2316), - [sym_case_statement] = STATE(2316), - [sym_function_definition] = STATE(2316), - [sym_compound_statement] = STATE(2316), - [sym_subshell] = STATE(2316), - [sym_pipeline] = STATE(2316), - [sym_list] = STATE(2316), - [sym_negated_command] = STATE(2316), - [sym_test_command] = STATE(2316), - [sym_declaration_command] = STATE(2316), - [sym_unset_command] = STATE(2316), - [sym_command] = STATE(2316), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(2317), - [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(2318), - [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), + [369] = { + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_SEMI_SEMI] = ACTIONS(1795), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(141), + [anon_sym_LF] = ACTIONS(1795), + [anon_sym_AMP] = ACTIONS(1795), }, - [2157] = { - [anon_sym_EQ] = ACTIONS(5340), - [anon_sym_PLUS_EQ] = ACTIONS(5340), + [370] = { + [anon_sym_in] = ACTIONS(1797), [sym_comment] = ACTIONS(57), }, - [2158] = { - [sym_variable_assignment] = STATE(2319), - [sym_subscript] = STATE(2157), - [sym_concatenation] = STATE(2319), - [sym_string] = STATE(2152), - [sym_simple_expansion] = STATE(2152), - [sym_string_expansion] = STATE(2152), - [sym_expansion] = STATE(2152), - [sym_command_substitution] = STATE(2152), - [sym_process_substitution] = STATE(2152), - [aux_sym_declaration_command_repeat1] = STATE(2319), - [sym__simple_heredoc_body] = ACTIONS(701), - [sym__heredoc_body_beginning] = ACTIONS(701), - [sym_file_descriptor] = ACTIONS(701), - [sym_variable_name] = ACTIONS(5013), - [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(5015), - [anon_sym_DQUOTE] = ACTIONS(5017), - [anon_sym_DOLLAR] = ACTIONS(5019), - [sym_raw_string] = ACTIONS(5021), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LT_LPAREN] = ACTIONS(5029), - [anon_sym_GT_LPAREN] = ACTIONS(5029), + [371] = { + [aux_sym_concatenation_repeat1] = STATE(901), + [sym__concat] = ACTIONS(679), + [anon_sym_in] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5366), - [sym_word] = ACTIONS(5033), - [anon_sym_LF] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(703), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1043), }, - [2159] = { - [aux_sym_concatenation_repeat1] = STATE(2321), - [sym__simple_heredoc_body] = ACTIONS(707), - [sym__heredoc_body_beginning] = ACTIONS(707), - [sym_file_descriptor] = ACTIONS(707), - [sym__concat] = ACTIONS(5368), - [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), + [372] = { + [sym__concat] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), [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), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1047), }, - [2160] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(2324), - [anon_sym_DQUOTE] = ACTIONS(5370), - [anon_sym_DOLLAR] = ACTIONS(5372), - [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), + [373] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), }, - [2161] = { - [sym_string] = STATE(2326), - [anon_sym_DASH] = ACTIONS(5374), - [anon_sym_DQUOTE] = ACTIONS(5037), - [anon_sym_DOLLAR] = ACTIONS(5374), - [sym_raw_string] = ACTIONS(5376), - [anon_sym_POUND] = ACTIONS(5374), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5378), - [anon_sym_STAR] = ACTIONS(5380), - [anon_sym_AT] = ACTIONS(5380), - [anon_sym_QMARK] = ACTIONS(5380), - [anon_sym_0] = ACTIONS(5378), - [anon_sym__] = ACTIONS(5378), - }, - [2162] = { - [aux_sym_concatenation_repeat1] = STATE(2321), - [sym__simple_heredoc_body] = ACTIONS(725), - [sym__heredoc_body_beginning] = ACTIONS(725), - [sym_file_descriptor] = ACTIONS(725), - [sym__concat] = ACTIONS(5368), - [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), - }, - [2163] = { - [sym_subscript] = STATE(2331), - [sym_variable_name] = ACTIONS(5382), - [anon_sym_BANG] = ACTIONS(5384), - [anon_sym_DASH] = ACTIONS(5386), - [anon_sym_DOLLAR] = ACTIONS(5386), - [anon_sym_POUND] = ACTIONS(5384), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5388), - [anon_sym_STAR] = ACTIONS(5390), - [anon_sym_AT] = ACTIONS(5390), - [anon_sym_QMARK] = ACTIONS(5390), - [anon_sym_0] = ACTIONS(5388), - [anon_sym__] = ACTIONS(5388), - }, - [2164] = { - [sym__terminated_statement] = STATE(2334), - [sym_redirected_statement] = STATE(2332), - [sym_for_statement] = STATE(2332), - [sym_c_style_for_statement] = STATE(2332), - [sym_while_statement] = STATE(2332), - [sym_if_statement] = STATE(2332), - [sym_case_statement] = STATE(2332), - [sym_function_definition] = STATE(2332), - [sym_compound_statement] = STATE(2332), - [sym_subshell] = STATE(2332), - [sym_pipeline] = STATE(2332), - [sym_list] = STATE(2332), - [sym_negated_command] = STATE(2332), - [sym_test_command] = STATE(2332), - [sym_declaration_command] = STATE(2332), - [sym_unset_command] = STATE(2332), - [sym_command] = STATE(2332), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(2333), - [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(2334), - [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), - }, - [2165] = { - [sym__terminated_statement] = STATE(2337), - [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(2337), - [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), - }, - [2166] = { - [sym__terminated_statement] = STATE(2340), - [sym_redirected_statement] = STATE(2338), - [sym_for_statement] = STATE(2338), - [sym_c_style_for_statement] = STATE(2338), - [sym_while_statement] = STATE(2338), - [sym_if_statement] = STATE(2338), - [sym_case_statement] = STATE(2338), - [sym_function_definition] = STATE(2338), - [sym_compound_statement] = STATE(2338), - [sym_subshell] = STATE(2338), - [sym_pipeline] = STATE(2338), - [sym_list] = STATE(2338), - [sym_negated_command] = STATE(2338), - [sym_test_command] = STATE(2338), - [sym_declaration_command] = STATE(2338), - [sym_unset_command] = STATE(2338), - [sym_command] = STATE(2338), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(2339), - [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(2340), - [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), - }, - [2167] = { - [sym_concatenation] = STATE(2341), - [sym_string] = STATE(2162), - [sym_simple_expansion] = STATE(2162), - [sym_string_expansion] = STATE(2162), - [sym_expansion] = STATE(2162), - [sym_command_substitution] = STATE(2162), - [sym_process_substitution] = STATE(2162), - [aux_sym_unset_command_repeat1] = STATE(2341), - [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(5035), - [anon_sym_DQUOTE] = ACTIONS(5037), - [anon_sym_DOLLAR] = ACTIONS(5039), - [sym_raw_string] = ACTIONS(5041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5045), - [anon_sym_BQUOTE] = ACTIONS(5047), - [anon_sym_LT_LPAREN] = ACTIONS(5049), - [anon_sym_GT_LPAREN] = ACTIONS(5049), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5392), - [sym_word] = ACTIONS(5053), - [anon_sym_LF] = ACTIONS(739), - [anon_sym_AMP] = ACTIONS(741), - }, - [2168] = { - [sym_string] = STATE(2342), - [sym_simple_expansion] = STATE(2342), - [sym_string_expansion] = STATE(2342), - [sym_expansion] = STATE(2342), - [sym_command_substitution] = STATE(2342), - [sym_process_substitution] = STATE(2342), - [sym__special_characters] = ACTIONS(5394), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(5394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5394), - }, - [2169] = { - [aux_sym_concatenation_repeat1] = STATE(2343), - [sym__simple_heredoc_body] = ACTIONS(779), - [sym__heredoc_body_beginning] = ACTIONS(779), - [sym_file_descriptor] = ACTIONS(779), - [sym__concat] = ACTIONS(5055), - [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), - }, - [2170] = { - [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), - }, - [2171] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(5396), - [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), - }, - [2172] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(455), - [anon_sym_DQUOTE] = ACTIONS(5396), - [anon_sym_DOLLAR] = ACTIONS(5398), - [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), - }, - [2173] = { - [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), - }, - [2174] = { - [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), - }, - [2175] = { - [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), - }, - [2176] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(5400), - [sym_comment] = ACTIONS(57), - }, - [2177] = { - [sym_subscript] = STATE(2349), - [sym_variable_name] = ACTIONS(5402), - [anon_sym_DASH] = ACTIONS(5404), - [anon_sym_DOLLAR] = ACTIONS(5404), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5406), - [anon_sym_STAR] = ACTIONS(5408), - [anon_sym_AT] = ACTIONS(5408), - [anon_sym_QMARK] = ACTIONS(5408), - [anon_sym_0] = ACTIONS(5406), - [anon_sym__] = ACTIONS(5406), - }, - [2178] = { - [sym_concatenation] = STATE(2352), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2352), - [anon_sym_RBRACE] = ACTIONS(5410), - [anon_sym_EQ] = ACTIONS(5412), - [anon_sym_DASH] = ACTIONS(5412), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(5416), - [anon_sym_COLON] = ACTIONS(5412), - [anon_sym_COLON_QMARK] = ACTIONS(5412), - [anon_sym_COLON_DASH] = ACTIONS(5412), - [anon_sym_PERCENT] = ACTIONS(5412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2179] = { - [sym_concatenation] = STATE(2355), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2355), - [anon_sym_RBRACE] = ACTIONS(5418), - [anon_sym_EQ] = ACTIONS(5420), - [anon_sym_DASH] = ACTIONS(5420), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [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(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2180] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2358), - [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(5426), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5428), - [anon_sym_SEMI_SEMI] = ACTIONS(5430), - [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(5430), - [anon_sym_AMP] = ACTIONS(5426), - }, - [2181] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2358), - [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(5426), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5428), - [anon_sym_SEMI_SEMI] = ACTIONS(5430), - [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), + [374] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1801), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), [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(5430), - [anon_sym_AMP] = ACTIONS(5426), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), }, - [2182] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(2359), - [sym_for_statement] = STATE(2359), - [sym_c_style_for_statement] = STATE(2359), - [sym_while_statement] = STATE(2359), - [sym_if_statement] = STATE(2359), - [sym_case_statement] = STATE(2359), - [sym_function_definition] = STATE(2359), - [sym_compound_statement] = STATE(2359), - [sym_subshell] = STATE(2359), - [sym_pipeline] = STATE(2359), - [sym_list] = STATE(2359), - [sym_negated_command] = STATE(2359), - [sym_test_command] = STATE(2359), - [sym_declaration_command] = STATE(2359), - [sym_unset_command] = STATE(2359), - [sym_command] = STATE(2359), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(2360), - [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), + [375] = { + [sym__concat] = ACTIONS(1081), + [anon_sym_in] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(141), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1081), }, - [2183] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2362), - [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(5432), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(5434), - [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(5428), + [376] = { + [sym__concat] = ACTIONS(1085), + [anon_sym_in] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5434), - [anon_sym_AMP] = ACTIONS(5432), + [anon_sym_LF] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1085), }, - [2184] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2362), - [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(5432), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(5434), - [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(5428), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), + [377] = { + [sym__concat] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(5434), - [anon_sym_AMP] = ACTIONS(5432), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1089), }, - [2185] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(2363), - [sym_for_statement] = STATE(2363), - [sym_c_style_for_statement] = STATE(2363), - [sym_while_statement] = STATE(2363), - [sym_if_statement] = STATE(2363), - [sym_case_statement] = STATE(2363), - [sym_function_definition] = STATE(2363), - [sym_compound_statement] = STATE(2363), - [sym_subshell] = STATE(2363), - [sym_pipeline] = STATE(2363), - [sym_list] = STATE(2363), - [sym_negated_command] = STATE(2363), - [sym_test_command] = STATE(2363), - [sym_declaration_command] = STATE(2363), - [sym_unset_command] = STATE(2363), - [sym_command] = STATE(2363), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(2364), - [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), + [378] = { + [anon_sym_SEMI] = ACTIONS(1803), + [anon_sym_SEMI_SEMI] = ACTIONS(1805), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(109), + [anon_sym_LF] = ACTIONS(1805), + [anon_sym_AMP] = ACTIONS(1805), }, - [2186] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2367), - [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(5436), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5438), - [anon_sym_SEMI_SEMI] = ACTIONS(5440), - [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(5440), - [anon_sym_AMP] = ACTIONS(5436), - }, - [2187] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2367), - [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(5436), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5438), - [anon_sym_SEMI_SEMI] = ACTIONS(5440), - [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(5440), - [anon_sym_AMP] = ACTIONS(5436), - }, - [2188] = { - [sym__terminated_statement] = STATE(187), - [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), - [sym_negated_command] = STATE(2368), - [sym_test_command] = STATE(2368), - [sym_declaration_command] = STATE(2368), - [sym_unset_command] = STATE(2368), - [sym_command] = STATE(2368), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(2369), - [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), - }, - [2189] = { - [anon_sym_LT] = ACTIONS(5442), - [anon_sym_GT] = ACTIONS(5442), - [anon_sym_GT_GT] = ACTIONS(5444), - [anon_sym_AMP_GT] = ACTIONS(5442), - [anon_sym_AMP_GT_GT] = ACTIONS(5444), - [anon_sym_LT_AMP] = ACTIONS(5444), - [anon_sym_GT_AMP] = ACTIONS(5444), + [379] = { + [anon_sym_in] = ACTIONS(1807), [sym_comment] = ACTIONS(57), }, - [2190] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_esac] = ACTIONS(935), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), + [380] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1809), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), }, - [2191] = { - [sym_redirected_statement] = STATE(2371), - [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_compound_statement] = 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(1954), - [sym_variable_assignment] = STATE(2372), - [sym_subscript] = STATE(1956), - [sym_file_redirect] = STATE(1959), - [sym_concatenation] = STATE(1957), - [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), - [aux_sym_command_repeat1] = STATE(1959), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4456), - [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(4462), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_LBRACK_LBRACK] = ACTIONS(31), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), - [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(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), + [381] = { + [sym_subscript] = STATE(909), + [sym_variable_name] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_DOLLAR] = ACTIONS(1813), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4484), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1817), + [anon_sym_AT] = ACTIONS(1817), + [anon_sym_QMARK] = ACTIONS(1817), + [anon_sym_0] = ACTIONS(1815), + [anon_sym__] = ACTIONS(1815), }, - [2192] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_esac] = ACTIONS(5446), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(5448), - [anon_sym_DQUOTE] = ACTIONS(5450), - [anon_sym_DOLLAR] = ACTIONS(5448), - [sym_raw_string] = ACTIONS(5450), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5450), - [anon_sym_BQUOTE] = ACTIONS(5450), - [anon_sym_LT_LPAREN] = ACTIONS(5450), - [anon_sym_GT_LPAREN] = ACTIONS(5450), + [382] = { + [sym_concatenation] = STATE(912), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(912), + [anon_sym_RBRACE] = ACTIONS(1819), + [anon_sym_EQ] = ACTIONS(1821), + [anon_sym_DASH] = ACTIONS(1821), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(1823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1825), + [anon_sym_COLON] = ACTIONS(1821), + [anon_sym_COLON_QMARK] = ACTIONS(1821), + [anon_sym_COLON_DASH] = ACTIONS(1821), + [anon_sym_PERCENT] = ACTIONS(1821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [383] = { + [sym_concatenation] = STATE(915), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(915), + [anon_sym_RBRACE] = ACTIONS(1827), + [anon_sym_EQ] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1829), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(1831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1833), + [anon_sym_COLON] = ACTIONS(1829), + [anon_sym_COLON_QMARK] = ACTIONS(1829), + [anon_sym_COLON_DASH] = ACTIONS(1829), + [anon_sym_PERCENT] = ACTIONS(1829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [384] = { + [anon_sym_RPAREN] = ACTIONS(1835), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5448), }, - [2193] = { - [sym_redirected_statement] = STATE(2373), - [sym_for_statement] = STATE(2373), - [sym_c_style_for_statement] = STATE(2373), - [sym_while_statement] = STATE(2373), - [sym_if_statement] = STATE(2373), - [sym_case_statement] = STATE(2373), - [sym_function_definition] = STATE(2373), - [sym_compound_statement] = STATE(2373), - [sym_subshell] = STATE(2373), - [sym_pipeline] = STATE(2373), - [sym_list] = STATE(2373), - [sym_negated_command] = STATE(2373), - [sym_test_command] = STATE(2373), - [sym_declaration_command] = STATE(2373), - [sym_unset_command] = STATE(2373), - [sym_command] = STATE(2373), - [sym_command_name] = STATE(1954), - [sym_variable_assignment] = STATE(2374), - [sym_subscript] = STATE(1956), - [sym_file_redirect] = STATE(1959), - [sym_concatenation] = STATE(1957), - [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), - [aux_sym_command_repeat1] = STATE(1959), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4456), - [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(4462), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_LBRACK_LBRACK] = ACTIONS(31), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), - [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(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), + [385] = { + [anon_sym_BQUOTE] = ACTIONS(1835), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4484), }, - [2194] = { - [sym_concatenation] = STATE(513), - [sym_string] = STATE(2378), - [sym_simple_expansion] = STATE(2378), - [sym_string_expansion] = STATE(2378), - [sym_expansion] = STATE(2378), - [sym_command_substitution] = STATE(2378), - [sym_process_substitution] = STATE(2378), - [sym__special_characters] = ACTIONS(5452), - [anon_sym_DQUOTE] = ACTIONS(5454), - [anon_sym_DOLLAR] = ACTIONS(5456), - [sym_raw_string] = ACTIONS(5458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5460), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5462), - [anon_sym_BQUOTE] = ACTIONS(5464), - [anon_sym_LT_LPAREN] = ACTIONS(5466), - [anon_sym_GT_LPAREN] = ACTIONS(5466), + [386] = { + [anon_sym_RPAREN] = ACTIONS(1837), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5458), }, - [2195] = { - [sym_concatenation] = STATE(517), - [sym_string] = STATE(2384), - [sym_simple_expansion] = STATE(2384), - [sym_string_expansion] = STATE(2384), - [sym_expansion] = STATE(2384), - [sym_command_substitution] = STATE(2384), - [sym_process_substitution] = STATE(2384), - [sym__special_characters] = ACTIONS(5468), - [anon_sym_DQUOTE] = ACTIONS(5454), - [anon_sym_DOLLAR] = ACTIONS(5456), - [sym_raw_string] = ACTIONS(5470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5460), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5462), - [anon_sym_BQUOTE] = ACTIONS(5464), - [anon_sym_LT_LPAREN] = ACTIONS(5466), - [anon_sym_GT_LPAREN] = ACTIONS(5466), + [387] = { + [anon_sym_RPAREN] = ACTIONS(1839), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5470), }, - [2196] = { - [anon_sym_SEMI] = ACTIONS(5472), - [anon_sym_SEMI_SEMI] = ACTIONS(5474), + [388] = { + [sym__simple_heredoc_body] = ACTIONS(1841), + [sym__heredoc_body_beginning] = ACTIONS(1841), + [sym_file_descriptor] = ACTIONS(1841), + [ts_builtin_sym_end] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_done] = ACTIONS(1841), + [anon_sym_fi] = ACTIONS(1841), + [anon_sym_elif] = ACTIONS(1841), + [anon_sym_else] = ACTIONS(1841), + [anon_sym_esac] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_RPAREN] = ACTIONS(1841), + [anon_sym_SEMI_SEMI] = ACTIONS(1841), + [anon_sym_PIPE_AMP] = ACTIONS(1841), + [anon_sym_AMP_AMP] = ACTIONS(1841), + [anon_sym_PIPE_PIPE] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_GT_GT] = ACTIONS(1841), + [anon_sym_AMP_GT] = ACTIONS(1843), + [anon_sym_AMP_GT_GT] = ACTIONS(1841), + [anon_sym_LT_AMP] = ACTIONS(1841), + [anon_sym_GT_AMP] = ACTIONS(1841), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_LT_LT_DASH] = ACTIONS(1841), + [anon_sym_LT_LT_LT] = ACTIONS(1841), + [anon_sym_BQUOTE] = ACTIONS(1841), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5474), - [anon_sym_AMP] = ACTIONS(5474), + [anon_sym_LF] = ACTIONS(1841), + [anon_sym_AMP] = ACTIONS(1843), }, - [2197] = { - [sym_file_redirect] = STATE(2386), - [sym_heredoc_redirect] = STATE(2386), - [sym_herestring_redirect] = STATE(2386), - [aux_sym_redirected_statement_repeat1] = STATE(2386), + [389] = { + [sym_concatenation] = STATE(245), + [sym_string] = STATE(920), + [sym_array] = STATE(245), + [sym_simple_expansion] = STATE(920), + [sym_string_expansion] = STATE(920), + [sym_expansion] = STATE(920), + [sym_command_substitution] = STATE(920), + [sym_process_substitution] = STATE(920), + [sym__empty_value] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(443), + [sym__special_characters] = ACTIONS(1845), + [anon_sym_DQUOTE] = ACTIONS(447), + [anon_sym_DOLLAR] = ACTIONS(449), + [sym_raw_string] = ACTIONS(1847), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(455), + [anon_sym_BQUOTE] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(459), + [anon_sym_GT_LPAREN] = ACTIONS(459), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1847), + }, + [390] = { + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_PLUS_EQ] = ACTIONS(1849), + [sym_comment] = ACTIONS(57), + }, + [391] = { + [aux_sym_concatenation_repeat1] = STATE(922), + [sym__simple_heredoc_body] = ACTIONS(933), + [sym__heredoc_body_beginning] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [sym_variable_name] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(937), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(937), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(937), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [sym__special_characters] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(937), + [sym_raw_string] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(937), + [sym_word] = ACTIONS(937), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(937), + }, + [392] = { + [aux_sym_concatenation_repeat1] = STATE(922), [sym__simple_heredoc_body] = ACTIONS(951), [sym__heredoc_body_beginning] = ACTIONS(951), - [sym_file_descriptor] = ACTIONS(5079), + [sym_file_descriptor] = ACTIONS(951), + [sym__concat] = ACTIONS(935), + [sym_variable_name] = ACTIONS(951), [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_esac] = ACTIONS(951), [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_RPAREN] = ACTIONS(951), [anon_sym_SEMI_SEMI] = ACTIONS(951), [anon_sym_PIPE_AMP] = ACTIONS(951), [anon_sym_AMP_AMP] = ACTIONS(951), [anon_sym_PIPE_PIPE] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_GT_GT] = ACTIONS(5095), - [anon_sym_AMP_GT] = ACTIONS(5093), - [anon_sym_AMP_GT_GT] = ACTIONS(5095), - [anon_sym_LT_AMP] = ACTIONS(5095), - [anon_sym_GT_AMP] = ACTIONS(5095), - [anon_sym_LT_LT] = ACTIONS(321), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(953), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_AMP_GT] = ACTIONS(953), + [anon_sym_AMP_GT_GT] = ACTIONS(951), + [anon_sym_LT_AMP] = ACTIONS(951), + [anon_sym_GT_AMP] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(953), + [anon_sym_LT_LT_DASH] = ACTIONS(951), + [anon_sym_LT_LT_LT] = ACTIONS(951), + [sym__special_characters] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(953), + [sym_raw_string] = ACTIONS(951), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(951), + [anon_sym_BQUOTE] = ACTIONS(951), + [anon_sym_LT_LPAREN] = ACTIONS(951), + [anon_sym_GT_LPAREN] = ACTIONS(951), [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(953), + [sym_word] = ACTIONS(953), [anon_sym_LF] = ACTIONS(951), [anon_sym_AMP] = ACTIONS(953), }, - [2198] = { - [sym_concatenation] = STATE(2387), - [sym_string] = STATE(2389), - [sym_simple_expansion] = STATE(2389), - [sym_string_expansion] = STATE(2389), - [sym_expansion] = STATE(2389), - [sym_command_substitution] = STATE(2389), - [sym_process_substitution] = STATE(2389), - [sym_regex] = ACTIONS(5476), - [sym__special_characters] = ACTIONS(5478), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(5480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), + [393] = { + [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_PLUS_EQ] = ACTIONS(1849), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5480), }, - [2199] = { - [aux_sym_concatenation_repeat1] = STATE(2169), - [sym__simple_heredoc_body] = ACTIONS(961), - [sym__heredoc_body_beginning] = ACTIONS(961), - [sym_file_descriptor] = ACTIONS(961), - [sym__concat] = ACTIONS(5055), - [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), - }, - [2200] = { - [aux_sym_concatenation_repeat1] = STATE(2169), + [394] = { + [sym_variable_assignment] = STATE(923), + [sym_subscript] = STATE(393), + [sym_concatenation] = STATE(923), + [sym_string] = STATE(392), + [sym_simple_expansion] = STATE(392), + [sym_string_expansion] = STATE(392), + [sym_expansion] = STATE(392), + [sym_command_substitution] = STATE(392), + [sym_process_substitution] = STATE(392), + [aux_sym_declaration_command_repeat1] = STATE(923), [sym__simple_heredoc_body] = ACTIONS(965), [sym__heredoc_body_beginning] = ACTIONS(965), [sym_file_descriptor] = ACTIONS(965), - [sym__concat] = ACTIONS(5055), + [sym_variable_name] = ACTIONS(719), [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_esac] = 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(967), - [anon_sym_EQ_EQ] = ACTIONS(967), [anon_sym_LT] = ACTIONS(967), [anon_sym_GT] = ACTIONS(967), [anon_sym_GT_GT] = ACTIONS(965), @@ -70238,320 +23326,271 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(967), [anon_sym_LT_LT_DASH] = ACTIONS(965), [anon_sym_LT_LT_LT] = ACTIONS(965), - [sym__special_characters] = ACTIONS(965), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_DOLLAR] = ACTIONS(967), - [sym_raw_string] = ACTIONS(965), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(965), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(965), - [anon_sym_BQUOTE] = ACTIONS(965), - [anon_sym_LT_LPAREN] = ACTIONS(965), - [anon_sym_GT_LPAREN] = ACTIONS(965), + [sym__special_characters] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(267), + [anon_sym_DOLLAR] = ACTIONS(269), + [sym_raw_string] = ACTIONS(723), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(273), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(277), + [anon_sym_LT_LPAREN] = ACTIONS(279), + [anon_sym_GT_LPAREN] = ACTIONS(279), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(967), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1851), + [sym_word] = ACTIONS(727), [anon_sym_LF] = ACTIONS(965), [anon_sym_AMP] = ACTIONS(967), }, - [2201] = { - [sym_concatenation] = STATE(2390), - [sym_string] = STATE(2200), - [sym_simple_expansion] = STATE(2200), - [sym_string_expansion] = STATE(2200), - [sym_expansion] = STATE(2200), - [sym_command_substitution] = STATE(2200), - [sym_process_substitution] = STATE(2200), - [aux_sym_command_repeat2] = STATE(2390), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__heredoc_body_beginning] = ACTIONS(969), - [sym_file_descriptor] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_esac] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(969), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_EQ_TILDE] = ACTIONS(5101), - [anon_sym_EQ_EQ] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_AMP_GT_GT] = ACTIONS(969), - [anon_sym_LT_AMP] = ACTIONS(969), - [anon_sym_GT_AMP] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(969), - [anon_sym_LT_LT_LT] = ACTIONS(969), - [sym__special_characters] = ACTIONS(5103), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(5105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), + [395] = { + [aux_sym_concatenation_repeat1] = STATE(924), + [sym__simple_heredoc_body] = ACTIONS(971), + [sym__heredoc_body_beginning] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_RPAREN] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [sym__special_characters] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5107), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_AMP] = ACTIONS(971), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(975), + [sym_word] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(975), }, - [2202] = { - [anon_sym_esac] = ACTIONS(5446), - [sym__special_characters] = ACTIONS(5450), - [anon_sym_DQUOTE] = ACTIONS(5450), - [anon_sym_DOLLAR] = ACTIONS(5448), - [sym_raw_string] = ACTIONS(5450), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5450), - [anon_sym_BQUOTE] = ACTIONS(5450), - [anon_sym_LT_LPAREN] = ACTIONS(5450), - [anon_sym_GT_LPAREN] = ACTIONS(5450), + [396] = { + [aux_sym_concatenation_repeat1] = STATE(924), + [sym__simple_heredoc_body] = ACTIONS(989), + [sym__heredoc_body_beginning] = ACTIONS(989), + [sym_file_descriptor] = ACTIONS(989), + [sym__concat] = ACTIONS(973), + [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(991), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_AMP_GT] = ACTIONS(991), + [anon_sym_AMP_GT_GT] = ACTIONS(989), + [anon_sym_LT_AMP] = ACTIONS(989), + [anon_sym_GT_AMP] = ACTIONS(989), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_LT_LT_DASH] = ACTIONS(989), + [anon_sym_LT_LT_LT] = ACTIONS(989), + [sym__special_characters] = ACTIONS(989), + [anon_sym_DQUOTE] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(991), + [sym_raw_string] = ACTIONS(989), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(989), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(989), + [anon_sym_LT_LPAREN] = ACTIONS(989), + [anon_sym_GT_LPAREN] = ACTIONS(989), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5448), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(991), + [sym_word] = ACTIONS(991), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), }, - [2203] = { - [sym_file_redirect] = STATE(2197), - [sym_heredoc_redirect] = STATE(2197), - [sym_heredoc_body] = STATE(2196), - [sym_herestring_redirect] = STATE(2197), - [aux_sym_redirected_statement_repeat1] = STATE(2197), - [sym__simple_heredoc_body] = ACTIONS(299), - [sym__heredoc_body_beginning] = ACTIONS(301), - [sym_file_descriptor] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5081), - [anon_sym_esac] = ACTIONS(5482), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_SEMI_SEMI] = ACTIONS(5484), - [anon_sym_PIPE_AMP] = ACTIONS(5089), - [anon_sym_AMP_AMP] = ACTIONS(5091), - [anon_sym_PIPE_PIPE] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_GT_GT] = ACTIONS(5095), - [anon_sym_AMP_GT] = ACTIONS(5093), - [anon_sym_AMP_GT_GT] = ACTIONS(5095), - [anon_sym_LT_AMP] = ACTIONS(5095), - [anon_sym_GT_AMP] = ACTIONS(5095), - [anon_sym_LT_LT] = ACTIONS(321), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(5097), + [397] = { + [sym_concatenation] = STATE(925), + [sym_string] = STATE(396), + [sym_simple_expansion] = STATE(396), + [sym_string_expansion] = STATE(396), + [sym_expansion] = STATE(396), + [sym_command_substitution] = STATE(396), + [sym_process_substitution] = STATE(396), + [aux_sym_unset_command_repeat1] = STATE(925), + [sym__simple_heredoc_body] = ACTIONS(1003), + [sym__heredoc_body_beginning] = ACTIONS(1003), + [sym_file_descriptor] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_RPAREN] = ACTIONS(1003), + [anon_sym_SEMI_SEMI] = ACTIONS(1003), + [anon_sym_PIPE_AMP] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_AMP_GT] = ACTIONS(1005), + [anon_sym_AMP_GT_GT] = ACTIONS(1003), + [anon_sym_LT_AMP] = ACTIONS(1003), + [anon_sym_GT_AMP] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_LT_LT_DASH] = ACTIONS(1003), + [anon_sym_LT_LT_LT] = ACTIONS(1003), + [sym__special_characters] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(299), + [anon_sym_BQUOTE] = ACTIONS(301), + [anon_sym_LT_LPAREN] = ACTIONS(303), + [anon_sym_GT_LPAREN] = ACTIONS(303), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5081), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1853), + [sym_word] = ACTIONS(735), + [anon_sym_LF] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1005), }, - [2204] = { - [sym_file_redirect] = STATE(2197), - [sym_heredoc_redirect] = STATE(2197), - [sym_heredoc_body] = STATE(2196), - [sym_herestring_redirect] = STATE(2197), - [aux_sym_redirected_statement_repeat1] = STATE(2197), - [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(5081), - [anon_sym_esac] = ACTIONS(5446), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_SEMI_SEMI] = ACTIONS(5484), - [anon_sym_PIPE_AMP] = ACTIONS(5089), - [anon_sym_AMP_AMP] = ACTIONS(5091), - [anon_sym_PIPE_PIPE] = ACTIONS(5091), - [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(5097), - [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(5099), - [anon_sym_AMP] = ACTIONS(5081), - }, - [2205] = { - [sym__terminated_statement] = STATE(2205), - [sym_redirected_statement] = STATE(2392), - [sym_for_statement] = STATE(2392), - [sym_c_style_for_statement] = STATE(2392), - [sym_while_statement] = STATE(2392), - [sym_if_statement] = STATE(2392), - [sym_case_statement] = STATE(2392), - [sym_function_definition] = STATE(2392), - [sym_compound_statement] = STATE(2392), - [sym_subshell] = STATE(2392), - [sym_pipeline] = STATE(2392), - [sym_list] = STATE(2392), - [sym_negated_command] = STATE(2392), - [sym_test_command] = STATE(2392), - [sym_declaration_command] = STATE(2392), - [sym_unset_command] = STATE(2392), - [sym_command] = STATE(2392), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(2393), - [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(2205), - [aux_sym_command_repeat1] = STATE(63), - [sym_file_descriptor] = ACTIONS(977), - [sym_variable_name] = ACTIONS(980), - [anon_sym_for] = ACTIONS(983), - [anon_sym_LPAREN_LPAREN] = ACTIONS(986), - [anon_sym_while] = ACTIONS(989), - [anon_sym_if] = ACTIONS(992), - [anon_sym_case] = ACTIONS(995), - [anon_sym_esac] = ACTIONS(3616), - [anon_sym_SEMI_SEMI] = ACTIONS(1445), - [anon_sym_function] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1013), - [anon_sym_declare] = ACTIONS(1016), - [anon_sym_typeset] = ACTIONS(1016), - [anon_sym_export] = ACTIONS(1016), - [anon_sym_readonly] = ACTIONS(1016), - [anon_sym_local] = ACTIONS(1016), - [anon_sym_unset] = ACTIONS(1019), - [anon_sym_unsetenv] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1022), - [anon_sym_GT] = ACTIONS(1022), - [anon_sym_GT_GT] = ACTIONS(1025), - [anon_sym_AMP_GT] = ACTIONS(1022), - [anon_sym_AMP_GT_GT] = ACTIONS(1025), - [anon_sym_LT_AMP] = ACTIONS(1025), - [anon_sym_GT_AMP] = ACTIONS(1025), - [sym__special_characters] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1034), - [sym_raw_string] = ACTIONS(1037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1040), + [398] = { + [aux_sym_concatenation_repeat1] = STATE(926), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_RPAREN] = ACTIONS(1043), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_EQ_TILDE] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), - [anon_sym_BQUOTE] = ACTIONS(1046), - [anon_sym_LT_LPAREN] = ACTIONS(1049), - [anon_sym_GT_LPAREN] = ACTIONS(1049), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1052), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), }, - [2206] = { - [sym_concatenation] = STATE(2394), - [sym_string] = STATE(2200), - [sym_simple_expansion] = STATE(2200), - [sym_string_expansion] = STATE(2200), - [sym_expansion] = STATE(2200), - [sym_command_substitution] = STATE(2200), - [sym_process_substitution] = STATE(2200), - [aux_sym_command_repeat2] = STATE(2394), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__heredoc_body_beginning] = ACTIONS(969), - [sym_file_descriptor] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_esac] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(969), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_EQ_TILDE] = ACTIONS(5101), - [anon_sym_EQ_EQ] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_AMP_GT_GT] = ACTIONS(969), - [anon_sym_LT_AMP] = ACTIONS(969), - [anon_sym_GT_AMP] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(969), - [anon_sym_LT_LT_LT] = ACTIONS(969), - [sym__special_characters] = ACTIONS(5103), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(5105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), + [399] = { + [sym__simple_heredoc_body] = ACTIONS(1855), + [sym__heredoc_body_beginning] = ACTIONS(1855), + [sym_file_descriptor] = ACTIONS(1855), + [ts_builtin_sym_end] = ACTIONS(1855), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_done] = ACTIONS(1855), + [anon_sym_fi] = ACTIONS(1855), + [anon_sym_elif] = ACTIONS(1855), + [anon_sym_else] = ACTIONS(1855), + [anon_sym_esac] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1855), + [anon_sym_SEMI_SEMI] = ACTIONS(1855), + [anon_sym_PIPE_AMP] = ACTIONS(1855), + [anon_sym_AMP_AMP] = ACTIONS(1855), + [anon_sym_PIPE_PIPE] = ACTIONS(1855), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_GT] = ACTIONS(1857), + [anon_sym_GT_GT] = ACTIONS(1855), + [anon_sym_AMP_GT] = ACTIONS(1857), + [anon_sym_AMP_GT_GT] = ACTIONS(1855), + [anon_sym_LT_AMP] = ACTIONS(1855), + [anon_sym_GT_AMP] = ACTIONS(1855), + [anon_sym_LT_LT] = ACTIONS(1857), + [anon_sym_LT_LT_DASH] = ACTIONS(1855), + [anon_sym_LT_LT_LT] = ACTIONS(1855), + [anon_sym_BQUOTE] = ACTIONS(1855), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5107), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_AMP] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1857), }, - [2207] = { - [sym__terminated_statement] = STATE(2205), - [sym_redirected_statement] = STATE(2396), - [sym_for_statement] = STATE(2396), - [sym_c_style_for_statement] = STATE(2396), - [sym_while_statement] = STATE(2396), - [sym_if_statement] = STATE(2396), - [sym_case_statement] = STATE(2396), - [sym_function_definition] = STATE(2396), - [sym_compound_statement] = STATE(2396), - [sym_subshell] = STATE(2396), - [sym_pipeline] = STATE(2396), - [sym_list] = STATE(2396), - [sym_negated_command] = STATE(2396), - [sym_test_command] = STATE(2396), - [sym_declaration_command] = STATE(2396), - [sym_unset_command] = STATE(2396), - [sym_command] = STATE(2396), - [sym_command_name] = STATE(1954), - [sym_variable_assignment] = STATE(2397), - [sym_subscript] = STATE(1956), - [sym_file_redirect] = STATE(1959), - [sym_concatenation] = STATE(1957), - [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), - [aux_sym__statements_repeat1] = STATE(2205), - [aux_sym_command_repeat1] = STATE(1959), + [400] = { + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_GT] = ACTIONS(1859), + [anon_sym_GT_GT] = ACTIONS(1861), + [anon_sym_AMP_GT] = ACTIONS(1859), + [anon_sym_AMP_GT_GT] = ACTIONS(1861), + [anon_sym_LT_AMP] = ACTIONS(1861), + [anon_sym_GT_AMP] = ACTIONS(1861), + [sym_comment] = ACTIONS(57), + }, + [401] = { + [sym_redirected_statement] = STATE(928), + [sym_for_statement] = STATE(928), + [sym_c_style_for_statement] = STATE(928), + [sym_while_statement] = STATE(928), + [sym_if_statement] = STATE(928), + [sym_case_statement] = STATE(928), + [sym_function_definition] = STATE(928), + [sym_compound_statement] = STATE(928), + [sym_subshell] = STATE(928), + [sym_pipeline] = STATE(928), + [sym_list] = STATE(928), + [sym_negated_command] = STATE(928), + [sym_test_command] = STATE(928), + [sym_declaration_command] = STATE(928), + [sym_unset_command] = STATE(928), + [sym_command] = STATE(928), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(929), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym_command_repeat1] = STATE(106), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4456), + [sym_variable_name] = ACTIONS(161), [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(5446), - [anon_sym_SEMI_SEMI] = ACTIONS(5486), [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(4462), + [anon_sym_BANG] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(29), [anon_sym_LBRACK_LBRACK] = ACTIONS(31), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -70559,198 +23598,820 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(39), [anon_sym_LT_AMP] = ACTIONS(39), [anon_sym_GT_AMP] = ACTIONS(39), - [sym__special_characters] = ACTIONS(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), + [sym__special_characters] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(4484), + [sym_word] = ACTIONS(173), }, - [2208] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_esac] = ACTIONS(5488), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(5490), - [anon_sym_DQUOTE] = ACTIONS(5492), - [anon_sym_DOLLAR] = ACTIONS(5490), - [sym_raw_string] = ACTIONS(5492), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5492), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5492), - [anon_sym_BQUOTE] = ACTIONS(5492), - [anon_sym_LT_LPAREN] = ACTIONS(5492), - [anon_sym_GT_LPAREN] = ACTIONS(5492), + [402] = { + [sym_redirected_statement] = STATE(930), + [sym_for_statement] = STATE(930), + [sym_c_style_for_statement] = STATE(930), + [sym_while_statement] = STATE(930), + [sym_if_statement] = STATE(930), + [sym_case_statement] = STATE(930), + [sym_function_definition] = STATE(930), + [sym_compound_statement] = STATE(930), + [sym_subshell] = STATE(930), + [sym_pipeline] = STATE(930), + [sym_list] = STATE(930), + [sym_negated_command] = STATE(930), + [sym_test_command] = STATE(930), + [sym_declaration_command] = STATE(930), + [sym_unset_command] = STATE(930), + [sym_command] = STATE(930), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(931), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(5490), + [sym_word] = ACTIONS(173), }, - [2209] = { - [anon_sym_esac] = ACTIONS(5488), - [sym__special_characters] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5492), - [anon_sym_DOLLAR] = ACTIONS(5490), - [sym_raw_string] = ACTIONS(5492), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5492), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5492), - [anon_sym_BQUOTE] = ACTIONS(5492), - [anon_sym_LT_LPAREN] = ACTIONS(5492), - [anon_sym_GT_LPAREN] = ACTIONS(5492), + [403] = { + [sym_concatenation] = STATE(632), + [sym_string] = STATE(933), + [sym_simple_expansion] = STATE(933), + [sym_string_expansion] = STATE(933), + [sym_expansion] = STATE(933), + [sym_command_substitution] = STATE(933), + [sym_process_substitution] = STATE(933), + [sym__special_characters] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1865), + [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(5490), + [sym_word] = ACTIONS(1865), }, - [2210] = { - [sym_file_redirect] = STATE(2197), - [sym_heredoc_redirect] = STATE(2197), - [sym_heredoc_body] = STATE(2196), - [sym_herestring_redirect] = STATE(2197), - [aux_sym_redirected_statement_repeat1] = STATE(2197), - [sym__simple_heredoc_body] = ACTIONS(299), - [sym__heredoc_body_beginning] = ACTIONS(301), - [sym_file_descriptor] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5081), - [anon_sym_esac] = ACTIONS(5494), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_SEMI_SEMI] = ACTIONS(5496), - [anon_sym_PIPE_AMP] = ACTIONS(5089), - [anon_sym_AMP_AMP] = ACTIONS(5091), - [anon_sym_PIPE_PIPE] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_GT_GT] = ACTIONS(5095), - [anon_sym_AMP_GT] = ACTIONS(5093), - [anon_sym_AMP_GT_GT] = ACTIONS(5095), - [anon_sym_LT_AMP] = ACTIONS(5095), - [anon_sym_GT_AMP] = ACTIONS(5095), - [anon_sym_LT_LT] = ACTIONS(321), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(5097), + [404] = { + [sym_concatenation] = STATE(636), + [sym_string] = STATE(935), + [sym_simple_expansion] = STATE(935), + [sym_string_expansion] = STATE(935), + [sym_expansion] = STATE(935), + [sym_command_substitution] = STATE(935), + [sym_process_substitution] = STATE(935), + [sym__special_characters] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1869), + [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), - [anon_sym_LF] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5081), + [sym_word] = ACTIONS(1869), }, - [2211] = { - [sym_file_redirect] = STATE(2197), - [sym_heredoc_redirect] = STATE(2197), - [sym_heredoc_body] = STATE(2196), - [sym_herestring_redirect] = STATE(2197), - [aux_sym_redirected_statement_repeat1] = STATE(2197), - [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(5081), - [anon_sym_esac] = ACTIONS(5488), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_SEMI_SEMI] = ACTIONS(5496), - [anon_sym_PIPE_AMP] = ACTIONS(5089), - [anon_sym_AMP_AMP] = ACTIONS(5091), - [anon_sym_PIPE_PIPE] = ACTIONS(5091), - [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(5097), - [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), + [405] = { + [sym_file_redirect] = STATE(936), + [sym_heredoc_redirect] = STATE(936), + [sym_herestring_redirect] = STATE(936), + [aux_sym_redirected_statement_repeat1] = STATE(936), + [sym__simple_heredoc_body] = ACTIONS(1233), + [sym__heredoc_body_beginning] = ACTIONS(1233), + [sym_file_descriptor] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_RPAREN] = ACTIONS(1233), + [anon_sym_SEMI_SEMI] = ACTIONS(1233), + [anon_sym_PIPE_AMP] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_GT] = ACTIONS(749), + [anon_sym_AMP_GT] = ACTIONS(747), + [anon_sym_AMP_GT_GT] = ACTIONS(749), + [anon_sym_LT_AMP] = ACTIONS(749), + [anon_sym_GT_AMP] = ACTIONS(749), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(751), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1235), + }, + [406] = { + [sym_concatenation] = STATE(639), + [sym_string] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_string_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [sym_regex] = ACTIONS(1237), + [sym__special_characters] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1873), + [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(1873), + }, + [407] = { + [aux_sym_concatenation_repeat1] = STATE(398), + [sym__simple_heredoc_body] = ACTIONS(1243), + [sym__heredoc_body_beginning] = ACTIONS(1243), + [sym_file_descriptor] = ACTIONS(1243), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_RPAREN] = ACTIONS(1243), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1245), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_LT_LT_DASH] = ACTIONS(1243), + [anon_sym_LT_LT_LT] = ACTIONS(1243), + [sym__special_characters] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1245), + [sym_raw_string] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [anon_sym_LT_LPAREN] = ACTIONS(1243), + [anon_sym_GT_LPAREN] = ACTIONS(1243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1245), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1245), + }, + [408] = { + [aux_sym_concatenation_repeat1] = STATE(398), + [sym__simple_heredoc_body] = ACTIONS(1247), + [sym__heredoc_body_beginning] = ACTIONS(1247), + [sym_file_descriptor] = ACTIONS(1247), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1247), + [anon_sym_SEMI_SEMI] = ACTIONS(1247), + [anon_sym_PIPE_AMP] = ACTIONS(1247), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_AMP_GT] = ACTIONS(1249), + [anon_sym_AMP_GT_GT] = ACTIONS(1247), + [anon_sym_LT_AMP] = ACTIONS(1247), + [anon_sym_GT_AMP] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_LT_LT_DASH] = ACTIONS(1247), + [anon_sym_LT_LT_LT] = ACTIONS(1247), + [sym__special_characters] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1247), + [anon_sym_DOLLAR] = ACTIONS(1249), + [sym_raw_string] = ACTIONS(1247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1247), + [anon_sym_BQUOTE] = ACTIONS(1247), + [anon_sym_LT_LPAREN] = ACTIONS(1247), + [anon_sym_GT_LPAREN] = ACTIONS(1247), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1249), + [anon_sym_LF] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1249), + }, + [409] = { + [sym_concatenation] = STATE(939), + [sym_string] = STATE(408), + [sym_simple_expansion] = STATE(408), + [sym_string_expansion] = STATE(408), + [sym_expansion] = STATE(408), + [sym_command_substitution] = STATE(408), + [sym_process_substitution] = STATE(408), + [aux_sym_command_repeat2] = STATE(939), + [sym__simple_heredoc_body] = ACTIONS(1251), + [sym__heredoc_body_beginning] = ACTIONS(1251), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(757), + [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(759), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + }, + [410] = { + [sym_file_redirect] = STATE(405), + [sym_heredoc_redirect] = STATE(405), + [sym_heredoc_body] = STATE(644), + [sym_herestring_redirect] = STATE(405), + [aux_sym_redirected_statement_repeat1] = STATE(405), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_SEMI_SEMI] = ACTIONS(1257), + [anon_sym_PIPE_AMP] = ACTIONS(743), + [anon_sym_AMP_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(745), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_GT] = ACTIONS(749), + [anon_sym_AMP_GT] = ACTIONS(747), + [anon_sym_AMP_GT_GT] = ACTIONS(749), + [anon_sym_LT_AMP] = ACTIONS(749), + [anon_sym_GT_AMP] = ACTIONS(749), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(751), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1255), + }, + [411] = { + [sym_file_redirect] = STATE(405), + [sym_heredoc_redirect] = STATE(405), + [sym_heredoc_body] = STATE(644), + [sym_herestring_redirect] = STATE(405), + [aux_sym_redirected_statement_repeat1] = STATE(405), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_SEMI_SEMI] = ACTIONS(1257), + [anon_sym_PIPE_AMP] = ACTIONS(743), + [anon_sym_AMP_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(745), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(751), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1255), + }, + [412] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(408), + [sym_simple_expansion] = STATE(408), + [sym_string_expansion] = STATE(408), + [sym_expansion] = STATE(408), + [sym_command_substitution] = STATE(408), + [sym_process_substitution] = STATE(408), + [aux_sym_command_repeat2] = STATE(940), + [sym__simple_heredoc_body] = ACTIONS(1251), + [sym__heredoc_body_beginning] = ACTIONS(1251), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(757), + [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(759), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + }, + [413] = { + [sym_concatenation] = STATE(941), + [sym_string] = STATE(946), + [sym_array] = STATE(941), + [sym_simple_expansion] = STATE(946), + [sym_string_expansion] = STATE(946), + [sym_expansion] = STATE(946), + [sym_command_substitution] = STATE(946), + [sym_process_substitution] = STATE(946), + [sym__empty_value] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1877), + [sym__special_characters] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1883), + [sym_raw_string] = ACTIONS(1885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1887), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1889), + [anon_sym_BQUOTE] = ACTIONS(1891), + [anon_sym_LT_LPAREN] = ACTIONS(1893), + [anon_sym_GT_LPAREN] = ACTIONS(1893), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1885), + }, + [414] = { + [sym__expression] = STATE(952), + [sym_binary_expression] = STATE(952), + [sym_unary_expression] = STATE(952), + [sym_postfix_expression] = STATE(952), + [sym_parenthesized_expression] = STATE(952), + [sym_concatenation] = STATE(952), + [sym_string] = STATE(261), + [sym_simple_expansion] = STATE(261), + [sym_string_expansion] = STATE(261), + [sym_expansion] = STATE(261), + [sym_command_substitution] = STATE(261), + [sym_process_substitution] = STATE(261), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_SEMI_SEMI] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(467), + [sym__special_characters] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(473), + [sym_raw_string] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_LT_LPAREN] = ACTIONS(483), + [anon_sym_GT_LPAREN] = ACTIONS(483), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(485), + [sym_test_operator] = ACTIONS(487), + [anon_sym_LF] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + }, + [415] = { + [anon_sym_in] = ACTIONS(1899), + [anon_sym_SEMI] = ACTIONS(1901), + [anon_sym_SEMI_SEMI] = ACTIONS(1903), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + }, + [416] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(1905), + [anon_sym_AMP_AMP] = ACTIONS(553), + [anon_sym_PIPE_PIPE] = ACTIONS(553), + [anon_sym_EQ_TILDE] = ACTIONS(555), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_PLUS_EQ] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_DASH_EQ] = ACTIONS(553), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(553), + }, + [417] = { + [sym_do_group] = STATE(957), + [anon_sym_do] = ACTIONS(1907), + [sym_comment] = ACTIONS(57), + }, + [418] = { + [anon_sym_then] = ACTIONS(1909), + [sym_comment] = ACTIONS(57), + }, + [419] = { + [aux_sym_concatenation_repeat1] = STATE(371), + [sym__concat] = ACTIONS(679), + [anon_sym_in] = ACTIONS(1911), + [anon_sym_SEMI] = ACTIONS(1913), + [anon_sym_SEMI_SEMI] = ACTIONS(1915), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + }, + [420] = { + [aux_sym_concatenation_repeat1] = STATE(371), + [sym__concat] = ACTIONS(679), + [anon_sym_in] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_SEMI_SEMI] = ACTIONS(1921), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + }, + [421] = { + [anon_sym_in] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_SEMI_SEMI] = ACTIONS(1921), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + }, + [422] = { + [sym_compound_statement] = STATE(964), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_LBRACE] = ACTIONS(191), + [sym_comment] = ACTIONS(57), + }, + [423] = { + [anon_sym_RPAREN] = ACTIONS(1925), + [sym_comment] = ACTIONS(57), + }, + [424] = { + [sym__simple_heredoc_body] = ACTIONS(777), + [sym__heredoc_body_beginning] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_SEMI_SEMI] = ACTIONS(777), + [anon_sym_RBRACE] = ACTIONS(777), + [anon_sym_PIPE_AMP] = ACTIONS(777), + [anon_sym_AMP_AMP] = ACTIONS(777), + [anon_sym_PIPE_PIPE] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(779), + [anon_sym_GT] = ACTIONS(779), + [anon_sym_GT_GT] = ACTIONS(777), + [anon_sym_AMP_GT] = ACTIONS(779), + [anon_sym_AMP_GT_GT] = ACTIONS(777), + [anon_sym_LT_AMP] = ACTIONS(777), + [anon_sym_GT_AMP] = ACTIONS(777), + [anon_sym_LT_LT] = ACTIONS(779), + [anon_sym_LT_LT_DASH] = ACTIONS(777), + [anon_sym_LT_LT_LT] = ACTIONS(777), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(777), + [anon_sym_AMP] = ACTIONS(779), + }, + [425] = { + [anon_sym_RBRACE] = ACTIONS(1927), + [sym_comment] = ACTIONS(57), + }, + [426] = { + [sym__simple_heredoc_body] = ACTIONS(889), + [sym__heredoc_body_beginning] = ACTIONS(889), + [sym_file_descriptor] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_SEMI_SEMI] = ACTIONS(889), + [anon_sym_RBRACE] = ACTIONS(889), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(889), + [anon_sym_PIPE_PIPE] = ACTIONS(889), + [anon_sym_LT] = ACTIONS(891), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_GT_GT] = ACTIONS(889), + [anon_sym_AMP_GT] = ACTIONS(891), + [anon_sym_AMP_GT_GT] = ACTIONS(889), + [anon_sym_LT_AMP] = ACTIONS(889), + [anon_sym_GT_AMP] = ACTIONS(889), + [anon_sym_LT_LT] = ACTIONS(891), + [anon_sym_LT_LT_DASH] = ACTIONS(889), + [anon_sym_LT_LT_LT] = ACTIONS(889), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + }, + [427] = { + [anon_sym_AMP_AMP] = ACTIONS(917), + [anon_sym_PIPE_PIPE] = ACTIONS(917), + [anon_sym_RBRACK] = ACTIONS(1905), + [anon_sym_EQ_TILDE] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(921), + [anon_sym_GT] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(917), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(923), + [anon_sym_DASH_DASH] = ACTIONS(923), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(917), + }, + [428] = { + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1905), + [anon_sym_EQ_TILDE] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_DASH_EQ] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(925), + }, + [429] = { + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(1929), + [anon_sym_PLUS_EQ] = ACTIONS(1929), + [sym_comment] = ACTIONS(57), + }, + [430] = { + [aux_sym_concatenation_repeat1] = STATE(969), + [sym__simple_heredoc_body] = ACTIONS(933), + [sym__heredoc_body_beginning] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(933), + [sym__concat] = ACTIONS(1931), + [sym_variable_name] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(937), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(937), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(937), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [sym__special_characters] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(937), + [sym_raw_string] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(937), + [sym_word] = ACTIONS(937), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(937), + }, + [431] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(972), + [anon_sym_DQUOTE] = ACTIONS(1933), + [anon_sym_DOLLAR] = ACTIONS(1935), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), [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(5099), - [anon_sym_AMP] = ACTIONS(5081), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), }, - [2212] = { - [sym__terminated_statement] = STATE(2205), - [sym_redirected_statement] = STATE(2400), - [sym_for_statement] = STATE(2400), - [sym_c_style_for_statement] = STATE(2400), - [sym_while_statement] = STATE(2400), - [sym_if_statement] = STATE(2400), - [sym_case_statement] = STATE(2400), - [sym_function_definition] = STATE(2400), - [sym_compound_statement] = STATE(2400), - [sym_subshell] = STATE(2400), - [sym_pipeline] = STATE(2400), - [sym_list] = STATE(2400), - [sym_negated_command] = STATE(2400), - [sym_test_command] = STATE(2400), - [sym_declaration_command] = STATE(2400), - [sym_unset_command] = STATE(2400), - [sym_command] = STATE(2400), - [sym_command_name] = STATE(1954), - [sym_variable_assignment] = STATE(2401), - [sym_subscript] = STATE(1956), - [sym_file_redirect] = STATE(1959), - [sym_concatenation] = STATE(1957), - [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), - [aux_sym__statements_repeat1] = STATE(2205), - [aux_sym_command_repeat1] = STATE(1959), + [432] = { + [sym_string] = STATE(974), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_DQUOTE] = ACTIONS(785), + [anon_sym_DOLLAR] = ACTIONS(1937), + [sym_raw_string] = ACTIONS(1939), + [anon_sym_POUND] = ACTIONS(1937), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1941), + [anon_sym_STAR] = ACTIONS(1943), + [anon_sym_AT] = ACTIONS(1943), + [anon_sym_QMARK] = ACTIONS(1943), + [anon_sym_0] = ACTIONS(1941), + [anon_sym__] = ACTIONS(1941), + }, + [433] = { + [aux_sym_concatenation_repeat1] = STATE(969), + [sym__simple_heredoc_body] = ACTIONS(951), + [sym__heredoc_body_beginning] = ACTIONS(951), + [sym_file_descriptor] = ACTIONS(951), + [sym__concat] = ACTIONS(1931), + [sym_variable_name] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_SEMI_SEMI] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_PIPE_AMP] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_LT] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(953), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_AMP_GT] = ACTIONS(953), + [anon_sym_AMP_GT_GT] = ACTIONS(951), + [anon_sym_LT_AMP] = ACTIONS(951), + [anon_sym_GT_AMP] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(953), + [anon_sym_LT_LT_DASH] = ACTIONS(951), + [anon_sym_LT_LT_LT] = ACTIONS(951), + [sym__special_characters] = ACTIONS(953), + [anon_sym_DQUOTE] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(953), + [sym_raw_string] = ACTIONS(951), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(951), + [anon_sym_BQUOTE] = ACTIONS(951), + [anon_sym_LT_LPAREN] = ACTIONS(951), + [anon_sym_GT_LPAREN] = ACTIONS(951), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(953), + [sym_word] = ACTIONS(953), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_AMP] = ACTIONS(953), + }, + [434] = { + [sym_subscript] = STATE(979), + [sym_variable_name] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_POUND] = ACTIONS(1947), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1951), + [anon_sym_STAR] = ACTIONS(1953), + [anon_sym_AT] = ACTIONS(1953), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_0] = ACTIONS(1951), + [anon_sym__] = ACTIONS(1951), + }, + [435] = { + [sym__statements] = STATE(980), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4456), + [sym_variable_name] = ACTIONS(161), [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(5488), - [anon_sym_SEMI_SEMI] = ACTIONS(5498), [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(4462), + [anon_sym_BANG] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(29), [anon_sym_LBRACK_LBRACK] = ACTIONS(31), - [anon_sym_declare] = ACTIONS(4464), - [anon_sym_typeset] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_local] = ACTIONS(4464), - [anon_sym_unset] = ACTIONS(4466), - [anon_sym_unsetenv] = ACTIONS(4466), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -70758,147 +24419,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(39), [anon_sym_LT_AMP] = ACTIONS(39), [anon_sym_GT_AMP] = ACTIONS(39), - [sym__special_characters] = ACTIONS(4468), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(4474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4484), - }, - [2213] = { - [sym__terminated_statement] = STATE(2405), - [sym_redirected_statement] = STATE(2403), - [sym_for_statement] = STATE(2403), - [sym_c_style_for_statement] = STATE(2403), - [sym_while_statement] = STATE(2403), - [sym_if_statement] = STATE(2403), - [sym_case_statement] = STATE(2403), - [sym_function_definition] = STATE(2403), - [sym_compound_statement] = STATE(2403), - [sym_subshell] = STATE(2403), - [sym_pipeline] = STATE(2403), - [sym_list] = STATE(2403), - [sym_negated_command] = STATE(2403), - [sym_test_command] = STATE(2403), - [sym_declaration_command] = STATE(2403), - [sym_unset_command] = STATE(2403), - [sym_command] = STATE(2403), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(2404), - [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(2405), - [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(5500), - [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), + [sym__special_characters] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(107), + [sym_raw_string] = ACTIONS(171), [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), + [sym_word] = ACTIONS(173), }, - [2214] = { - [aux_sym_case_item_repeat1] = STATE(1961), - [anon_sym_PIPE] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(5502), - [sym_comment] = ACTIONS(57), - }, - [2215] = { - [sym__terminated_statement] = STATE(2410), - [sym_redirected_statement] = STATE(2408), - [sym_for_statement] = STATE(2408), - [sym_c_style_for_statement] = STATE(2408), - [sym_while_statement] = STATE(2408), - [sym_if_statement] = STATE(2408), - [sym_case_statement] = STATE(2408), - [sym_function_definition] = STATE(2408), - [sym_compound_statement] = STATE(2408), - [sym_subshell] = STATE(2408), - [sym_pipeline] = STATE(2408), - [sym_list] = STATE(2408), - [sym_negated_command] = STATE(2408), - [sym_test_command] = STATE(2408), - [sym_declaration_command] = STATE(2408), - [sym_unset_command] = STATE(2408), - [sym_command] = STATE(2408), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(2409), - [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(2410), - [aux_sym_command_repeat1] = STATE(63), + [436] = { + [sym__statements] = STATE(981), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(97), + [sym_variable_name] = ACTIONS(367), [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(5504), [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(369), [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_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -70906,1501 +24489,726 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(39), [anon_sym_LT_AMP] = ACTIONS(39), [anon_sym_GT_AMP] = ACTIONS(39), - [sym__special_characters] = ACTIONS(105), + [sym__special_characters] = ACTIONS(375), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(107), + [sym_raw_string] = ACTIONS(377), [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), + [sym_word] = ACTIONS(379), }, - [2216] = { - [aux_sym_case_item_repeat1] = STATE(1961), - [anon_sym_PIPE] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(5506), - [sym_comment] = ACTIONS(57), - }, - [2217] = { - [sym__simple_heredoc_body] = ACTIONS(5508), - [sym__heredoc_body_beginning] = ACTIONS(5508), - [sym_file_descriptor] = ACTIONS(5508), - [ts_builtin_sym_end] = ACTIONS(5508), - [anon_sym_SEMI] = ACTIONS(5510), - [anon_sym_esac] = ACTIONS(5508), - [anon_sym_PIPE] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(5508), - [anon_sym_SEMI_SEMI] = ACTIONS(5508), - [anon_sym_PIPE_AMP] = ACTIONS(5508), - [anon_sym_AMP_AMP] = ACTIONS(5508), - [anon_sym_PIPE_PIPE] = ACTIONS(5508), - [anon_sym_LT] = ACTIONS(5510), - [anon_sym_GT] = ACTIONS(5510), - [anon_sym_GT_GT] = ACTIONS(5508), - [anon_sym_AMP_GT] = ACTIONS(5510), - [anon_sym_AMP_GT_GT] = ACTIONS(5508), - [anon_sym_LT_AMP] = ACTIONS(5508), - [anon_sym_GT_AMP] = ACTIONS(5508), - [anon_sym_LT_LT] = ACTIONS(5510), - [anon_sym_LT_LT_DASH] = ACTIONS(5508), - [anon_sym_LT_LT_LT] = ACTIONS(5508), - [anon_sym_BQUOTE] = ACTIONS(5508), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5508), - [anon_sym_AMP] = ACTIONS(5510), - }, - [2218] = { - [sym__simple_heredoc_body] = ACTIONS(5512), - [sym__heredoc_body_beginning] = ACTIONS(5512), - [sym_file_descriptor] = ACTIONS(5512), - [ts_builtin_sym_end] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(5514), - [anon_sym_esac] = ACTIONS(5512), - [anon_sym_PIPE] = ACTIONS(5514), - [anon_sym_RPAREN] = ACTIONS(5512), - [anon_sym_SEMI_SEMI] = ACTIONS(5512), - [anon_sym_PIPE_AMP] = ACTIONS(5512), - [anon_sym_AMP_AMP] = ACTIONS(5512), - [anon_sym_PIPE_PIPE] = ACTIONS(5512), - [anon_sym_LT] = ACTIONS(5514), - [anon_sym_GT] = ACTIONS(5514), - [anon_sym_GT_GT] = ACTIONS(5512), - [anon_sym_AMP_GT] = ACTIONS(5514), - [anon_sym_AMP_GT_GT] = ACTIONS(5512), - [anon_sym_LT_AMP] = ACTIONS(5512), - [anon_sym_GT_AMP] = ACTIONS(5512), - [anon_sym_LT_LT] = ACTIONS(5514), - [anon_sym_LT_LT_DASH] = ACTIONS(5512), - [anon_sym_LT_LT_LT] = ACTIONS(5512), - [anon_sym_BQUOTE] = ACTIONS(5512), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5512), - [anon_sym_AMP] = ACTIONS(5514), - }, - [2219] = { - [sym__concat] = ACTIONS(5216), - [anon_sym_in] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5218), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5216), - [anon_sym_AMP] = ACTIONS(5216), - }, - [2220] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_in] = ACTIONS(5220), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_SEMI_SEMI] = ACTIONS(5220), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5220), - }, - [2221] = { - [sym__concat] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_RBRACK] = ACTIONS(5216), - [anon_sym_EQ_TILDE] = ACTIONS(5216), - [anon_sym_EQ_EQ] = ACTIONS(5216), - [anon_sym_EQ] = ACTIONS(5218), - [anon_sym_PLUS_EQ] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5218), - [anon_sym_GT] = ACTIONS(5218), - [anon_sym_BANG_EQ] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(5218), - [anon_sym_DASH] = ACTIONS(5218), - [anon_sym_DASH_EQ] = ACTIONS(5216), - [anon_sym_LT_EQ] = ACTIONS(5216), - [anon_sym_GT_EQ] = ACTIONS(5216), - [anon_sym_PLUS_PLUS] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5216), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(5216), - }, - [2222] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_RBRACK] = ACTIONS(5220), - [anon_sym_EQ_TILDE] = ACTIONS(5220), - [anon_sym_EQ_EQ] = ACTIONS(5220), - [anon_sym_EQ] = ACTIONS(5222), - [anon_sym_PLUS_EQ] = ACTIONS(5220), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_BANG_EQ] = ACTIONS(5220), - [anon_sym_PLUS] = ACTIONS(5222), - [anon_sym_DASH] = ACTIONS(5222), - [anon_sym_DASH_EQ] = ACTIONS(5220), - [anon_sym_LT_EQ] = ACTIONS(5220), - [anon_sym_GT_EQ] = ACTIONS(5220), - [anon_sym_PLUS_PLUS] = ACTIONS(5220), - [anon_sym_DASH_DASH] = ACTIONS(5220), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(5220), - }, - [2223] = { - [sym__simple_heredoc_body] = ACTIONS(5216), - [sym__heredoc_body_beginning] = ACTIONS(5216), - [sym_file_descriptor] = ACTIONS(5216), - [sym__concat] = ACTIONS(5216), - [sym_variable_name] = ACTIONS(5216), - [ts_builtin_sym_end] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5218), - [anon_sym_PIPE] = ACTIONS(5218), - [anon_sym_RPAREN] = ACTIONS(5216), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [anon_sym_PIPE_AMP] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5218), - [anon_sym_GT] = ACTIONS(5218), - [anon_sym_GT_GT] = ACTIONS(5216), - [anon_sym_AMP_GT] = ACTIONS(5218), - [anon_sym_AMP_GT_GT] = ACTIONS(5216), - [anon_sym_LT_AMP] = ACTIONS(5216), - [anon_sym_GT_AMP] = ACTIONS(5216), - [anon_sym_LT_LT] = ACTIONS(5218), - [anon_sym_LT_LT_DASH] = ACTIONS(5216), - [anon_sym_LT_LT_LT] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5218), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(5216), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5218), - [sym_word] = ACTIONS(5218), - [anon_sym_LF] = ACTIONS(5216), - [anon_sym_AMP] = ACTIONS(5218), - }, - [2224] = { - [sym__simple_heredoc_body] = ACTIONS(5220), - [sym__heredoc_body_beginning] = ACTIONS(5220), - [sym_file_descriptor] = ACTIONS(5220), - [sym__concat] = ACTIONS(5220), - [sym_variable_name] = ACTIONS(5220), - [ts_builtin_sym_end] = ACTIONS(5220), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(5220), - [anon_sym_SEMI_SEMI] = ACTIONS(5220), - [anon_sym_PIPE_AMP] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_GT_GT] = ACTIONS(5220), - [anon_sym_AMP_GT] = ACTIONS(5222), - [anon_sym_AMP_GT_GT] = ACTIONS(5220), - [anon_sym_LT_AMP] = ACTIONS(5220), - [anon_sym_GT_AMP] = ACTIONS(5220), - [anon_sym_LT_LT] = ACTIONS(5222), - [anon_sym_LT_LT_DASH] = ACTIONS(5220), - [anon_sym_LT_LT_LT] = ACTIONS(5220), - [sym__special_characters] = ACTIONS(5220), - [anon_sym_DQUOTE] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [anon_sym_LT_LPAREN] = ACTIONS(5220), - [anon_sym_GT_LPAREN] = ACTIONS(5220), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5222), - [sym_word] = ACTIONS(5222), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5222), - }, - [2225] = { - [sym__simple_heredoc_body] = ACTIONS(5216), - [sym__heredoc_body_beginning] = ACTIONS(5216), - [sym_file_descriptor] = ACTIONS(5216), - [sym__concat] = ACTIONS(5216), - [ts_builtin_sym_end] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5218), - [anon_sym_PIPE] = ACTIONS(5218), - [anon_sym_RPAREN] = ACTIONS(5216), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [anon_sym_PIPE_AMP] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5218), - [anon_sym_GT] = ACTIONS(5218), - [anon_sym_GT_GT] = ACTIONS(5216), - [anon_sym_AMP_GT] = ACTIONS(5218), - [anon_sym_AMP_GT_GT] = ACTIONS(5216), - [anon_sym_LT_AMP] = ACTIONS(5216), - [anon_sym_GT_AMP] = ACTIONS(5216), - [anon_sym_LT_LT] = ACTIONS(5218), - [anon_sym_LT_LT_DASH] = ACTIONS(5216), - [anon_sym_LT_LT_LT] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5218), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(5216), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5218), - [sym_word] = ACTIONS(5218), - [anon_sym_LF] = ACTIONS(5216), - [anon_sym_AMP] = ACTIONS(5218), - }, - [2226] = { - [sym__simple_heredoc_body] = ACTIONS(5220), - [sym__heredoc_body_beginning] = ACTIONS(5220), - [sym_file_descriptor] = ACTIONS(5220), - [sym__concat] = ACTIONS(5220), - [ts_builtin_sym_end] = ACTIONS(5220), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(5220), - [anon_sym_SEMI_SEMI] = ACTIONS(5220), - [anon_sym_PIPE_AMP] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_GT_GT] = ACTIONS(5220), - [anon_sym_AMP_GT] = ACTIONS(5222), - [anon_sym_AMP_GT_GT] = ACTIONS(5220), - [anon_sym_LT_AMP] = ACTIONS(5220), - [anon_sym_GT_AMP] = ACTIONS(5220), - [anon_sym_LT_LT] = ACTIONS(5222), - [anon_sym_LT_LT_DASH] = ACTIONS(5220), - [anon_sym_LT_LT_LT] = ACTIONS(5220), - [sym__special_characters] = ACTIONS(5220), - [anon_sym_DQUOTE] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [anon_sym_LT_LPAREN] = ACTIONS(5220), - [anon_sym_GT_LPAREN] = ACTIONS(5220), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5222), - [sym_word] = ACTIONS(5222), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5222), - }, - [2227] = { - [sym_file_descriptor] = ACTIONS(5216), - [sym__concat] = ACTIONS(5216), - [sym_variable_name] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5218), - [anon_sym_GT] = ACTIONS(5218), - [anon_sym_GT_GT] = ACTIONS(5216), - [anon_sym_AMP_GT] = ACTIONS(5218), - [anon_sym_AMP_GT_GT] = ACTIONS(5216), - [anon_sym_LT_AMP] = ACTIONS(5216), - [anon_sym_GT_AMP] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5218), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(5216), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5216), - }, - [2228] = { - [sym_file_descriptor] = ACTIONS(5220), - [sym__concat] = ACTIONS(5220), - [sym_variable_name] = ACTIONS(5220), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_GT_GT] = ACTIONS(5220), - [anon_sym_AMP_GT] = ACTIONS(5222), - [anon_sym_AMP_GT_GT] = ACTIONS(5220), - [anon_sym_LT_AMP] = ACTIONS(5220), - [anon_sym_GT_AMP] = ACTIONS(5220), - [sym__special_characters] = ACTIONS(5220), - [anon_sym_DQUOTE] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [anon_sym_LT_LPAREN] = ACTIONS(5220), - [anon_sym_GT_LPAREN] = ACTIONS(5220), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5220), - }, - [2229] = { - [sym__concat] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5218), - [anon_sym_DOLLAR] = ACTIONS(5218), - [sym__string_content] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5218), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5218), - [anon_sym_BQUOTE] = ACTIONS(5218), - [sym_comment] = ACTIONS(265), - }, - [2230] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_DQUOTE] = ACTIONS(5222), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym__string_content] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5222), - [anon_sym_BQUOTE] = ACTIONS(5222), - [sym_comment] = ACTIONS(265), - }, - [2231] = { - [sym__concat] = ACTIONS(3941), - [anon_sym_RBRACE] = ACTIONS(3941), - [sym_comment] = ACTIONS(57), - }, - [2232] = { - [sym__concat] = ACTIONS(3949), - [anon_sym_RBRACE] = ACTIONS(3949), - [sym_comment] = ACTIONS(57), - }, - [2233] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(5516), - [sym_comment] = ACTIONS(57), - }, - [2234] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(5518), - [sym_comment] = ACTIONS(57), - }, - [2235] = { - [anon_sym_RBRACE] = ACTIONS(5518), - [sym_comment] = ACTIONS(57), - }, - [2236] = { - [sym_concatenation] = STATE(2415), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2415), - [anon_sym_RBRACE] = ACTIONS(5520), - [anon_sym_EQ] = ACTIONS(5522), - [anon_sym_DASH] = ACTIONS(5522), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5524), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(5522), - [anon_sym_COLON_QMARK] = ACTIONS(5522), - [anon_sym_COLON_DASH] = ACTIONS(5522), - [anon_sym_PERCENT] = ACTIONS(5522), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2237] = { - [sym__concat] = ACTIONS(4005), - [anon_sym_RBRACE] = ACTIONS(4005), - [sym_comment] = ACTIONS(57), - }, - [2238] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5520), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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] = { - [sym_concatenation] = STATE(2416), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2416), - [anon_sym_RBRACE] = ACTIONS(5518), - [anon_sym_EQ] = ACTIONS(5526), - [anon_sym_DASH] = ACTIONS(5526), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5528), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(5526), - [anon_sym_COLON_QMARK] = ACTIONS(5526), - [anon_sym_COLON_DASH] = ACTIONS(5526), - [anon_sym_PERCENT] = ACTIONS(5526), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5518), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2241] = { - [sym__concat] = ACTIONS(4050), - [anon_sym_RBRACE] = ACTIONS(4050), - [sym_comment] = ACTIONS(57), - }, - [2242] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5530), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2243] = { - [sym__concat] = ACTIONS(4084), - [anon_sym_RBRACE] = ACTIONS(4084), - [sym_comment] = ACTIONS(57), - }, - [2244] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(5532), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [2245] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(5532), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [2246] = { - [sym__concat] = ACTIONS(4090), - [anon_sym_RBRACE] = ACTIONS(4090), - [sym_comment] = ACTIONS(57), - }, - [2247] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(5534), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [2248] = { - [sym__concat] = ACTIONS(4725), - [anon_sym_RBRACE] = ACTIONS(4725), - [anon_sym_EQ] = ACTIONS(4727), - [anon_sym_DASH] = ACTIONS(4727), - [sym__special_characters] = ACTIONS(4727), - [anon_sym_DQUOTE] = ACTIONS(4725), - [anon_sym_DOLLAR] = ACTIONS(4727), - [sym_raw_string] = ACTIONS(4725), - [anon_sym_POUND] = ACTIONS(4725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4725), - [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(4725), - [anon_sym_BQUOTE] = ACTIONS(4725), - [anon_sym_LT_LPAREN] = ACTIONS(4725), - [anon_sym_GT_LPAREN] = ACTIONS(4725), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4727), - }, - [2249] = { - [sym__concat] = ACTIONS(4729), - [anon_sym_RBRACE] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4731), - [anon_sym_DASH] = ACTIONS(4731), - [sym__special_characters] = ACTIONS(4731), - [anon_sym_DQUOTE] = ACTIONS(4729), - [anon_sym_DOLLAR] = ACTIONS(4731), - [sym_raw_string] = ACTIONS(4729), - [anon_sym_POUND] = ACTIONS(4729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4729), - [anon_sym_COLON] = ACTIONS(4731), - [anon_sym_COLON_QMARK] = ACTIONS(4731), - [anon_sym_COLON_DASH] = ACTIONS(4731), - [anon_sym_PERCENT] = ACTIONS(4731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4729), - [anon_sym_BQUOTE] = ACTIONS(4729), - [anon_sym_LT_LPAREN] = ACTIONS(4729), - [anon_sym_GT_LPAREN] = ACTIONS(4729), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4731), - }, - [2250] = { - [sym__concat] = ACTIONS(4733), - [anon_sym_RBRACE] = ACTIONS(4733), - [anon_sym_EQ] = ACTIONS(4735), - [anon_sym_DASH] = ACTIONS(4735), - [sym__special_characters] = ACTIONS(4735), - [anon_sym_DQUOTE] = ACTIONS(4733), - [anon_sym_DOLLAR] = ACTIONS(4735), - [sym_raw_string] = ACTIONS(4733), - [anon_sym_POUND] = ACTIONS(4733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4733), - [anon_sym_COLON] = ACTIONS(4735), - [anon_sym_COLON_QMARK] = ACTIONS(4735), - [anon_sym_COLON_DASH] = ACTIONS(4735), - [anon_sym_PERCENT] = ACTIONS(4735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4733), - [anon_sym_BQUOTE] = ACTIONS(4733), - [anon_sym_LT_LPAREN] = ACTIONS(4733), - [anon_sym_GT_LPAREN] = ACTIONS(4733), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4735), - }, - [2251] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5536), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2252] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5538), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_EQ] = ACTIONS(4771), - [anon_sym_DASH] = ACTIONS(4771), - [sym__special_characters] = ACTIONS(4771), - [anon_sym_DQUOTE] = ACTIONS(4769), - [anon_sym_DOLLAR] = ACTIONS(4771), - [sym_raw_string] = ACTIONS(4769), - [anon_sym_POUND] = ACTIONS(4769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4769), - [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(4769), - [anon_sym_BQUOTE] = ACTIONS(4769), - [anon_sym_LT_LPAREN] = ACTIONS(4769), - [anon_sym_GT_LPAREN] = ACTIONS(4769), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4771), - }, - [2254] = { - [sym__concat] = ACTIONS(4789), - [anon_sym_RBRACE] = ACTIONS(4789), - [anon_sym_EQ] = ACTIONS(4791), - [anon_sym_DASH] = ACTIONS(4791), - [sym__special_characters] = ACTIONS(4791), - [anon_sym_DQUOTE] = ACTIONS(4789), - [anon_sym_DOLLAR] = ACTIONS(4791), - [sym_raw_string] = ACTIONS(4789), - [anon_sym_POUND] = ACTIONS(4789), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4789), - [anon_sym_COLON] = ACTIONS(4791), - [anon_sym_COLON_QMARK] = ACTIONS(4791), - [anon_sym_COLON_DASH] = ACTIONS(4791), - [anon_sym_PERCENT] = ACTIONS(4791), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4789), - [anon_sym_BQUOTE] = ACTIONS(4789), - [anon_sym_LT_LPAREN] = ACTIONS(4789), - [anon_sym_GT_LPAREN] = ACTIONS(4789), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4791), - }, - [2255] = { - [sym__concat] = ACTIONS(4793), - [anon_sym_RBRACE] = ACTIONS(4793), - [anon_sym_EQ] = ACTIONS(4795), - [anon_sym_DASH] = ACTIONS(4795), - [sym__special_characters] = ACTIONS(4795), - [anon_sym_DQUOTE] = ACTIONS(4793), - [anon_sym_DOLLAR] = ACTIONS(4795), - [sym_raw_string] = ACTIONS(4793), - [anon_sym_POUND] = ACTIONS(4793), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4793), - [anon_sym_COLON] = ACTIONS(4795), - [anon_sym_COLON_QMARK] = ACTIONS(4795), - [anon_sym_COLON_DASH] = ACTIONS(4795), - [anon_sym_PERCENT] = ACTIONS(4795), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4793), - [anon_sym_BQUOTE] = ACTIONS(4793), - [anon_sym_LT_LPAREN] = ACTIONS(4793), - [anon_sym_GT_LPAREN] = ACTIONS(4793), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4795), - }, - [2256] = { - [sym__heredoc_body_middle] = ACTIONS(4725), - [sym__heredoc_body_end] = ACTIONS(4725), - [anon_sym_DOLLAR] = ACTIONS(4727), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4725), - [anon_sym_BQUOTE] = ACTIONS(4725), - [sym_comment] = ACTIONS(57), - }, - [2257] = { - [sym__heredoc_body_middle] = ACTIONS(4729), - [sym__heredoc_body_end] = ACTIONS(4729), - [anon_sym_DOLLAR] = ACTIONS(4731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4729), - [anon_sym_BQUOTE] = ACTIONS(4729), - [sym_comment] = ACTIONS(57), - }, - [2258] = { - [sym__heredoc_body_middle] = ACTIONS(4733), - [sym__heredoc_body_end] = ACTIONS(4733), - [anon_sym_DOLLAR] = ACTIONS(4735), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4733), - [anon_sym_BQUOTE] = ACTIONS(4733), - [sym_comment] = ACTIONS(57), - }, - [2259] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5540), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2260] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5542), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2261] = { - [sym__heredoc_body_middle] = ACTIONS(4769), - [sym__heredoc_body_end] = ACTIONS(4769), - [anon_sym_DOLLAR] = ACTIONS(4771), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4769), - [anon_sym_BQUOTE] = ACTIONS(4769), - [sym_comment] = ACTIONS(57), - }, - [2262] = { - [sym__heredoc_body_middle] = ACTIONS(4789), - [sym__heredoc_body_end] = ACTIONS(4789), - [anon_sym_DOLLAR] = ACTIONS(4791), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4789), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4789), - [anon_sym_BQUOTE] = ACTIONS(4789), - [sym_comment] = ACTIONS(57), - }, - [2263] = { - [sym__concat] = ACTIONS(4725), - [anon_sym_RPAREN] = ACTIONS(4725), - [sym__special_characters] = ACTIONS(4725), - [anon_sym_DQUOTE] = ACTIONS(4725), - [anon_sym_DOLLAR] = ACTIONS(4727), - [sym_raw_string] = ACTIONS(4725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4725), - [anon_sym_BQUOTE] = ACTIONS(4725), - [anon_sym_LT_LPAREN] = ACTIONS(4725), - [anon_sym_GT_LPAREN] = ACTIONS(4725), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4725), - }, - [2264] = { - [sym__concat] = ACTIONS(4729), - [anon_sym_RPAREN] = ACTIONS(4729), - [sym__special_characters] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(4729), - [anon_sym_DOLLAR] = ACTIONS(4731), - [sym_raw_string] = ACTIONS(4729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4729), - [anon_sym_BQUOTE] = ACTIONS(4729), - [anon_sym_LT_LPAREN] = ACTIONS(4729), - [anon_sym_GT_LPAREN] = ACTIONS(4729), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4729), - }, - [2265] = { - [sym__concat] = ACTIONS(4733), - [anon_sym_RPAREN] = ACTIONS(4733), - [sym__special_characters] = ACTIONS(4733), - [anon_sym_DQUOTE] = ACTIONS(4733), - [anon_sym_DOLLAR] = ACTIONS(4735), - [sym_raw_string] = ACTIONS(4733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4733), - [anon_sym_BQUOTE] = ACTIONS(4733), - [anon_sym_LT_LPAREN] = ACTIONS(4733), - [anon_sym_GT_LPAREN] = ACTIONS(4733), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4733), - }, - [2266] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5544), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2267] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5546), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2268] = { - [sym__concat] = ACTIONS(4769), - [anon_sym_RPAREN] = ACTIONS(4769), - [sym__special_characters] = ACTIONS(4769), - [anon_sym_DQUOTE] = ACTIONS(4769), - [anon_sym_DOLLAR] = ACTIONS(4771), - [sym_raw_string] = ACTIONS(4769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4769), - [anon_sym_BQUOTE] = ACTIONS(4769), - [anon_sym_LT_LPAREN] = ACTIONS(4769), - [anon_sym_GT_LPAREN] = ACTIONS(4769), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4769), - }, - [2269] = { - [sym__concat] = ACTIONS(4789), - [anon_sym_RPAREN] = ACTIONS(4789), - [sym__special_characters] = ACTIONS(4789), - [anon_sym_DQUOTE] = ACTIONS(4789), - [anon_sym_DOLLAR] = ACTIONS(4791), - [sym_raw_string] = ACTIONS(4789), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4789), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4789), - [anon_sym_BQUOTE] = ACTIONS(4789), - [anon_sym_LT_LPAREN] = ACTIONS(4789), - [anon_sym_GT_LPAREN] = ACTIONS(4789), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4789), - }, - [2270] = { - [sym__concat] = ACTIONS(4793), - [anon_sym_RPAREN] = ACTIONS(4793), - [sym__special_characters] = ACTIONS(4793), - [anon_sym_DQUOTE] = ACTIONS(4793), - [anon_sym_DOLLAR] = ACTIONS(4795), - [sym_raw_string] = ACTIONS(4793), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4793), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4793), - [anon_sym_BQUOTE] = ACTIONS(4793), - [anon_sym_LT_LPAREN] = ACTIONS(4793), - [anon_sym_GT_LPAREN] = ACTIONS(4793), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4793), - }, - [2271] = { - [sym__simple_heredoc_body] = ACTIONS(5216), - [sym__heredoc_body_beginning] = ACTIONS(5216), - [sym_file_descriptor] = ACTIONS(5216), - [sym__concat] = ACTIONS(5216), - [sym_variable_name] = ACTIONS(5216), - [ts_builtin_sym_end] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5218), - [anon_sym_PIPE] = ACTIONS(5218), - [anon_sym_RPAREN] = ACTIONS(5216), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [anon_sym_PIPE_AMP] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5218), - [anon_sym_GT] = ACTIONS(5218), - [anon_sym_GT_GT] = ACTIONS(5216), - [anon_sym_AMP_GT] = ACTIONS(5218), - [anon_sym_AMP_GT_GT] = ACTIONS(5216), - [anon_sym_LT_AMP] = ACTIONS(5216), - [anon_sym_GT_AMP] = ACTIONS(5216), - [anon_sym_LT_LT] = ACTIONS(5218), - [anon_sym_LT_LT_DASH] = ACTIONS(5216), - [anon_sym_LT_LT_LT] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5218), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(5216), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5218), - [anon_sym_LF] = ACTIONS(5216), - [anon_sym_AMP] = ACTIONS(5218), - }, - [2272] = { - [sym__simple_heredoc_body] = ACTIONS(5220), - [sym__heredoc_body_beginning] = ACTIONS(5220), - [sym_file_descriptor] = ACTIONS(5220), - [sym__concat] = ACTIONS(5220), - [sym_variable_name] = ACTIONS(5220), - [ts_builtin_sym_end] = ACTIONS(5220), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(5220), - [anon_sym_SEMI_SEMI] = ACTIONS(5220), - [anon_sym_PIPE_AMP] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_GT_GT] = ACTIONS(5220), - [anon_sym_AMP_GT] = ACTIONS(5222), - [anon_sym_AMP_GT_GT] = ACTIONS(5220), - [anon_sym_LT_AMP] = ACTIONS(5220), - [anon_sym_GT_AMP] = ACTIONS(5220), - [anon_sym_LT_LT] = ACTIONS(5222), - [anon_sym_LT_LT_DASH] = ACTIONS(5220), - [anon_sym_LT_LT_LT] = ACTIONS(5220), - [sym__special_characters] = ACTIONS(5220), - [anon_sym_DQUOTE] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [anon_sym_LT_LPAREN] = ACTIONS(5220), - [anon_sym_GT_LPAREN] = ACTIONS(5220), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5222), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5222), - }, - [2273] = { - [sym__simple_heredoc_body] = ACTIONS(5548), - [sym__heredoc_body_beginning] = ACTIONS(5548), - [sym_file_descriptor] = ACTIONS(5548), - [ts_builtin_sym_end] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5550), - [anon_sym_esac] = ACTIONS(5548), - [anon_sym_PIPE] = ACTIONS(5550), - [anon_sym_RPAREN] = ACTIONS(5548), - [anon_sym_SEMI_SEMI] = ACTIONS(5548), - [anon_sym_PIPE_AMP] = ACTIONS(5548), - [anon_sym_AMP_AMP] = ACTIONS(5548), - [anon_sym_PIPE_PIPE] = ACTIONS(5548), - [anon_sym_LT] = ACTIONS(5550), - [anon_sym_GT] = ACTIONS(5550), - [anon_sym_GT_GT] = ACTIONS(5548), - [anon_sym_AMP_GT] = ACTIONS(5550), - [anon_sym_AMP_GT_GT] = ACTIONS(5548), - [anon_sym_LT_AMP] = ACTIONS(5548), - [anon_sym_GT_AMP] = ACTIONS(5548), - [anon_sym_LT_LT] = ACTIONS(5550), - [anon_sym_LT_LT_DASH] = ACTIONS(5548), - [anon_sym_LT_LT_LT] = ACTIONS(5548), - [anon_sym_BQUOTE] = ACTIONS(5548), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5548), - [anon_sym_AMP] = ACTIONS(5550), - }, - [2274] = { - [sym__concat] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5218), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_EQ_TILDE] = ACTIONS(5216), - [anon_sym_EQ_EQ] = ACTIONS(5216), - [anon_sym_EQ] = ACTIONS(5218), - [anon_sym_PLUS_EQ] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5218), - [anon_sym_GT] = ACTIONS(5218), - [anon_sym_BANG_EQ] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(5218), - [anon_sym_DASH] = ACTIONS(5218), - [anon_sym_DASH_EQ] = ACTIONS(5216), - [anon_sym_LT_EQ] = ACTIONS(5216), - [anon_sym_GT_EQ] = ACTIONS(5216), - [anon_sym_PLUS_PLUS] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5216), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(5216), - [anon_sym_LF] = ACTIONS(5216), - [anon_sym_AMP] = ACTIONS(5218), - }, - [2275] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_SEMI_SEMI] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_EQ_TILDE] = ACTIONS(5220), - [anon_sym_EQ_EQ] = ACTIONS(5220), - [anon_sym_EQ] = ACTIONS(5222), - [anon_sym_PLUS_EQ] = ACTIONS(5220), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_BANG_EQ] = ACTIONS(5220), - [anon_sym_PLUS] = ACTIONS(5222), - [anon_sym_DASH] = ACTIONS(5222), - [anon_sym_DASH_EQ] = ACTIONS(5220), - [anon_sym_LT_EQ] = ACTIONS(5220), - [anon_sym_GT_EQ] = ACTIONS(5220), - [anon_sym_PLUS_PLUS] = ACTIONS(5220), - [anon_sym_DASH_DASH] = ACTIONS(5220), - [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(5220), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5222), - }, - [2276] = { - [sym_do_group] = STATE(2426), - [sym_compound_statement] = STATE(2426), - [anon_sym_do] = ACTIONS(493), + [437] = { + [sym__statements] = STATE(982), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [438] = { + [anon_sym_EQ] = ACTIONS(1929), + [anon_sym_PLUS_EQ] = ACTIONS(1929), [sym_comment] = ACTIONS(57), }, - [2277] = { - [sym__concat] = ACTIONS(4725), - [anon_sym_SEMI] = ACTIONS(4727), - [anon_sym_SEMI_SEMI] = ACTIONS(4725), - [sym__special_characters] = ACTIONS(4725), - [anon_sym_DQUOTE] = ACTIONS(4725), - [anon_sym_DOLLAR] = ACTIONS(4727), - [sym_raw_string] = ACTIONS(4725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4725), - [anon_sym_BQUOTE] = ACTIONS(4725), - [anon_sym_LT_LPAREN] = ACTIONS(4725), - [anon_sym_GT_LPAREN] = ACTIONS(4725), + [439] = { + [sym_variable_assignment] = STATE(983), + [sym_subscript] = STATE(438), + [sym_concatenation] = STATE(983), + [sym_string] = STATE(433), + [sym_simple_expansion] = STATE(433), + [sym_string_expansion] = STATE(433), + [sym_expansion] = STATE(433), + [sym_command_substitution] = STATE(433), + [sym_process_substitution] = STATE(433), + [aux_sym_declaration_command_repeat1] = STATE(983), + [sym__simple_heredoc_body] = ACTIONS(965), + [sym__heredoc_body_beginning] = ACTIONS(965), + [sym_file_descriptor] = ACTIONS(965), + [sym_variable_name] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(965), + [anon_sym_RBRACE] = ACTIONS(965), + [anon_sym_PIPE_AMP] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [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(783), + [anon_sym_DQUOTE] = ACTIONS(785), + [anon_sym_DOLLAR] = ACTIONS(787), + [sym_raw_string] = ACTIONS(789), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(791), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(793), + [anon_sym_BQUOTE] = ACTIONS(795), + [anon_sym_LT_LPAREN] = ACTIONS(797), + [anon_sym_GT_LPAREN] = ACTIONS(797), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4727), - [anon_sym_LF] = ACTIONS(4725), - [anon_sym_AMP] = ACTIONS(4725), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1955), + [sym_word] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), }, - [2278] = { - [sym__concat] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_SEMI_SEMI] = ACTIONS(4729), - [sym__special_characters] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(4729), - [anon_sym_DOLLAR] = ACTIONS(4731), - [sym_raw_string] = ACTIONS(4729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4729), - [anon_sym_BQUOTE] = ACTIONS(4729), - [anon_sym_LT_LPAREN] = ACTIONS(4729), - [anon_sym_GT_LPAREN] = ACTIONS(4729), + [440] = { + [aux_sym_concatenation_repeat1] = STATE(985), + [sym__simple_heredoc_body] = ACTIONS(971), + [sym__heredoc_body_beginning] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(971), + [sym__concat] = ACTIONS(1957), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [sym__special_characters] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4731), - [anon_sym_LF] = ACTIONS(4729), - [anon_sym_AMP] = ACTIONS(4729), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(975), + [sym_word] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(975), }, - [2279] = { - [sym__concat] = ACTIONS(4733), - [anon_sym_SEMI] = ACTIONS(4735), - [anon_sym_SEMI_SEMI] = ACTIONS(4733), - [sym__special_characters] = ACTIONS(4733), - [anon_sym_DQUOTE] = ACTIONS(4733), - [anon_sym_DOLLAR] = ACTIONS(4735), - [sym_raw_string] = ACTIONS(4733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4733), - [anon_sym_BQUOTE] = ACTIONS(4733), - [anon_sym_LT_LPAREN] = ACTIONS(4733), - [anon_sym_GT_LPAREN] = ACTIONS(4733), + [441] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(988), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1961), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [442] = { + [sym_string] = STATE(990), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(805), + [anon_sym_DOLLAR] = ACTIONS(1963), + [sym_raw_string] = ACTIONS(1965), + [anon_sym_POUND] = ACTIONS(1963), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1967), + [anon_sym_STAR] = ACTIONS(1969), + [anon_sym_AT] = ACTIONS(1969), + [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_0] = ACTIONS(1967), + [anon_sym__] = ACTIONS(1967), + }, + [443] = { + [aux_sym_concatenation_repeat1] = STATE(985), + [sym__simple_heredoc_body] = ACTIONS(989), + [sym__heredoc_body_beginning] = ACTIONS(989), + [sym_file_descriptor] = ACTIONS(989), + [sym__concat] = ACTIONS(1957), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_SEMI_SEMI] = ACTIONS(989), + [anon_sym_RBRACE] = ACTIONS(989), + [anon_sym_PIPE_AMP] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(989), + [anon_sym_PIPE_PIPE] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_AMP_GT] = ACTIONS(991), + [anon_sym_AMP_GT_GT] = ACTIONS(989), + [anon_sym_LT_AMP] = ACTIONS(989), + [anon_sym_GT_AMP] = ACTIONS(989), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_LT_LT_DASH] = ACTIONS(989), + [anon_sym_LT_LT_LT] = ACTIONS(989), + [sym__special_characters] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(991), + [sym_raw_string] = ACTIONS(989), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(989), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(989), + [anon_sym_LT_LPAREN] = ACTIONS(989), + [anon_sym_GT_LPAREN] = ACTIONS(989), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4735), - [anon_sym_LF] = ACTIONS(4733), - [anon_sym_AMP] = ACTIONS(4733), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(991), + [sym_word] = ACTIONS(991), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), }, - [2280] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5552), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [444] = { + [sym_subscript] = STATE(995), + [sym_variable_name] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1975), + [anon_sym_POUND] = ACTIONS(1973), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1977), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(1979), + [anon_sym_QMARK] = ACTIONS(1979), + [anon_sym_0] = ACTIONS(1977), + [anon_sym__] = ACTIONS(1977), }, - [2281] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5554), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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(4769), - [anon_sym_SEMI] = ACTIONS(4771), - [anon_sym_SEMI_SEMI] = ACTIONS(4769), - [sym__special_characters] = ACTIONS(4769), - [anon_sym_DQUOTE] = ACTIONS(4769), - [anon_sym_DOLLAR] = ACTIONS(4771), - [sym_raw_string] = ACTIONS(4769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4769), - [anon_sym_BQUOTE] = ACTIONS(4769), - [anon_sym_LT_LPAREN] = ACTIONS(4769), - [anon_sym_GT_LPAREN] = ACTIONS(4769), + [445] = { + [sym__statements] = STATE(996), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(4771), - [anon_sym_LF] = ACTIONS(4769), - [anon_sym_AMP] = ACTIONS(4769), + [sym_word] = ACTIONS(173), }, - [2283] = { - [sym__concat] = ACTIONS(4789), - [anon_sym_SEMI] = ACTIONS(4791), - [anon_sym_SEMI_SEMI] = ACTIONS(4789), - [sym__special_characters] = ACTIONS(4789), - [anon_sym_DQUOTE] = ACTIONS(4789), - [anon_sym_DOLLAR] = ACTIONS(4791), - [sym_raw_string] = ACTIONS(4789), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4789), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4789), - [anon_sym_BQUOTE] = ACTIONS(4789), - [anon_sym_LT_LPAREN] = ACTIONS(4789), - [anon_sym_GT_LPAREN] = ACTIONS(4789), + [446] = { + [sym__statements] = STATE(997), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(4791), - [anon_sym_LF] = ACTIONS(4789), - [anon_sym_AMP] = ACTIONS(4789), + [sym_word] = ACTIONS(379), }, - [2284] = { - [sym__concat] = ACTIONS(4793), - [anon_sym_SEMI] = ACTIONS(4795), - [anon_sym_SEMI_SEMI] = ACTIONS(4793), - [sym__special_characters] = ACTIONS(4793), - [anon_sym_DQUOTE] = ACTIONS(4793), - [anon_sym_DOLLAR] = ACTIONS(4795), - [sym_raw_string] = ACTIONS(4793), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4793), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4793), - [anon_sym_BQUOTE] = ACTIONS(4793), - [anon_sym_LT_LPAREN] = ACTIONS(4793), - [anon_sym_GT_LPAREN] = ACTIONS(4793), + [447] = { + [sym__statements] = STATE(998), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(4795), - [anon_sym_LF] = ACTIONS(4793), - [anon_sym_AMP] = ACTIONS(4793), + [sym_word] = ACTIONS(173), }, - [2285] = { - [sym__concat] = ACTIONS(5216), - [anon_sym_PIPE] = ACTIONS(5218), - [anon_sym_RPAREN] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_EQ_TILDE] = ACTIONS(5216), - [anon_sym_EQ_EQ] = ACTIONS(5216), - [anon_sym_EQ] = ACTIONS(5218), - [anon_sym_PLUS_EQ] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5218), - [anon_sym_GT] = ACTIONS(5218), - [anon_sym_BANG_EQ] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(5218), - [anon_sym_DASH] = ACTIONS(5218), - [anon_sym_DASH_EQ] = ACTIONS(5216), - [anon_sym_LT_EQ] = ACTIONS(5216), - [anon_sym_GT_EQ] = ACTIONS(5216), - [anon_sym_PLUS_PLUS] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5216), + [448] = { + [sym_concatenation] = STATE(999), + [sym_string] = STATE(443), + [sym_simple_expansion] = STATE(443), + [sym_string_expansion] = STATE(443), + [sym_expansion] = STATE(443), + [sym_command_substitution] = STATE(443), + [sym_process_substitution] = STATE(443), + [aux_sym_unset_command_repeat1] = STATE(999), + [sym__simple_heredoc_body] = ACTIONS(1003), + [sym__heredoc_body_beginning] = ACTIONS(1003), + [sym_file_descriptor] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_SEMI_SEMI] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_PIPE_AMP] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_AMP_GT] = ACTIONS(1005), + [anon_sym_AMP_GT_GT] = ACTIONS(1003), + [anon_sym_LT_AMP] = ACTIONS(1003), + [anon_sym_GT_AMP] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_LT_LT_DASH] = ACTIONS(1003), + [anon_sym_LT_LT_LT] = ACTIONS(1003), + [sym__special_characters] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(805), + [anon_sym_DOLLAR] = ACTIONS(807), + [sym_raw_string] = ACTIONS(809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(815), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(5216), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1981), + [sym_word] = ACTIONS(821), + [anon_sym_LF] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1005), }, - [2286] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_EQ_TILDE] = ACTIONS(5220), - [anon_sym_EQ_EQ] = ACTIONS(5220), - [anon_sym_EQ] = ACTIONS(5222), - [anon_sym_PLUS_EQ] = ACTIONS(5220), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_BANG_EQ] = ACTIONS(5220), - [anon_sym_PLUS] = ACTIONS(5222), - [anon_sym_DASH] = ACTIONS(5222), - [anon_sym_DASH_EQ] = ACTIONS(5220), - [anon_sym_LT_EQ] = ACTIONS(5220), - [anon_sym_GT_EQ] = ACTIONS(5220), - [anon_sym_PLUS_PLUS] = ACTIONS(5220), - [anon_sym_DASH_DASH] = ACTIONS(5220), + [449] = { + [sym_string] = STATE(1000), + [sym_simple_expansion] = STATE(1000), + [sym_string_expansion] = STATE(1000), + [sym_expansion] = STATE(1000), + [sym_command_substitution] = STATE(1000), + [sym_process_substitution] = STATE(1000), + [sym__special_characters] = ACTIONS(1983), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(209), + [sym_raw_string] = ACTIONS(1983), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), [sym_comment] = ACTIONS(57), - [sym_test_operator] = ACTIONS(5220), + [sym_word] = ACTIONS(1983), }, - [2287] = { + [450] = { + [aux_sym_concatenation_repeat1] = STATE(1001), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_EQ_TILDE] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [451] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1049), + [anon_sym_EQ_EQ] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [452] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1985), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [453] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(1985), + [anon_sym_DOLLAR] = ACTIONS(1987), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [454] = { + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_RBRACE] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1083), + [anon_sym_EQ_EQ] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [455] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1085), + [anon_sym_PIPE_AMP] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_EQ_TILDE] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1087), + [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(1087), + [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), + }, + [456] = { [sym__simple_heredoc_body] = ACTIONS(1089), [sym__heredoc_body_beginning] = ACTIONS(1089), [sym_file_descriptor] = ACTIONS(1089), - [sym_variable_name] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_esac] = ACTIONS(1091), [anon_sym_PIPE] = ACTIONS(1091), [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), [anon_sym_PIPE_AMP] = ACTIONS(1089), [anon_sym_AMP_AMP] = ACTIONS(1089), [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1091), + [anon_sym_EQ_EQ] = ACTIONS(1091), [anon_sym_LT] = ACTIONS(1091), [anon_sym_GT] = ACTIONS(1091), [anon_sym_GT_GT] = ACTIONS(1089), @@ -72411,7 +25219,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1091), [anon_sym_LT_LT_DASH] = ACTIONS(1089), [anon_sym_LT_LT_LT] = ACTIONS(1089), - [sym__special_characters] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1091), [anon_sym_DQUOTE] = ACTIONS(1089), [anon_sym_DOLLAR] = ACTIONS(1091), [sym_raw_string] = ACTIONS(1089), @@ -72425,103 +25233,23038 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1089), [anon_sym_AMP] = ACTIONS(1091), }, - [2288] = { - [sym_concatenation] = STATE(2430), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [aux_sym_for_statement_repeat1] = STATE(2430), - [anon_sym_RPAREN] = ACTIONS(5556), - [sym__special_characters] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_DOLLAR] = ACTIONS(1099), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1109), - [anon_sym_GT_LPAREN] = ACTIONS(1109), + [457] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1989), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1101), }, - [2289] = { - [aux_sym_concatenation_repeat1] = STATE(2432), - [sym__simple_heredoc_body] = ACTIONS(1111), - [sym__heredoc_body_beginning] = ACTIONS(1111), - [sym_file_descriptor] = ACTIONS(1111), - [sym__concat] = ACTIONS(5558), - [sym_variable_name] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1115), - [anon_sym_esac] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(1115), - [anon_sym_SEMI_SEMI] = ACTIONS(1111), - [anon_sym_PIPE_AMP] = ACTIONS(1111), - [anon_sym_AMP_AMP] = ACTIONS(1111), - [anon_sym_PIPE_PIPE] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1115), - [anon_sym_GT] = ACTIONS(1115), - [anon_sym_GT_GT] = ACTIONS(1111), - [anon_sym_AMP_GT] = ACTIONS(1115), - [anon_sym_AMP_GT_GT] = ACTIONS(1111), - [anon_sym_LT_AMP] = ACTIONS(1111), - [anon_sym_GT_AMP] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1115), - [anon_sym_LT_LT_DASH] = ACTIONS(1111), - [anon_sym_LT_LT_LT] = ACTIONS(1111), - [sym__special_characters] = ACTIONS(1111), + [458] = { + [sym_subscript] = STATE(1007), + [sym_variable_name] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_DOLLAR] = ACTIONS(1993), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(1997), + [anon_sym_AT] = ACTIONS(1997), + [anon_sym_QMARK] = ACTIONS(1997), + [anon_sym_0] = ACTIONS(1995), + [anon_sym__] = ACTIONS(1995), + }, + [459] = { + [sym_concatenation] = STATE(1010), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1010), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [sym__special_characters] = ACTIONS(1109), [anon_sym_DQUOTE] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(1115), - [sym_raw_string] = ACTIONS(1111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1111), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1111), - [anon_sym_BQUOTE] = ACTIONS(1111), - [anon_sym_LT_LPAREN] = ACTIONS(1111), - [anon_sym_GT_LPAREN] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2005), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_COLON_QMARK] = ACTIONS(2001), + [anon_sym_COLON_DASH] = ACTIONS(2001), + [anon_sym_PERCENT] = ACTIONS(2001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [460] = { + [sym_concatenation] = STATE(1013), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1013), + [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_EQ] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2009), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2013), + [anon_sym_COLON] = ACTIONS(2009), + [anon_sym_COLON_QMARK] = ACTIONS(2009), + [anon_sym_COLON_DASH] = ACTIONS(2009), + [anon_sym_PERCENT] = ACTIONS(2009), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [461] = { + [anon_sym_RPAREN] = ACTIONS(2015), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1115), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_AMP] = ACTIONS(1115), }, - [2290] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(2435), - [anon_sym_DQUOTE] = ACTIONS(5560), - [anon_sym_DOLLAR] = ACTIONS(5562), - [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), + [462] = { + [anon_sym_BQUOTE] = ACTIONS(2015), + [sym_comment] = ACTIONS(57), }, - [2291] = { - [sym_string] = STATE(2437), - [anon_sym_DASH] = ACTIONS(5564), - [anon_sym_DQUOTE] = ACTIONS(5326), - [anon_sym_DOLLAR] = ACTIONS(5564), - [sym_raw_string] = ACTIONS(5566), - [anon_sym_POUND] = ACTIONS(5564), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5568), - [anon_sym_STAR] = ACTIONS(5570), - [anon_sym_AT] = ACTIONS(5570), - [anon_sym_QMARK] = ACTIONS(5570), - [anon_sym_0] = ACTIONS(5568), - [anon_sym__] = ACTIONS(5568), + [463] = { + [anon_sym_RPAREN] = ACTIONS(2017), + [sym_comment] = ACTIONS(57), }, - [2292] = { - [aux_sym_concatenation_repeat1] = STATE(2432), + [464] = { + [anon_sym_RPAREN] = ACTIONS(2019), + [sym_comment] = ACTIONS(57), + }, + [465] = { + [sym__simple_heredoc_body] = ACTIONS(2021), + [sym__heredoc_body_beginning] = ACTIONS(2021), + [sym_file_descriptor] = ACTIONS(2021), + [ts_builtin_sym_end] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym_done] = ACTIONS(2021), + [anon_sym_fi] = ACTIONS(2021), + [anon_sym_elif] = ACTIONS(2021), + [anon_sym_else] = ACTIONS(2021), + [anon_sym_esac] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2021), + [anon_sym_SEMI_SEMI] = ACTIONS(2021), + [anon_sym_PIPE_AMP] = ACTIONS(2021), + [anon_sym_AMP_AMP] = ACTIONS(2021), + [anon_sym_PIPE_PIPE] = ACTIONS(2021), + [anon_sym_LT] = ACTIONS(2023), + [anon_sym_GT] = ACTIONS(2023), + [anon_sym_GT_GT] = ACTIONS(2021), + [anon_sym_AMP_GT] = ACTIONS(2023), + [anon_sym_AMP_GT_GT] = ACTIONS(2021), + [anon_sym_LT_AMP] = ACTIONS(2021), + [anon_sym_GT_AMP] = ACTIONS(2021), + [anon_sym_LT_LT] = ACTIONS(2023), + [anon_sym_LT_LT_DASH] = ACTIONS(2021), + [anon_sym_LT_LT_LT] = ACTIONS(2021), + [anon_sym_BQUOTE] = ACTIONS(2021), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2021), + [anon_sym_AMP] = ACTIONS(2023), + }, + [466] = { + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_SEMI_SEMI] = ACTIONS(1193), + [anon_sym_RBRACE] = ACTIONS(1193), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + }, + [467] = { + [sym_simple_expansion] = STATE(1018), + [sym_expansion] = STATE(1018), + [sym_command_substitution] = STATE(1018), + [aux_sym_heredoc_body_repeat1] = STATE(1018), + [sym__heredoc_body_middle] = ACTIONS(2025), + [sym__heredoc_body_end] = ACTIONS(2027), + [anon_sym_DOLLAR] = ACTIONS(1201), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1205), + [anon_sym_BQUOTE] = ACTIONS(1207), + [sym_comment] = ACTIONS(57), + }, + [468] = { + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2029), + [anon_sym_GT_GT] = ACTIONS(2031), + [anon_sym_AMP_GT] = ACTIONS(2029), + [anon_sym_AMP_GT_GT] = ACTIONS(2031), + [anon_sym_LT_AMP] = ACTIONS(2031), + [anon_sym_GT_AMP] = ACTIONS(2031), + [sym_comment] = ACTIONS(57), + }, + [469] = { + [sym_file_descriptor] = ACTIONS(1213), + [sym_variable_name] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_function] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_typeset] = ACTIONS(1217), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_local] = ACTIONS(1217), + [anon_sym_unset] = ACTIONS(1217), + [anon_sym_unsetenv] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_GT] = ACTIONS(1213), + [anon_sym_AMP_GT] = ACTIONS(1217), + [anon_sym_AMP_GT_GT] = ACTIONS(1213), + [anon_sym_LT_AMP] = ACTIONS(1213), + [anon_sym_GT_AMP] = ACTIONS(1213), + [sym__special_characters] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1217), + [sym_raw_string] = ACTIONS(1213), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1213), + [anon_sym_BQUOTE] = ACTIONS(1213), + [anon_sym_LT_LPAREN] = ACTIONS(1213), + [anon_sym_GT_LPAREN] = ACTIONS(1213), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1217), + }, + [470] = { + [sym_redirected_statement] = STATE(1020), + [sym_for_statement] = STATE(1020), + [sym_c_style_for_statement] = STATE(1020), + [sym_while_statement] = STATE(1020), + [sym_if_statement] = STATE(1020), + [sym_case_statement] = STATE(1020), + [sym_function_definition] = STATE(1020), + [sym_compound_statement] = STATE(1020), + [sym_subshell] = STATE(1020), + [sym_pipeline] = STATE(1020), + [sym_list] = STATE(1020), + [sym_negated_command] = STATE(1020), + [sym_test_command] = STATE(1020), + [sym_declaration_command] = STATE(1020), + [sym_unset_command] = STATE(1020), + [sym_command] = STATE(1020), + [sym_command_name] = STATE(133), + [sym_variable_assignment] = STATE(1021), + [sym_subscript] = STATE(135), + [sym_file_redirect] = STATE(138), + [sym_concatenation] = STATE(136), + [sym_string] = STATE(125), + [sym_simple_expansion] = STATE(125), + [sym_string_expansion] = STATE(125), + [sym_expansion] = STATE(125), + [sym_command_substitution] = STATE(125), + [sym_process_substitution] = STATE(125), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(175), + [anon_sym_for] = ACTIONS(177), + [anon_sym_LPAREN_LPAREN] = ACTIONS(179), + [anon_sym_while] = ACTIONS(181), + [anon_sym_if] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_function] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(199), + [anon_sym_declare] = ACTIONS(201), + [anon_sym_typeset] = ACTIONS(201), + [anon_sym_export] = ACTIONS(201), + [anon_sym_readonly] = ACTIONS(201), + [anon_sym_local] = ACTIONS(201), + [anon_sym_unset] = ACTIONS(203), + [anon_sym_unsetenv] = ACTIONS(203), + [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(205), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(209), + [sym_raw_string] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(221), + }, + [471] = { + [sym_redirected_statement] = STATE(1022), + [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_compound_statement] = 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(133), + [sym_variable_assignment] = STATE(1023), + [sym_subscript] = STATE(135), + [sym_file_redirect] = STATE(138), + [sym_concatenation] = STATE(136), + [sym_string] = STATE(125), + [sym_simple_expansion] = STATE(125), + [sym_string_expansion] = STATE(125), + [sym_expansion] = STATE(125), + [sym_command_substitution] = STATE(125), + [sym_process_substitution] = STATE(125), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(175), + [anon_sym_for] = ACTIONS(177), + [anon_sym_LPAREN_LPAREN] = ACTIONS(179), + [anon_sym_while] = ACTIONS(181), + [anon_sym_if] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_function] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(199), + [anon_sym_declare] = ACTIONS(201), + [anon_sym_typeset] = ACTIONS(201), + [anon_sym_export] = ACTIONS(201), + [anon_sym_readonly] = ACTIONS(201), + [anon_sym_local] = ACTIONS(201), + [anon_sym_unset] = ACTIONS(203), + [anon_sym_unsetenv] = ACTIONS(203), + [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(205), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(209), + [sym_raw_string] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(221), + }, + [472] = { + [sym_concatenation] = STATE(1026), + [sym_string] = STATE(1025), + [sym_simple_expansion] = STATE(1025), + [sym_string_expansion] = STATE(1025), + [sym_expansion] = STATE(1025), + [sym_command_substitution] = STATE(1025), + [sym_process_substitution] = STATE(1025), + [sym__special_characters] = ACTIONS(2033), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(209), + [sym_raw_string] = ACTIONS(2035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2035), + }, + [473] = { + [sym_heredoc_start] = ACTIONS(2037), + [sym_comment] = ACTIONS(57), + }, + [474] = { + [sym_concatenation] = STATE(1030), + [sym_string] = STATE(1029), + [sym_simple_expansion] = STATE(1029), + [sym_string_expansion] = STATE(1029), + [sym_expansion] = STATE(1029), + [sym_command_substitution] = STATE(1029), + [sym_process_substitution] = STATE(1029), + [sym__special_characters] = ACTIONS(2039), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(209), + [sym_raw_string] = ACTIONS(2041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2041), + }, + [475] = { + [anon_sym_SEMI] = ACTIONS(2043), + [anon_sym_SEMI_SEMI] = ACTIONS(2045), + [anon_sym_RBRACE] = ACTIONS(1215), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2045), + [anon_sym_AMP] = ACTIONS(2045), + }, + [476] = { + [sym_file_redirect] = STATE(1032), + [sym_heredoc_redirect] = STATE(1032), + [sym_herestring_redirect] = STATE(1032), + [aux_sym_redirected_statement_repeat1] = STATE(1032), + [sym__simple_heredoc_body] = ACTIONS(1233), + [sym__heredoc_body_beginning] = ACTIONS(1233), + [sym_file_descriptor] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_PIPE_AMP] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(867), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_GT_GT] = ACTIONS(869), + [anon_sym_AMP_GT] = ACTIONS(867), + [anon_sym_AMP_GT_GT] = ACTIONS(869), + [anon_sym_LT_AMP] = ACTIONS(869), + [anon_sym_GT_AMP] = ACTIONS(869), + [anon_sym_LT_LT] = ACTIONS(871), + [anon_sym_LT_LT_DASH] = ACTIONS(873), + [anon_sym_LT_LT_LT] = ACTIONS(875), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1235), + }, + [477] = { + [sym_concatenation] = STATE(1033), + [sym_string] = STATE(1035), + [sym_simple_expansion] = STATE(1035), + [sym_string_expansion] = STATE(1035), + [sym_expansion] = STATE(1035), + [sym_command_substitution] = STATE(1035), + [sym_process_substitution] = STATE(1035), + [sym_regex] = ACTIONS(2047), + [sym__special_characters] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(209), + [sym_raw_string] = ACTIONS(2051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2051), + }, + [478] = { + [aux_sym_concatenation_repeat1] = STATE(450), + [sym__simple_heredoc_body] = ACTIONS(1243), + [sym__heredoc_body_beginning] = ACTIONS(1243), + [sym_file_descriptor] = ACTIONS(1243), + [sym__concat] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1245), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_LT_LT_DASH] = ACTIONS(1243), + [anon_sym_LT_LT_LT] = ACTIONS(1243), + [sym__special_characters] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1245), + [sym_raw_string] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [anon_sym_LT_LPAREN] = ACTIONS(1243), + [anon_sym_GT_LPAREN] = ACTIONS(1243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1245), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1245), + }, + [479] = { + [aux_sym_concatenation_repeat1] = STATE(450), + [sym__simple_heredoc_body] = ACTIONS(1247), + [sym__heredoc_body_beginning] = ACTIONS(1247), + [sym_file_descriptor] = ACTIONS(1247), + [sym__concat] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_SEMI_SEMI] = ACTIONS(1247), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_PIPE_AMP] = ACTIONS(1247), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_AMP_GT] = ACTIONS(1249), + [anon_sym_AMP_GT_GT] = ACTIONS(1247), + [anon_sym_LT_AMP] = ACTIONS(1247), + [anon_sym_GT_AMP] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_LT_LT_DASH] = ACTIONS(1247), + [anon_sym_LT_LT_LT] = ACTIONS(1247), + [sym__special_characters] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1247), + [anon_sym_DOLLAR] = ACTIONS(1249), + [sym_raw_string] = ACTIONS(1247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1247), + [anon_sym_BQUOTE] = ACTIONS(1247), + [anon_sym_LT_LPAREN] = ACTIONS(1247), + [anon_sym_GT_LPAREN] = ACTIONS(1247), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1249), + [anon_sym_LF] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1249), + }, + [480] = { + [sym_concatenation] = STATE(1036), + [sym_string] = STATE(479), + [sym_simple_expansion] = STATE(479), + [sym_string_expansion] = STATE(479), + [sym_expansion] = STATE(479), + [sym_command_substitution] = STATE(479), + [sym_process_substitution] = STATE(479), + [aux_sym_command_repeat2] = STATE(1036), + [sym__simple_heredoc_body] = ACTIONS(1251), + [sym__heredoc_body_beginning] = ACTIONS(1251), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(209), + [sym_raw_string] = ACTIONS(881), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(883), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + }, + [481] = { + [sym_file_redirect] = STATE(476), + [sym_heredoc_redirect] = STATE(476), + [sym_heredoc_body] = STATE(1038), + [sym_herestring_redirect] = STATE(476), + [aux_sym_redirected_statement_repeat1] = STATE(476), + [sym__simple_heredoc_body] = ACTIONS(851), + [sym__heredoc_body_beginning] = ACTIONS(853), + [sym_file_descriptor] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_SEMI_SEMI] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(1215), + [anon_sym_PIPE_AMP] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(867), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_GT_GT] = ACTIONS(869), + [anon_sym_AMP_GT] = ACTIONS(867), + [anon_sym_AMP_GT_GT] = ACTIONS(869), + [anon_sym_LT_AMP] = ACTIONS(869), + [anon_sym_GT_AMP] = ACTIONS(869), + [anon_sym_LT_LT] = ACTIONS(871), + [anon_sym_LT_LT_DASH] = ACTIONS(873), + [anon_sym_LT_LT_LT] = ACTIONS(875), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2053), + }, + [482] = { + [sym_file_redirect] = STATE(476), + [sym_heredoc_redirect] = STATE(476), + [sym_heredoc_body] = STATE(1038), + [sym_herestring_redirect] = STATE(476), + [aux_sym_redirected_statement_repeat1] = STATE(476), + [sym__simple_heredoc_body] = ACTIONS(851), + [sym__heredoc_body_beginning] = ACTIONS(853), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_SEMI_SEMI] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(1215), + [anon_sym_PIPE_AMP] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(871), + [anon_sym_LT_LT_DASH] = ACTIONS(873), + [anon_sym_LT_LT_LT] = ACTIONS(875), + [sym__special_characters] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2053), + }, + [483] = { + [sym_concatenation] = STATE(1039), + [sym_string] = STATE(479), + [sym_simple_expansion] = STATE(479), + [sym_string_expansion] = STATE(479), + [sym_expansion] = STATE(479), + [sym_command_substitution] = STATE(479), + [sym_process_substitution] = STATE(479), + [aux_sym_command_repeat2] = STATE(1039), + [sym__simple_heredoc_body] = ACTIONS(1251), + [sym__heredoc_body_beginning] = ACTIONS(1251), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(209), + [sym_raw_string] = ACTIONS(881), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(883), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + }, + [484] = { + [sym_concatenation] = STATE(1040), + [sym_string] = STATE(1043), + [sym_array] = STATE(1040), + [sym_simple_expansion] = STATE(1043), + [sym_string_expansion] = STATE(1043), + [sym_expansion] = STATE(1043), + [sym_command_substitution] = STATE(1043), + [sym_process_substitution] = STATE(1043), + [sym__empty_value] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2059), + [sym__special_characters] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(311), + [anon_sym_DOLLAR] = ACTIONS(313), + [sym_raw_string] = ACTIONS(2063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(317), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(319), + [anon_sym_BQUOTE] = ACTIONS(321), + [anon_sym_LT_LPAREN] = ACTIONS(323), + [anon_sym_GT_LPAREN] = ACTIONS(323), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2063), + }, + [485] = { + [anon_sym_RPAREN] = ACTIONS(2065), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_PIPE_PIPE] = ACTIONS(1503), + [anon_sym_EQ_TILDE] = ACTIONS(1505), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1507), + [anon_sym_GT] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1503), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1503), + [anon_sym_LT_EQ] = ACTIONS(1503), + [anon_sym_GT_EQ] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1503), + }, + [486] = { + [anon_sym_AMP_AMP] = ACTIONS(917), + [anon_sym_PIPE_PIPE] = ACTIONS(917), + [anon_sym_RBRACK] = ACTIONS(1511), + [anon_sym_EQ_TILDE] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(921), + [anon_sym_GT] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(917), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(923), + [anon_sym_DASH_DASH] = ACTIONS(923), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(917), + }, + [487] = { + [sym_string] = STATE(1045), + [sym_simple_expansion] = STATE(1045), + [sym_string_expansion] = STATE(1045), + [sym_expansion] = STATE(1045), + [sym_command_substitution] = STATE(1045), + [sym_process_substitution] = STATE(1045), + [sym__special_characters] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [sym_raw_string] = ACTIONS(2067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_LT_LPAREN] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2067), + }, + [488] = { + [aux_sym_concatenation_repeat1] = STATE(1046), + [sym__concat] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_RBRACK] = ACTIONS(1043), + [anon_sym_EQ_TILDE] = ACTIONS(1043), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_PLUS_EQ] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_DASH_EQ] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_PLUS_PLUS] = ACTIONS(1043), + [anon_sym_DASH_DASH] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1043), + }, + [489] = { + [sym__concat] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(1049), + [anon_sym_PLUS_EQ] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_DASH_EQ] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1047), + }, + [490] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [491] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2071), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [492] = { + [sym__concat] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_RBRACK] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1081), + [anon_sym_EQ_EQ] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(1083), + [anon_sym_PLUS_EQ] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_BANG_EQ] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_DASH_EQ] = ACTIONS(1081), + [anon_sym_LT_EQ] = ACTIONS(1081), + [anon_sym_GT_EQ] = ACTIONS(1081), + [anon_sym_PLUS_PLUS] = ACTIONS(1081), + [anon_sym_DASH_DASH] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1081), + }, + [493] = { + [sym__concat] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_RBRACK] = ACTIONS(1085), + [anon_sym_EQ_TILDE] = ACTIONS(1085), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_EQ] = ACTIONS(1087), + [anon_sym_PLUS_EQ] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_DASH_EQ] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1085), + [anon_sym_GT_EQ] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1085), + }, + [494] = { + [sym__concat] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_EQ] = ACTIONS(1091), + [anon_sym_PLUS_EQ] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_DASH_EQ] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1089), + }, + [495] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2073), + [sym_comment] = ACTIONS(57), + }, + [496] = { + [sym_subscript] = STATE(1052), + [sym_variable_name] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2077), + [anon_sym_DOLLAR] = ACTIONS(2077), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(2081), + [anon_sym_AT] = ACTIONS(2081), + [anon_sym_QMARK] = ACTIONS(2081), + [anon_sym_0] = ACTIONS(2079), + [anon_sym__] = ACTIONS(2079), + }, + [497] = { + [sym_concatenation] = STATE(1055), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1055), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_EQ] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2087), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_COLON] = ACTIONS(2085), + [anon_sym_COLON_QMARK] = ACTIONS(2085), + [anon_sym_COLON_DASH] = ACTIONS(2085), + [anon_sym_PERCENT] = ACTIONS(2085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [498] = { + [sym_concatenation] = STATE(1058), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1058), + [anon_sym_RBRACE] = ACTIONS(2091), + [anon_sym_EQ] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2095), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2097), + [anon_sym_COLON] = ACTIONS(2093), + [anon_sym_COLON_QMARK] = ACTIONS(2093), + [anon_sym_COLON_DASH] = ACTIONS(2093), + [anon_sym_PERCENT] = ACTIONS(2093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [499] = { + [anon_sym_RPAREN] = ACTIONS(2099), + [sym_comment] = ACTIONS(57), + }, + [500] = { + [anon_sym_BQUOTE] = ACTIONS(2099), + [sym_comment] = ACTIONS(57), + }, + [501] = { + [anon_sym_RPAREN] = ACTIONS(2101), + [sym_comment] = ACTIONS(57), + }, + [502] = { + [sym__expression] = STATE(1061), + [sym_binary_expression] = STATE(1061), + [sym_unary_expression] = STATE(1061), + [sym_postfix_expression] = STATE(1061), + [sym_parenthesized_expression] = STATE(1061), + [sym_concatenation] = STATE(1061), + [sym_string] = STATE(147), + [sym_simple_expansion] = STATE(147), + [sym_string_expansion] = STATE(147), + [sym_expansion] = STATE(147), + [sym_command_substitution] = STATE(147), + [sym_process_substitution] = STATE(147), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_BANG] = ACTIONS(227), + [sym__special_characters] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [sym_raw_string] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_LT_LPAREN] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(245), + [sym_test_operator] = ACTIONS(247), + }, + [503] = { + [sym__expression] = STATE(1061), + [sym_binary_expression] = STATE(1061), + [sym_unary_expression] = STATE(1061), + [sym_postfix_expression] = STATE(1061), + [sym_parenthesized_expression] = STATE(1061), + [sym_concatenation] = STATE(1061), + [sym_string] = STATE(147), + [sym_simple_expansion] = STATE(147), + [sym_string_expansion] = STATE(147), + [sym_expansion] = STATE(147), + [sym_command_substitution] = STATE(147), + [sym_process_substitution] = STATE(147), + [sym_regex] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_BANG] = ACTIONS(227), + [sym__special_characters] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [sym_raw_string] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_LT_LPAREN] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(245), + [sym_test_operator] = ACTIONS(247), + }, + [504] = { + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_PIPE_PIPE] = ACTIONS(1555), + [anon_sym_RBRACK] = ACTIONS(1555), + [anon_sym_EQ_TILDE] = ACTIONS(1555), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_EQ] = ACTIONS(1557), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_GT] = ACTIONS(1557), + [anon_sym_BANG_EQ] = ACTIONS(1555), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1555), + }, + [505] = { + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1511), + [anon_sym_EQ_TILDE] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_DASH_EQ] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(925), + }, + [506] = { + [aux_sym_concatenation_repeat1] = STATE(1063), + [sym__concat] = ACTIONS(519), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1043), + [anon_sym_EQ_TILDE] = ACTIONS(1043), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_PLUS_EQ] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_DASH_EQ] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_PLUS_PLUS] = ACTIONS(1043), + [anon_sym_DASH_DASH] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1043), + }, + [507] = { + [sym__expression] = STATE(754), + [sym_binary_expression] = STATE(754), + [sym_unary_expression] = STATE(754), + [sym_postfix_expression] = STATE(754), + [sym_parenthesized_expression] = STATE(754), + [sym_concatenation] = STATE(754), + [sym_string] = STATE(155), + [sym_simple_expansion] = STATE(155), + [sym_string_expansion] = STATE(155), + [sym_expansion] = STATE(155), + [sym_command_substitution] = STATE(155), + [sym_process_substitution] = STATE(155), + [anon_sym_LPAREN] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(249), + [sym__special_characters] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [sym_raw_string] = ACTIONS(253), + [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(255), + [sym_test_operator] = ACTIONS(257), + }, + [508] = { + [sym__expression] = STATE(754), + [sym_binary_expression] = STATE(754), + [sym_unary_expression] = STATE(754), + [sym_postfix_expression] = STATE(754), + [sym_parenthesized_expression] = STATE(754), + [sym_concatenation] = STATE(754), + [sym_string] = STATE(155), + [sym_simple_expansion] = STATE(155), + [sym_string_expansion] = STATE(155), + [sym_expansion] = STATE(155), + [sym_command_substitution] = STATE(155), + [sym_process_substitution] = STATE(155), + [sym_regex] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(249), + [sym__special_characters] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [sym_raw_string] = ACTIONS(253), + [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(255), + [sym_test_operator] = ACTIONS(257), + }, + [509] = { + [sym_concatenation] = STATE(1064), + [sym_string] = STATE(1067), + [sym_array] = STATE(1064), + [sym_simple_expansion] = STATE(1067), + [sym_string_expansion] = STATE(1067), + [sym_expansion] = STATE(1067), + [sym_command_substitution] = STATE(1067), + [sym_process_substitution] = STATE(1067), + [sym__empty_value] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [sym__special_characters] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(267), + [anon_sym_DOLLAR] = ACTIONS(269), + [sym_raw_string] = ACTIONS(2111), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(273), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(277), + [anon_sym_LT_LPAREN] = ACTIONS(279), + [anon_sym_GT_LPAREN] = ACTIONS(279), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2111), + }, + [510] = { + [sym_string] = STATE(1068), + [sym_simple_expansion] = STATE(1068), + [sym_string_expansion] = STATE(1068), + [sym_expansion] = STATE(1068), + [sym_command_substitution] = STATE(1068), + [sym_process_substitution] = STATE(1068), + [sym__special_characters] = ACTIONS(2113), + [anon_sym_DQUOTE] = ACTIONS(267), + [anon_sym_DOLLAR] = ACTIONS(269), + [sym_raw_string] = ACTIONS(2113), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(273), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(277), + [anon_sym_LT_LPAREN] = ACTIONS(279), + [anon_sym_GT_LPAREN] = ACTIONS(279), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2113), + }, + [511] = { + [aux_sym_concatenation_repeat1] = STATE(1069), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(935), + [sym_variable_name] = ACTIONS(1043), + [ts_builtin_sym_end] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1045), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [512] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [sym_variable_name] = ACTIONS(1047), + [ts_builtin_sym_end] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1049), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [513] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [514] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_DOLLAR] = ACTIONS(2117), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [515] = { + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [sym_variable_name] = ACTIONS(1081), + [ts_builtin_sym_end] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_RPAREN] = ACTIONS(1081), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1083), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [516] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = 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), + }, + [517] = { [sym__simple_heredoc_body] = ACTIONS(1089), [sym__heredoc_body_beginning] = ACTIONS(1089), [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(5558), + [sym__concat] = ACTIONS(1089), + [sym_variable_name] = ACTIONS(1089), + [ts_builtin_sym_end] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_RPAREN] = ACTIONS(1089), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1091), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + }, + [518] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2119), + [sym_comment] = ACTIONS(57), + }, + [519] = { + [sym_subscript] = STATE(1075), + [sym_variable_name] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2123), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_AT] = ACTIONS(2127), + [anon_sym_QMARK] = ACTIONS(2127), + [anon_sym_0] = ACTIONS(2125), + [anon_sym__] = ACTIONS(2125), + }, + [520] = { + [sym_concatenation] = STATE(1078), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1078), + [anon_sym_RBRACE] = ACTIONS(2129), + [anon_sym_EQ] = ACTIONS(2131), + [anon_sym_DASH] = ACTIONS(2131), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2133), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2135), + [anon_sym_COLON] = ACTIONS(2131), + [anon_sym_COLON_QMARK] = ACTIONS(2131), + [anon_sym_COLON_DASH] = ACTIONS(2131), + [anon_sym_PERCENT] = ACTIONS(2131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [521] = { + [sym_concatenation] = STATE(1081), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1081), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_EQ] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2141), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2143), + [anon_sym_COLON] = ACTIONS(2139), + [anon_sym_COLON_QMARK] = ACTIONS(2139), + [anon_sym_COLON_DASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [522] = { + [anon_sym_RPAREN] = ACTIONS(2145), + [sym_comment] = ACTIONS(57), + }, + [523] = { + [anon_sym_BQUOTE] = ACTIONS(2145), + [sym_comment] = ACTIONS(57), + }, + [524] = { + [anon_sym_RPAREN] = ACTIONS(2147), + [sym_comment] = ACTIONS(57), + }, + [525] = { + [sym_variable_assignment] = STATE(525), + [sym_subscript] = STATE(166), + [sym_concatenation] = STATE(525), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_declaration_command_repeat1] = STATE(525), + [sym__simple_heredoc_body] = ACTIONS(2149), + [sym__heredoc_body_beginning] = ACTIONS(2149), + [sym_file_descriptor] = ACTIONS(2149), + [sym_variable_name] = ACTIONS(2151), + [ts_builtin_sym_end] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_SEMI_SEMI] = ACTIONS(2149), + [anon_sym_PIPE_AMP] = ACTIONS(2149), + [anon_sym_AMP_AMP] = ACTIONS(2149), + [anon_sym_PIPE_PIPE] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_GT] = ACTIONS(2154), + [anon_sym_GT_GT] = ACTIONS(2149), + [anon_sym_AMP_GT] = ACTIONS(2154), + [anon_sym_AMP_GT_GT] = ACTIONS(2149), + [anon_sym_LT_AMP] = ACTIONS(2149), + [anon_sym_GT_AMP] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2154), + [anon_sym_LT_LT_DASH] = ACTIONS(2149), + [anon_sym_LT_LT_LT] = ACTIONS(2149), + [sym__special_characters] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_DOLLAR] = ACTIONS(2162), + [sym_raw_string] = ACTIONS(2165), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2168), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2171), + [anon_sym_BQUOTE] = ACTIONS(2174), + [anon_sym_LT_LPAREN] = ACTIONS(2177), + [anon_sym_GT_LPAREN] = ACTIONS(2177), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2180), + [sym_word] = ACTIONS(2183), + [anon_sym_LF] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2154), + }, + [526] = { + [sym_string] = STATE(1084), + [sym_simple_expansion] = STATE(1084), + [sym_string_expansion] = STATE(1084), + [sym_expansion] = STATE(1084), + [sym_command_substitution] = STATE(1084), + [sym_process_substitution] = STATE(1084), + [sym__special_characters] = ACTIONS(2186), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(2186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(299), + [anon_sym_BQUOTE] = ACTIONS(301), + [anon_sym_LT_LPAREN] = ACTIONS(303), + [anon_sym_GT_LPAREN] = ACTIONS(303), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2186), + }, + [527] = { + [aux_sym_concatenation_repeat1] = STATE(1085), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(973), + [ts_builtin_sym_end] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1045), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [528] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [ts_builtin_sym_end] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1049), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [529] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [530] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_DOLLAR] = ACTIONS(2190), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [531] = { + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [ts_builtin_sym_end] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_RPAREN] = ACTIONS(1081), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1083), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [532] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = 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), + }, + [533] = { + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [ts_builtin_sym_end] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_RPAREN] = ACTIONS(1089), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1091), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + }, + [534] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2192), + [sym_comment] = ACTIONS(57), + }, + [535] = { + [sym_subscript] = STATE(1091), + [sym_variable_name] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(2196), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2198), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_QMARK] = ACTIONS(2200), + [anon_sym_0] = ACTIONS(2198), + [anon_sym__] = ACTIONS(2198), + }, + [536] = { + [sym_concatenation] = STATE(1094), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1094), + [anon_sym_RBRACE] = ACTIONS(2202), + [anon_sym_EQ] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2204), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_COLON] = ACTIONS(2204), + [anon_sym_COLON_QMARK] = ACTIONS(2204), + [anon_sym_COLON_DASH] = ACTIONS(2204), + [anon_sym_PERCENT] = ACTIONS(2204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [537] = { + [sym_concatenation] = STATE(1097), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1097), + [anon_sym_RBRACE] = ACTIONS(2210), + [anon_sym_EQ] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2216), + [anon_sym_COLON] = ACTIONS(2212), + [anon_sym_COLON_QMARK] = ACTIONS(2212), + [anon_sym_COLON_DASH] = ACTIONS(2212), + [anon_sym_PERCENT] = ACTIONS(2212), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [538] = { + [anon_sym_RPAREN] = ACTIONS(2218), + [sym_comment] = ACTIONS(57), + }, + [539] = { + [anon_sym_BQUOTE] = ACTIONS(2218), + [sym_comment] = ACTIONS(57), + }, + [540] = { + [anon_sym_RPAREN] = ACTIONS(2220), + [sym_comment] = ACTIONS(57), + }, + [541] = { + [sym_concatenation] = STATE(541), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_unset_command_repeat1] = STATE(541), + [sym__simple_heredoc_body] = ACTIONS(2222), + [sym__heredoc_body_beginning] = ACTIONS(2222), + [sym_file_descriptor] = ACTIONS(2222), + [ts_builtin_sym_end] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_SEMI_SEMI] = ACTIONS(2222), + [anon_sym_PIPE_AMP] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2222), + [anon_sym_AMP_GT] = ACTIONS(2224), + [anon_sym_AMP_GT_GT] = ACTIONS(2222), + [anon_sym_LT_AMP] = ACTIONS(2222), + [anon_sym_GT_AMP] = ACTIONS(2222), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_LT_LT_DASH] = ACTIONS(2222), + [anon_sym_LT_LT_LT] = ACTIONS(2222), + [sym__special_characters] = ACTIONS(2226), + [anon_sym_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2232), + [sym_raw_string] = ACTIONS(2235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2241), + [anon_sym_BQUOTE] = ACTIONS(2244), + [anon_sym_LT_LPAREN] = ACTIONS(2247), + [anon_sym_GT_LPAREN] = ACTIONS(2247), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2250), + [sym_word] = ACTIONS(2253), + [anon_sym_LF] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2224), + }, + [542] = { + [sym_string] = STATE(1100), + [sym_simple_expansion] = STATE(1100), + [sym_string_expansion] = STATE(1100), + [sym_expansion] = STATE(1100), + [sym_command_substitution] = STATE(1100), + [sym_process_substitution] = STATE(1100), + [sym__special_characters] = ACTIONS(2256), + [anon_sym_DQUOTE] = ACTIONS(311), + [anon_sym_DOLLAR] = ACTIONS(313), + [sym_raw_string] = ACTIONS(2256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(317), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(319), + [anon_sym_BQUOTE] = ACTIONS(321), + [anon_sym_LT_LPAREN] = ACTIONS(323), + [anon_sym_GT_LPAREN] = ACTIONS(323), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2256), + }, + [543] = { + [aux_sym_concatenation_repeat1] = STATE(1101), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(1011), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1043), + }, + [544] = { + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [sym_variable_name] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1047), + }, + [545] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(2258), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [546] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(2258), + [anon_sym_DOLLAR] = ACTIONS(2260), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [547] = { + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [sym_variable_name] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1081), + }, + [548] = { + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = 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), + }, + [549] = { + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [sym_variable_name] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1089), + }, + [550] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2262), + [sym_comment] = ACTIONS(57), + }, + [551] = { + [sym_subscript] = STATE(1107), + [sym_variable_name] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2266), + [anon_sym_DOLLAR] = ACTIONS(2266), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_AT] = ACTIONS(2270), + [anon_sym_QMARK] = ACTIONS(2270), + [anon_sym_0] = ACTIONS(2268), + [anon_sym__] = ACTIONS(2268), + }, + [552] = { + [sym_concatenation] = STATE(1110), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1110), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_EQ] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2274), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2278), + [anon_sym_COLON] = ACTIONS(2274), + [anon_sym_COLON_QMARK] = ACTIONS(2274), + [anon_sym_COLON_DASH] = ACTIONS(2274), + [anon_sym_PERCENT] = ACTIONS(2274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [553] = { + [sym_concatenation] = STATE(1113), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1113), + [anon_sym_RBRACE] = ACTIONS(2280), + [anon_sym_EQ] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2284), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2286), + [anon_sym_COLON] = ACTIONS(2282), + [anon_sym_COLON_QMARK] = ACTIONS(2282), + [anon_sym_COLON_DASH] = ACTIONS(2282), + [anon_sym_PERCENT] = ACTIONS(2282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [554] = { + [anon_sym_RPAREN] = ACTIONS(2288), + [sym_comment] = ACTIONS(57), + }, + [555] = { + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_comment] = ACTIONS(57), + }, + [556] = { + [anon_sym_RPAREN] = ACTIONS(2290), + [sym_comment] = ACTIONS(57), + }, + [557] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [ts_builtin_sym_end] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [558] = { + [aux_sym_concatenation_repeat1] = STATE(558), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2296), + [ts_builtin_sym_end] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [559] = { + [sym__concat] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1083), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym__string_content] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1083), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1083), + [anon_sym_BQUOTE] = ACTIONS(1083), + [sym_comment] = ACTIONS(343), + }, + [560] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [ts_builtin_sym_end] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_RPAREN] = ACTIONS(2299), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_EQ_TILDE] = ACTIONS(2301), + [anon_sym_EQ_EQ] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [561] = { + [sym__concat] = ACTIONS(2303), + [anon_sym_DQUOTE] = ACTIONS(2305), + [anon_sym_DOLLAR] = ACTIONS(2305), + [sym__string_content] = ACTIONS(2307), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2305), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2305), + [anon_sym_BQUOTE] = ACTIONS(2305), + [sym_comment] = ACTIONS(343), + }, + [562] = { + [sym__concat] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1091), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym__string_content] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1091), + [anon_sym_BQUOTE] = ACTIONS(1091), + [sym_comment] = ACTIONS(343), + }, + [563] = { + [anon_sym_DQUOTE] = ACTIONS(2305), + [anon_sym_DOLLAR] = ACTIONS(2305), + [sym__string_content] = ACTIONS(2307), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2305), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2305), + [anon_sym_BQUOTE] = ACTIONS(2305), + [sym_comment] = ACTIONS(343), + }, + [564] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2309), + [sym_comment] = ACTIONS(57), + }, + [565] = { + [sym_subscript] = STATE(1120), + [sym_variable_name] = ACTIONS(2311), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_DOLLAR] = ACTIONS(2313), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2317), + [anon_sym_AT] = ACTIONS(2317), + [anon_sym_QMARK] = ACTIONS(2317), + [anon_sym_0] = ACTIONS(2315), + [anon_sym__] = ACTIONS(2315), + }, + [566] = { + [sym_concatenation] = STATE(1123), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1123), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(2321), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2325), + [anon_sym_COLON] = ACTIONS(2321), + [anon_sym_COLON_QMARK] = ACTIONS(2321), + [anon_sym_COLON_DASH] = ACTIONS(2321), + [anon_sym_PERCENT] = ACTIONS(2321), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [567] = { + [sym_concatenation] = STATE(1126), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1126), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_EQ] = ACTIONS(2329), + [anon_sym_DASH] = ACTIONS(2329), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2333), + [anon_sym_COLON] = ACTIONS(2329), + [anon_sym_COLON_QMARK] = ACTIONS(2329), + [anon_sym_COLON_DASH] = ACTIONS(2329), + [anon_sym_PERCENT] = ACTIONS(2329), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [568] = { + [anon_sym_RPAREN] = ACTIONS(2335), + [sym_comment] = ACTIONS(57), + }, + [569] = { + [anon_sym_BQUOTE] = ACTIONS(2335), + [sym_comment] = ACTIONS(57), + }, + [570] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(2337), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [571] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(2305), + [anon_sym_DOLLAR] = ACTIONS(2339), + [sym__string_content] = ACTIONS(2342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2345), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2348), + [anon_sym_BQUOTE] = ACTIONS(2351), + [sym_comment] = ACTIONS(343), + }, + [572] = { + [sym_concatenation] = STATE(1132), + [sym_string] = STATE(1131), + [sym_simple_expansion] = STATE(1131), + [sym_string_expansion] = STATE(1131), + [sym_expansion] = STATE(1131), + [sym_command_substitution] = STATE(1131), + [sym_process_substitution] = STATE(1131), + [sym__special_characters] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [sym_raw_string] = ACTIONS(2356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_LT_LPAREN] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2356), + }, + [573] = { + [sym_concatenation] = STATE(1142), + [sym_string] = STATE(1137), + [sym_simple_expansion] = STATE(1137), + [sym_string_expansion] = STATE(1137), + [sym_expansion] = STATE(1137), + [sym_command_substitution] = STATE(1137), + [sym_process_substitution] = STATE(1137), + [anon_sym_RBRACE] = ACTIONS(2358), + [sym__special_characters] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(2366), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2366), + }, + [574] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2376), + [sym_comment] = ACTIONS(57), + }, + [575] = { + [sym_concatenation] = STATE(1146), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1146), + [anon_sym_RBRACE] = ACTIONS(2378), + [anon_sym_EQ] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_COLON] = ACTIONS(2380), + [anon_sym_COLON_QMARK] = ACTIONS(2380), + [anon_sym_COLON_DASH] = ACTIONS(2380), + [anon_sym_PERCENT] = ACTIONS(2380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [576] = { + [sym_concatenation] = STATE(1148), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1148), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_EQ] = ACTIONS(2386), + [anon_sym_DASH] = ACTIONS(2386), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2388), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2390), + [anon_sym_COLON] = ACTIONS(2386), + [anon_sym_COLON_QMARK] = ACTIONS(2386), + [anon_sym_COLON_DASH] = ACTIONS(2386), + [anon_sym_PERCENT] = ACTIONS(2386), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [577] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [ts_builtin_sym_end] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_RPAREN] = ACTIONS(2392), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_EQ_TILDE] = ACTIONS(2394), + [anon_sym_EQ_EQ] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [578] = { + [aux_sym_concatenation_repeat1] = STATE(1150), + [sym__concat] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2398), + [anon_sym_EQ] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [sym__special_characters] = ACTIONS(2400), + [anon_sym_DQUOTE] = ACTIONS(2398), + [anon_sym_DOLLAR] = ACTIONS(2400), + [sym_raw_string] = ACTIONS(2398), + [anon_sym_POUND] = ACTIONS(2398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), + [anon_sym_COLON] = ACTIONS(2400), + [anon_sym_COLON_QMARK] = ACTIONS(2400), + [anon_sym_COLON_DASH] = ACTIONS(2400), + [anon_sym_PERCENT] = ACTIONS(2400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), + [anon_sym_BQUOTE] = ACTIONS(2398), + [anon_sym_LT_LPAREN] = ACTIONS(2398), + [anon_sym_GT_LPAREN] = ACTIONS(2398), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(2400), + }, + [579] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(1153), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2404), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [580] = { + [sym_string] = STATE(1155), + [anon_sym_DASH] = ACTIONS(2406), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(2406), + [sym_raw_string] = ACTIONS(2408), + [anon_sym_POUND] = ACTIONS(2406), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2412), + [anon_sym_AT] = ACTIONS(2412), + [anon_sym_QMARK] = ACTIONS(2412), + [anon_sym_0] = ACTIONS(2410), + [anon_sym__] = ACTIONS(2410), + }, + [581] = { + [aux_sym_concatenation_repeat1] = STATE(1150), + [sym__concat] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_EQ] = ACTIONS(2416), + [anon_sym_DASH] = ACTIONS(2416), + [sym__special_characters] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_DOLLAR] = ACTIONS(2416), + [sym_raw_string] = ACTIONS(2414), + [anon_sym_POUND] = ACTIONS(2414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2414), + [anon_sym_COLON] = ACTIONS(2416), + [anon_sym_COLON_QMARK] = ACTIONS(2416), + [anon_sym_COLON_DASH] = ACTIONS(2416), + [anon_sym_PERCENT] = ACTIONS(2416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2414), + [anon_sym_BQUOTE] = ACTIONS(2414), + [anon_sym_LT_LPAREN] = ACTIONS(2414), + [anon_sym_GT_LPAREN] = ACTIONS(2414), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(2416), + }, + [582] = { + [sym_subscript] = STATE(1160), + [sym_variable_name] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_DOLLAR] = ACTIONS(2422), + [anon_sym_POUND] = ACTIONS(2420), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_AT] = ACTIONS(2426), + [anon_sym_QMARK] = ACTIONS(2426), + [anon_sym_0] = ACTIONS(2424), + [anon_sym__] = ACTIONS(2424), + }, + [583] = { + [sym_concatenation] = STATE(1163), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1163), + [sym_regex] = ACTIONS(2428), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_EQ] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2432), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2434), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2432), + [anon_sym_COLON_QMARK] = ACTIONS(2432), + [anon_sym_COLON_DASH] = ACTIONS(2432), + [anon_sym_PERCENT] = ACTIONS(2432), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [584] = { + [sym__statements] = STATE(1164), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [585] = { + [sym__statements] = STATE(1165), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [586] = { + [sym__statements] = STATE(1166), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [587] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [588] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [ts_builtin_sym_end] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_EQ_TILDE] = ACTIONS(2442), + [anon_sym_EQ_EQ] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [589] = { + [sym_concatenation] = STATE(1148), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1148), + [sym_regex] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_EQ] = ACTIONS(2386), + [anon_sym_DASH] = ACTIONS(2386), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2388), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2386), + [anon_sym_COLON_QMARK] = ACTIONS(2386), + [anon_sym_COLON_DASH] = ACTIONS(2386), + [anon_sym_PERCENT] = ACTIONS(2386), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [590] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [591] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [ts_builtin_sym_end] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [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_EQ_TILDE] = ACTIONS(2448), + [anon_sym_EQ_EQ] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [592] = { + [sym_concatenation] = STATE(245), + [sym_string] = STATE(1170), + [sym_array] = STATE(245), + [sym_simple_expansion] = STATE(1170), + [sym_string_expansion] = STATE(1170), + [sym_expansion] = STATE(1170), + [sym_command_substitution] = STATE(1170), + [sym_process_substitution] = STATE(1170), + [sym__empty_value] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(443), + [sym__special_characters] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(447), + [anon_sym_DOLLAR] = ACTIONS(449), + [sym_raw_string] = ACTIONS(2452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(455), + [anon_sym_BQUOTE] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(459), + [anon_sym_GT_LPAREN] = ACTIONS(459), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2452), + }, + [593] = { + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(2454), + [anon_sym_PLUS_EQ] = ACTIONS(2454), + [sym_comment] = ACTIONS(57), + }, + [594] = { + [aux_sym_concatenation_repeat1] = STATE(1172), + [sym__simple_heredoc_body] = ACTIONS(933), + [sym__heredoc_body_beginning] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [sym_variable_name] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(937), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(937), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(937), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [sym__special_characters] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(937), + [sym_raw_string] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(937), + [sym_word] = ACTIONS(937), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(937), + }, + [595] = { + [aux_sym_concatenation_repeat1] = STATE(1172), + [sym__simple_heredoc_body] = ACTIONS(951), + [sym__heredoc_body_beginning] = ACTIONS(951), + [sym_file_descriptor] = ACTIONS(951), + [sym__concat] = ACTIONS(935), + [sym_variable_name] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_SEMI_SEMI] = ACTIONS(951), + [anon_sym_PIPE_AMP] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_LT] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(953), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_AMP_GT] = ACTIONS(953), + [anon_sym_AMP_GT_GT] = ACTIONS(951), + [anon_sym_LT_AMP] = ACTIONS(951), + [anon_sym_GT_AMP] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(953), + [anon_sym_LT_LT_DASH] = ACTIONS(951), + [anon_sym_LT_LT_LT] = ACTIONS(951), + [sym__special_characters] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(953), + [sym_raw_string] = ACTIONS(951), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(951), + [anon_sym_BQUOTE] = ACTIONS(951), + [anon_sym_LT_LPAREN] = ACTIONS(951), + [anon_sym_GT_LPAREN] = ACTIONS(951), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(953), + [sym_word] = ACTIONS(953), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_AMP] = ACTIONS(953), + }, + [596] = { + [anon_sym_EQ] = ACTIONS(2454), + [anon_sym_PLUS_EQ] = ACTIONS(2454), + [sym_comment] = ACTIONS(57), + }, + [597] = { + [sym_variable_assignment] = STATE(1173), + [sym_subscript] = STATE(596), + [sym_concatenation] = STATE(1173), + [sym_string] = STATE(595), + [sym_simple_expansion] = STATE(595), + [sym_string_expansion] = STATE(595), + [sym_expansion] = STATE(595), + [sym_command_substitution] = STATE(595), + [sym_process_substitution] = STATE(595), + [aux_sym_declaration_command_repeat1] = STATE(1173), + [sym__simple_heredoc_body] = ACTIONS(965), + [sym__heredoc_body_beginning] = ACTIONS(965), + [sym_file_descriptor] = ACTIONS(965), + [sym_variable_name] = ACTIONS(1143), + [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_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(1145), + [anon_sym_DQUOTE] = ACTIONS(267), + [anon_sym_DOLLAR] = ACTIONS(269), + [sym_raw_string] = ACTIONS(1147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(273), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(965), + [anon_sym_LT_LPAREN] = ACTIONS(279), + [anon_sym_GT_LPAREN] = ACTIONS(279), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2456), + [sym_word] = ACTIONS(1151), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + }, + [598] = { + [aux_sym_concatenation_repeat1] = STATE(1174), + [sym__simple_heredoc_body] = ACTIONS(971), + [sym__heredoc_body_beginning] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [sym__special_characters] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(975), + [sym_word] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(975), + }, + [599] = { + [aux_sym_concatenation_repeat1] = STATE(1174), + [sym__simple_heredoc_body] = ACTIONS(989), + [sym__heredoc_body_beginning] = ACTIONS(989), + [sym_file_descriptor] = ACTIONS(989), + [sym__concat] = ACTIONS(973), + [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(991), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_AMP_GT] = ACTIONS(991), + [anon_sym_AMP_GT_GT] = ACTIONS(989), + [anon_sym_LT_AMP] = ACTIONS(989), + [anon_sym_GT_AMP] = ACTIONS(989), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_LT_LT_DASH] = ACTIONS(989), + [anon_sym_LT_LT_LT] = ACTIONS(989), + [sym__special_characters] = ACTIONS(989), + [anon_sym_DQUOTE] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(991), + [sym_raw_string] = ACTIONS(989), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(989), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(989), + [anon_sym_LT_LPAREN] = ACTIONS(989), + [anon_sym_GT_LPAREN] = ACTIONS(989), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(991), + [sym_word] = ACTIONS(991), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [600] = { + [sym_concatenation] = STATE(1175), + [sym_string] = STATE(599), + [sym_simple_expansion] = STATE(599), + [sym_string_expansion] = STATE(599), + [sym_expansion] = STATE(599), + [sym_command_substitution] = STATE(599), + [sym_process_substitution] = STATE(599), + [aux_sym_unset_command_repeat1] = STATE(1175), + [sym__simple_heredoc_body] = ACTIONS(1003), + [sym__heredoc_body_beginning] = ACTIONS(1003), + [sym_file_descriptor] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_SEMI_SEMI] = ACTIONS(1003), + [anon_sym_PIPE_AMP] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_AMP_GT] = ACTIONS(1005), + [anon_sym_AMP_GT_GT] = ACTIONS(1003), + [anon_sym_LT_AMP] = ACTIONS(1003), + [anon_sym_GT_AMP] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_LT_LT_DASH] = ACTIONS(1003), + [anon_sym_LT_LT_LT] = ACTIONS(1003), + [sym__special_characters] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(1155), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(299), + [anon_sym_BQUOTE] = ACTIONS(1003), + [anon_sym_LT_LPAREN] = ACTIONS(303), + [anon_sym_GT_LPAREN] = ACTIONS(303), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2458), + [sym_word] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1005), + }, + [601] = { + [aux_sym_concatenation_repeat1] = STATE(1176), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_EQ_TILDE] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [602] = { + [anon_sym_LT] = ACTIONS(2460), + [anon_sym_GT] = ACTIONS(2460), + [anon_sym_GT_GT] = ACTIONS(2462), + [anon_sym_AMP_GT] = ACTIONS(2460), + [anon_sym_AMP_GT_GT] = ACTIONS(2462), + [anon_sym_LT_AMP] = ACTIONS(2462), + [anon_sym_GT_AMP] = ACTIONS(2462), + [sym_comment] = ACTIONS(57), + }, + [603] = { + [sym_file_descriptor] = ACTIONS(1213), + [sym_variable_name] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_function] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_typeset] = ACTIONS(1217), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_local] = ACTIONS(1217), + [anon_sym_unset] = ACTIONS(1217), + [anon_sym_unsetenv] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_GT] = ACTIONS(1213), + [anon_sym_AMP_GT] = ACTIONS(1217), + [anon_sym_AMP_GT_GT] = ACTIONS(1213), + [anon_sym_LT_AMP] = ACTIONS(1213), + [anon_sym_GT_AMP] = ACTIONS(1213), + [sym__special_characters] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1217), + [sym_raw_string] = ACTIONS(1213), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1213), + [anon_sym_BQUOTE] = ACTIONS(1215), + [anon_sym_LT_LPAREN] = ACTIONS(1213), + [anon_sym_GT_LPAREN] = ACTIONS(1213), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1217), + }, + [604] = { + [sym_redirected_statement] = STATE(1178), + [sym_for_statement] = STATE(1178), + [sym_c_style_for_statement] = STATE(1178), + [sym_while_statement] = STATE(1178), + [sym_if_statement] = STATE(1178), + [sym_case_statement] = STATE(1178), + [sym_function_definition] = STATE(1178), + [sym_compound_statement] = STATE(1178), + [sym_subshell] = STATE(1178), + [sym_pipeline] = STATE(1178), + [sym_list] = STATE(1178), + [sym_negated_command] = STATE(1178), + [sym_test_command] = STATE(1178), + [sym_declaration_command] = STATE(1178), + [sym_unset_command] = STATE(1178), + [sym_command] = STATE(1178), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(1179), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [605] = { + [sym_redirected_statement] = STATE(1180), + [sym_for_statement] = STATE(1180), + [sym_c_style_for_statement] = STATE(1180), + [sym_while_statement] = STATE(1180), + [sym_if_statement] = STATE(1180), + [sym_case_statement] = STATE(1180), + [sym_function_definition] = STATE(1180), + [sym_compound_statement] = STATE(1180), + [sym_subshell] = STATE(1180), + [sym_pipeline] = STATE(1180), + [sym_list] = STATE(1180), + [sym_negated_command] = STATE(1180), + [sym_test_command] = STATE(1180), + [sym_declaration_command] = STATE(1180), + [sym_unset_command] = STATE(1180), + [sym_command] = STATE(1180), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(1181), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [606] = { + [sym_concatenation] = STATE(632), + [sym_string] = STATE(1183), + [sym_simple_expansion] = STATE(1183), + [sym_string_expansion] = STATE(1183), + [sym_expansion] = STATE(1183), + [sym_command_substitution] = STATE(1183), + [sym_process_substitution] = STATE(1183), + [sym__special_characters] = ACTIONS(2464), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(2466), + [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(2466), + }, + [607] = { + [sym_concatenation] = STATE(636), + [sym_string] = STATE(1185), + [sym_simple_expansion] = STATE(1185), + [sym_string_expansion] = STATE(1185), + [sym_expansion] = STATE(1185), + [sym_command_substitution] = STATE(1185), + [sym_process_substitution] = STATE(1185), + [sym__special_characters] = ACTIONS(2468), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(2470), + [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(2470), + }, + [608] = { + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym_SEMI_SEMI] = ACTIONS(2474), + [anon_sym_BQUOTE] = ACTIONS(1215), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2474), + }, + [609] = { + [sym_file_redirect] = STATE(1187), + [sym_heredoc_redirect] = STATE(1187), + [sym_herestring_redirect] = STATE(1187), + [aux_sym_redirected_statement_repeat1] = STATE(1187), + [sym__simple_heredoc_body] = ACTIONS(1233), + [sym__heredoc_body_beginning] = ACTIONS(1233), + [sym_file_descriptor] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1233), + [anon_sym_PIPE_AMP] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), + [anon_sym_GT_GT] = ACTIONS(1175), + [anon_sym_AMP_GT] = ACTIONS(1173), + [anon_sym_AMP_GT_GT] = ACTIONS(1175), + [anon_sym_LT_AMP] = ACTIONS(1175), + [anon_sym_GT_AMP] = ACTIONS(1175), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(1177), + [anon_sym_BQUOTE] = ACTIONS(1233), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1235), + }, + [610] = { + [sym_concatenation] = STATE(639), + [sym_string] = STATE(1189), + [sym_simple_expansion] = STATE(1189), + [sym_string_expansion] = STATE(1189), + [sym_expansion] = STATE(1189), + [sym_command_substitution] = STATE(1189), + [sym_process_substitution] = STATE(1189), + [sym_regex] = ACTIONS(1237), + [sym__special_characters] = ACTIONS(2476), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(2478), + [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(2478), + }, + [611] = { + [aux_sym_concatenation_repeat1] = STATE(601), + [sym__simple_heredoc_body] = ACTIONS(1243), + [sym__heredoc_body_beginning] = ACTIONS(1243), + [sym_file_descriptor] = ACTIONS(1243), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1245), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_LT_LT_DASH] = ACTIONS(1243), + [anon_sym_LT_LT_LT] = ACTIONS(1243), + [sym__special_characters] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1245), + [sym_raw_string] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [anon_sym_LT_LPAREN] = ACTIONS(1243), + [anon_sym_GT_LPAREN] = ACTIONS(1243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1245), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1245), + }, + [612] = { + [aux_sym_concatenation_repeat1] = STATE(601), + [sym__simple_heredoc_body] = ACTIONS(1247), + [sym__heredoc_body_beginning] = ACTIONS(1247), + [sym_file_descriptor] = ACTIONS(1247), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_SEMI_SEMI] = ACTIONS(1247), + [anon_sym_PIPE_AMP] = ACTIONS(1247), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_AMP_GT] = ACTIONS(1249), + [anon_sym_AMP_GT_GT] = ACTIONS(1247), + [anon_sym_LT_AMP] = ACTIONS(1247), + [anon_sym_GT_AMP] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_LT_LT_DASH] = ACTIONS(1247), + [anon_sym_LT_LT_LT] = ACTIONS(1247), + [sym__special_characters] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1247), + [anon_sym_DOLLAR] = ACTIONS(1249), + [sym_raw_string] = ACTIONS(1247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1247), + [anon_sym_BQUOTE] = ACTIONS(1247), + [anon_sym_LT_LPAREN] = ACTIONS(1247), + [anon_sym_GT_LPAREN] = ACTIONS(1247), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1249), + [anon_sym_LF] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1249), + }, + [613] = { + [sym_concatenation] = STATE(1190), + [sym_string] = STATE(612), + [sym_simple_expansion] = STATE(612), + [sym_string_expansion] = STATE(612), + [sym_expansion] = STATE(612), + [sym_command_substitution] = STATE(612), + [sym_process_substitution] = STATE(612), + [aux_sym_command_repeat2] = STATE(1190), + [sym__simple_heredoc_body] = ACTIONS(1251), + [sym__heredoc_body_beginning] = ACTIONS(1251), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1185), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + }, + [614] = { + [sym_file_redirect] = STATE(609), + [sym_heredoc_redirect] = STATE(609), + [sym_heredoc_body] = STATE(1192), + [sym_herestring_redirect] = STATE(609), + [aux_sym_redirected_statement_repeat1] = STATE(609), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym_PIPE] = ACTIONS(1165), + [anon_sym_SEMI_SEMI] = ACTIONS(2482), + [anon_sym_PIPE_AMP] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE_PIPE] = ACTIONS(1171), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), + [anon_sym_GT_GT] = ACTIONS(1175), + [anon_sym_AMP_GT] = ACTIONS(1173), + [anon_sym_AMP_GT_GT] = ACTIONS(1175), + [anon_sym_LT_AMP] = ACTIONS(1175), + [anon_sym_GT_AMP] = ACTIONS(1175), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(1177), + [anon_sym_BQUOTE] = ACTIONS(1215), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2482), + [anon_sym_AMP] = ACTIONS(2480), + }, + [615] = { + [sym_file_redirect] = STATE(609), + [sym_heredoc_redirect] = STATE(609), + [sym_heredoc_body] = STATE(1192), + [sym_herestring_redirect] = STATE(609), + [aux_sym_redirected_statement_repeat1] = STATE(609), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym_PIPE] = ACTIONS(1165), + [anon_sym_SEMI_SEMI] = ACTIONS(2482), + [anon_sym_PIPE_AMP] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE_PIPE] = ACTIONS(1171), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(1177), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(1215), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2482), + [anon_sym_AMP] = ACTIONS(2480), + }, + [616] = { + [sym_concatenation] = STATE(1193), + [sym_string] = STATE(612), + [sym_simple_expansion] = STATE(612), + [sym_string_expansion] = STATE(612), + [sym_expansion] = STATE(612), + [sym_command_substitution] = STATE(612), + [sym_process_substitution] = STATE(612), + [aux_sym_command_repeat2] = STATE(1193), + [sym__simple_heredoc_body] = ACTIONS(1251), + [sym__heredoc_body_beginning] = ACTIONS(1251), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1185), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + }, + [617] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [ts_builtin_sym_end] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_EQ_TILDE] = ACTIONS(2486), + [anon_sym_EQ_EQ] = ACTIONS(2486), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [618] = { + [sym_compound_statement] = STATE(1194), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), + }, + [619] = { + [ts_builtin_sym_end] = ACTIONS(2488), + [anon_sym_SEMI] = ACTIONS(2490), + [anon_sym_done] = ACTIONS(2488), + [anon_sym_fi] = ACTIONS(2488), + [anon_sym_elif] = ACTIONS(2488), + [anon_sym_else] = ACTIONS(2488), + [anon_sym_esac] = ACTIONS(2488), + [anon_sym_RPAREN] = ACTIONS(2488), + [anon_sym_SEMI_SEMI] = ACTIONS(2488), + [anon_sym_BQUOTE] = ACTIONS(2488), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2488), + [anon_sym_AMP] = ACTIONS(2488), + }, + [620] = { + [anon_sym_DASH] = ACTIONS(2492), + [anon_sym_DOLLAR] = ACTIONS(2492), + [anon_sym_POUND] = ACTIONS(2492), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2494), + [anon_sym_STAR] = ACTIONS(2496), + [anon_sym_AT] = ACTIONS(2496), + [anon_sym_QMARK] = ACTIONS(2496), + [anon_sym_0] = ACTIONS(2494), + [anon_sym__] = ACTIONS(2494), + }, + [621] = { + [sym_subscript] = STATE(1200), + [sym_variable_name] = ACTIONS(2498), + [anon_sym_BANG] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_DOLLAR] = ACTIONS(2502), + [anon_sym_POUND] = ACTIONS(2500), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2506), + [anon_sym_AT] = ACTIONS(2506), + [anon_sym_QMARK] = ACTIONS(2506), + [anon_sym_0] = ACTIONS(2504), + [anon_sym__] = ACTIONS(2504), + }, + [622] = { + [sym__statements] = STATE(1201), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [623] = { + [sym__statements] = STATE(1202), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [624] = { + [sym_simple_expansion] = STATE(1204), + [sym_expansion] = STATE(1204), + [sym_command_substitution] = STATE(1204), + [aux_sym_heredoc_body_repeat1] = STATE(1204), + [sym__heredoc_body_middle] = ACTIONS(2508), + [sym__heredoc_body_end] = ACTIONS(2510), + [anon_sym_DOLLAR] = ACTIONS(1201), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1205), + [anon_sym_BQUOTE] = ACTIONS(1207), + [sym_comment] = ACTIONS(57), + }, + [625] = { + [sym_concatenation] = STATE(1207), + [sym_string] = STATE(1206), + [sym_simple_expansion] = STATE(1206), + [sym_string_expansion] = STATE(1206), + [sym_expansion] = STATE(1206), + [sym_command_substitution] = STATE(1206), + [sym_process_substitution] = STATE(1206), + [sym__special_characters] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(2514), + [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(2514), + }, + [626] = { + [sym_file_redirect] = STATE(229), + [sym_heredoc_redirect] = STATE(229), + [sym_herestring_redirect] = STATE(229), + [aux_sym_redirected_statement_repeat1] = STATE(229), + [sym__simple_heredoc_body] = ACTIONS(2516), + [sym__heredoc_body_beginning] = ACTIONS(2516), + [sym_file_descriptor] = ACTIONS(2516), + [ts_builtin_sym_end] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), + }, + [627] = { + [sym_file_redirect] = STATE(229), + [sym_heredoc_redirect] = STATE(229), + [sym_herestring_redirect] = STATE(229), + [aux_sym_redirected_statement_repeat1] = STATE(229), + [sym__simple_heredoc_body] = ACTIONS(2516), + [sym__heredoc_body_beginning] = ACTIONS(2516), + [sym_file_descriptor] = ACTIONS(2516), + [sym_variable_name] = ACTIONS(427), + [ts_builtin_sym_end] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), + }, + [628] = { + [sym_file_redirect] = STATE(229), + [sym_heredoc_redirect] = STATE(229), + [sym_herestring_redirect] = STATE(229), + [aux_sym_redirected_statement_repeat1] = STATE(229), + [sym__simple_heredoc_body] = ACTIONS(2520), + [sym__heredoc_body_beginning] = ACTIONS(2520), + [sym_file_descriptor] = ACTIONS(2520), + [ts_builtin_sym_end] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2520), + [anon_sym_AMP_GT] = ACTIONS(2522), + [anon_sym_AMP_GT_GT] = ACTIONS(2520), + [anon_sym_LT_AMP] = ACTIONS(2520), + [anon_sym_GT_AMP] = ACTIONS(2520), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + }, + [629] = { + [sym_file_redirect] = STATE(229), + [sym_heredoc_redirect] = STATE(229), + [sym_herestring_redirect] = STATE(229), + [aux_sym_redirected_statement_repeat1] = STATE(229), + [sym__simple_heredoc_body] = ACTIONS(2520), + [sym__heredoc_body_beginning] = ACTIONS(2520), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [ts_builtin_sym_end] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + }, + [630] = { + [aux_sym_concatenation_repeat1] = STATE(1208), + [sym__simple_heredoc_body] = ACTIONS(1009), + [sym__heredoc_body_beginning] = ACTIONS(1009), + [sym_file_descriptor] = ACTIONS(1009), + [sym__concat] = ACTIONS(327), + [ts_builtin_sym_end] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_SEMI_SEMI] = ACTIONS(1009), + [anon_sym_PIPE_AMP] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1009), + [anon_sym_PIPE_PIPE] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_GT] = ACTIONS(1013), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(1013), + [anon_sym_AMP_GT_GT] = ACTIONS(1009), + [anon_sym_LT_AMP] = ACTIONS(1009), + [anon_sym_GT_AMP] = ACTIONS(1009), + [anon_sym_LT_LT] = ACTIONS(1013), + [anon_sym_LT_LT_DASH] = ACTIONS(1009), + [anon_sym_LT_LT_LT] = ACTIONS(1009), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1013), + }, + [631] = { + [aux_sym_concatenation_repeat1] = STATE(1208), + [sym__simple_heredoc_body] = ACTIONS(1027), + [sym__heredoc_body_beginning] = ACTIONS(1027), + [sym_file_descriptor] = ACTIONS(1027), + [sym__concat] = ACTIONS(327), + [ts_builtin_sym_end] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_SEMI_SEMI] = ACTIONS(1027), + [anon_sym_PIPE_AMP] = ACTIONS(1027), + [anon_sym_AMP_AMP] = ACTIONS(1027), + [anon_sym_PIPE_PIPE] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_AMP_GT] = ACTIONS(1029), + [anon_sym_AMP_GT_GT] = ACTIONS(1027), + [anon_sym_LT_AMP] = ACTIONS(1027), + [anon_sym_GT_AMP] = ACTIONS(1027), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_LT_LT_DASH] = ACTIONS(1027), + [anon_sym_LT_LT_LT] = ACTIONS(1027), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + }, + [632] = { + [sym__simple_heredoc_body] = ACTIONS(1027), + [sym__heredoc_body_beginning] = ACTIONS(1027), + [sym_file_descriptor] = ACTIONS(1027), + [ts_builtin_sym_end] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_done] = ACTIONS(1027), + [anon_sym_fi] = ACTIONS(1027), + [anon_sym_elif] = ACTIONS(1027), + [anon_sym_else] = ACTIONS(1027), + [anon_sym_esac] = ACTIONS(1027), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1027), + [anon_sym_SEMI_SEMI] = ACTIONS(1027), + [anon_sym_PIPE_AMP] = ACTIONS(1027), + [anon_sym_AMP_AMP] = ACTIONS(1027), + [anon_sym_PIPE_PIPE] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_AMP_GT] = ACTIONS(1029), + [anon_sym_AMP_GT_GT] = ACTIONS(1027), + [anon_sym_LT_AMP] = ACTIONS(1027), + [anon_sym_GT_AMP] = ACTIONS(1027), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_LT_LT_DASH] = ACTIONS(1027), + [anon_sym_LT_LT_LT] = ACTIONS(1027), + [anon_sym_BQUOTE] = ACTIONS(1027), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + }, + [633] = { + [sym__simple_heredoc_body] = ACTIONS(2524), + [sym__heredoc_body_beginning] = ACTIONS(2524), + [sym_file_descriptor] = ACTIONS(2524), + [ts_builtin_sym_end] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_done] = ACTIONS(2524), + [anon_sym_fi] = ACTIONS(2524), + [anon_sym_elif] = ACTIONS(2524), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_esac] = ACTIONS(2524), + [anon_sym_PIPE] = ACTIONS(2526), + [anon_sym_RPAREN] = ACTIONS(2524), + [anon_sym_SEMI_SEMI] = ACTIONS(2524), + [anon_sym_PIPE_AMP] = ACTIONS(2524), + [anon_sym_AMP_AMP] = ACTIONS(2524), + [anon_sym_PIPE_PIPE] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_GT] = ACTIONS(2526), + [anon_sym_GT_GT] = ACTIONS(2524), + [anon_sym_AMP_GT] = ACTIONS(2526), + [anon_sym_AMP_GT_GT] = ACTIONS(2524), + [anon_sym_LT_AMP] = ACTIONS(2524), + [anon_sym_GT_AMP] = ACTIONS(2524), + [anon_sym_LT_LT] = ACTIONS(2526), + [anon_sym_LT_LT_DASH] = ACTIONS(2524), + [anon_sym_LT_LT_LT] = ACTIONS(2524), + [anon_sym_BQUOTE] = ACTIONS(2524), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2524), + [anon_sym_AMP] = ACTIONS(2526), + }, + [634] = { + [aux_sym_concatenation_repeat1] = STATE(1208), + [sym__simple_heredoc_body] = ACTIONS(2528), + [sym__heredoc_body_beginning] = ACTIONS(2528), + [sym_file_descriptor] = ACTIONS(2528), + [sym__concat] = ACTIONS(327), + [ts_builtin_sym_end] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_PIPE] = ACTIONS(2530), + [anon_sym_SEMI_SEMI] = ACTIONS(2528), + [anon_sym_PIPE_AMP] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_GT] = ACTIONS(2530), + [anon_sym_GT_GT] = ACTIONS(2528), + [anon_sym_AMP_GT] = ACTIONS(2530), + [anon_sym_AMP_GT_GT] = ACTIONS(2528), + [anon_sym_LT_AMP] = ACTIONS(2528), + [anon_sym_GT_AMP] = ACTIONS(2528), + [anon_sym_LT_LT] = ACTIONS(2530), + [anon_sym_LT_LT_DASH] = ACTIONS(2528), + [anon_sym_LT_LT_LT] = ACTIONS(2528), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2530), + }, + [635] = { + [aux_sym_concatenation_repeat1] = STATE(1208), + [sym__simple_heredoc_body] = ACTIONS(2532), + [sym__heredoc_body_beginning] = ACTIONS(2532), + [sym_file_descriptor] = ACTIONS(2532), + [sym__concat] = ACTIONS(327), + [ts_builtin_sym_end] = ACTIONS(2532), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_SEMI_SEMI] = ACTIONS(2532), + [anon_sym_PIPE_AMP] = ACTIONS(2532), + [anon_sym_AMP_AMP] = ACTIONS(2532), + [anon_sym_PIPE_PIPE] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_AMP_GT] = ACTIONS(2534), + [anon_sym_AMP_GT_GT] = ACTIONS(2532), + [anon_sym_LT_AMP] = ACTIONS(2532), + [anon_sym_GT_AMP] = ACTIONS(2532), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_LT_LT_DASH] = ACTIONS(2532), + [anon_sym_LT_LT_LT] = ACTIONS(2532), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2534), + }, + [636] = { + [sym__simple_heredoc_body] = ACTIONS(2532), + [sym__heredoc_body_beginning] = ACTIONS(2532), + [sym_file_descriptor] = ACTIONS(2532), + [ts_builtin_sym_end] = ACTIONS(2532), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_done] = ACTIONS(2532), + [anon_sym_fi] = ACTIONS(2532), + [anon_sym_elif] = ACTIONS(2532), + [anon_sym_else] = ACTIONS(2532), + [anon_sym_esac] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_RPAREN] = ACTIONS(2532), + [anon_sym_SEMI_SEMI] = ACTIONS(2532), + [anon_sym_PIPE_AMP] = ACTIONS(2532), + [anon_sym_AMP_AMP] = ACTIONS(2532), + [anon_sym_PIPE_PIPE] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_AMP_GT] = ACTIONS(2534), + [anon_sym_AMP_GT_GT] = ACTIONS(2532), + [anon_sym_LT_AMP] = ACTIONS(2532), + [anon_sym_GT_AMP] = ACTIONS(2532), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_LT_LT_DASH] = ACTIONS(2532), + [anon_sym_LT_LT_LT] = ACTIONS(2532), + [anon_sym_BQUOTE] = ACTIONS(2532), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2534), + }, + [637] = { + [sym_file_descriptor] = ACTIONS(2536), + [sym_variable_name] = ACTIONS(2536), + [ts_builtin_sym_end] = ACTIONS(2538), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_LPAREN_LPAREN] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_RPAREN] = ACTIONS(2538), + [anon_sym_SEMI_SEMI] = ACTIONS(2538), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2540), + [anon_sym_typeset] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_readonly] = ACTIONS(2540), + [anon_sym_local] = ACTIONS(2540), + [anon_sym_unset] = ACTIONS(2540), + [anon_sym_unsetenv] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_GT] = ACTIONS(2540), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_AMP_GT] = ACTIONS(2540), + [anon_sym_AMP_GT_GT] = ACTIONS(2536), + [anon_sym_LT_AMP] = ACTIONS(2536), + [anon_sym_GT_AMP] = ACTIONS(2536), + [sym__special_characters] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2536), + [anon_sym_DOLLAR] = ACTIONS(2540), + [sym_raw_string] = ACTIONS(2536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2536), + [anon_sym_BQUOTE] = ACTIONS(2536), + [anon_sym_LT_LPAREN] = ACTIONS(2536), + [anon_sym_GT_LPAREN] = ACTIONS(2536), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2540), + }, + [638] = { + [sym_file_redirect] = STATE(638), + [sym_heredoc_redirect] = STATE(638), + [sym_herestring_redirect] = STATE(638), + [aux_sym_redirected_statement_repeat1] = STATE(638), + [sym__simple_heredoc_body] = ACTIONS(2542), + [sym__heredoc_body_beginning] = ACTIONS(2542), + [sym_file_descriptor] = ACTIONS(2544), + [ts_builtin_sym_end] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_SEMI_SEMI] = ACTIONS(2542), + [anon_sym_PIPE_AMP] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(2549), + [anon_sym_GT] = ACTIONS(2549), + [anon_sym_GT_GT] = ACTIONS(2552), + [anon_sym_AMP_GT] = ACTIONS(2549), + [anon_sym_AMP_GT_GT] = ACTIONS(2552), + [anon_sym_LT_AMP] = ACTIONS(2552), + [anon_sym_GT_AMP] = ACTIONS(2552), + [anon_sym_LT_LT] = ACTIONS(2555), + [anon_sym_LT_LT_DASH] = ACTIONS(2558), + [anon_sym_LT_LT_LT] = ACTIONS(2561), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2547), + }, + [639] = { + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [ts_builtin_sym_end] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_RPAREN] = ACTIONS(2564), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(2566), + [anon_sym_EQ_EQ] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2566), + [sym_raw_string] = ACTIONS(2564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2564), + [anon_sym_LT_LPAREN] = ACTIONS(2564), + [anon_sym_GT_LPAREN] = ACTIONS(2564), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2566), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [640] = { + [aux_sym_concatenation_repeat1] = STATE(187), + [sym__simple_heredoc_body] = ACTIONS(2568), + [sym__heredoc_body_beginning] = ACTIONS(2568), + [sym_file_descriptor] = ACTIONS(2568), + [sym__concat] = ACTIONS(327), + [ts_builtin_sym_end] = ACTIONS(2568), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_SEMI_SEMI] = ACTIONS(2568), + [anon_sym_PIPE_AMP] = ACTIONS(2568), + [anon_sym_AMP_AMP] = ACTIONS(2568), + [anon_sym_PIPE_PIPE] = ACTIONS(2568), + [anon_sym_EQ_TILDE] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_AMP_GT] = ACTIONS(2570), + [anon_sym_AMP_GT_GT] = ACTIONS(2568), + [anon_sym_LT_AMP] = ACTIONS(2568), + [anon_sym_GT_AMP] = ACTIONS(2568), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_LT_LT_DASH] = ACTIONS(2568), + [anon_sym_LT_LT_LT] = ACTIONS(2568), + [sym__special_characters] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2568), + [anon_sym_DOLLAR] = ACTIONS(2570), + [sym_raw_string] = ACTIONS(2568), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2568), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2568), + [anon_sym_BQUOTE] = ACTIONS(2568), + [anon_sym_LT_LPAREN] = ACTIONS(2568), + [anon_sym_GT_LPAREN] = ACTIONS(2568), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2570), + [anon_sym_LF] = ACTIONS(2568), + [anon_sym_AMP] = ACTIONS(2570), + }, + [641] = { + [aux_sym_concatenation_repeat1] = STATE(187), + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [sym__concat] = ACTIONS(327), + [ts_builtin_sym_end] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(2566), + [anon_sym_EQ_EQ] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2566), + [sym_raw_string] = ACTIONS(2564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2564), + [anon_sym_LT_LPAREN] = ACTIONS(2564), + [anon_sym_GT_LPAREN] = ACTIONS(2564), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2566), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [642] = { + [sym_concatenation] = STATE(642), + [sym_string] = STATE(232), + [sym_simple_expansion] = STATE(232), + [sym_string_expansion] = STATE(232), + [sym_expansion] = STATE(232), + [sym_command_substitution] = STATE(232), + [sym_process_substitution] = STATE(232), + [aux_sym_command_repeat2] = STATE(642), + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [ts_builtin_sym_end] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(2572), + [anon_sym_EQ_EQ] = ACTIONS(2572), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2578), + [anon_sym_DOLLAR] = ACTIONS(2581), + [sym_raw_string] = ACTIONS(2584), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2587), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2590), + [anon_sym_BQUOTE] = ACTIONS(2593), + [anon_sym_LT_LPAREN] = ACTIONS(2596), + [anon_sym_GT_LPAREN] = ACTIONS(2596), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2599), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [643] = { + [sym_file_descriptor] = ACTIONS(1213), + [sym_variable_name] = ACTIONS(1213), + [ts_builtin_sym_end] = ACTIONS(2538), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_RPAREN] = ACTIONS(2538), + [anon_sym_SEMI_SEMI] = ACTIONS(2538), + [anon_sym_function] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_typeset] = ACTIONS(1217), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_local] = ACTIONS(1217), + [anon_sym_unset] = ACTIONS(1217), + [anon_sym_unsetenv] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_GT] = ACTIONS(1213), + [anon_sym_AMP_GT] = ACTIONS(1217), + [anon_sym_AMP_GT_GT] = ACTIONS(1213), + [anon_sym_LT_AMP] = ACTIONS(1213), + [anon_sym_GT_AMP] = ACTIONS(1213), + [sym__special_characters] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1217), + [sym_raw_string] = ACTIONS(1213), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1213), + [anon_sym_BQUOTE] = ACTIONS(1213), + [anon_sym_LT_LPAREN] = ACTIONS(1213), + [anon_sym_GT_LPAREN] = ACTIONS(1213), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1217), + }, + [644] = { + [ts_builtin_sym_end] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2602), + [anon_sym_RPAREN] = ACTIONS(2538), + [anon_sym_SEMI_SEMI] = ACTIONS(2604), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2604), + [anon_sym_AMP] = ACTIONS(2604), + }, + [645] = { + [sym_subshell] = STATE(140), + [sym_test_command] = STATE(140), + [sym_command] = STATE(140), + [sym_command_name] = STATE(649), + [sym_variable_assignment] = STATE(651), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(651), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym_command_repeat1] = STATE(651), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(223), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(377), + }, + [646] = { + [sym_variable_assignment] = STATE(1210), + [sym_subscript] = STATE(596), + [sym_concatenation] = STATE(1210), + [sym_string] = STATE(595), + [sym_simple_expansion] = STATE(595), + [sym_string_expansion] = STATE(595), + [sym_expansion] = STATE(595), + [sym_command_substitution] = STATE(595), + [sym_process_substitution] = STATE(595), + [aux_sym_declaration_command_repeat1] = STATE(1210), + [sym__simple_heredoc_body] = ACTIONS(259), + [sym__heredoc_body_beginning] = ACTIONS(259), + [sym_file_descriptor] = ACTIONS(259), + [sym_variable_name] = ACTIONS(1143), + [anon_sym_SEMI] = ACTIONS(263), + [anon_sym_PIPE] = ACTIONS(263), + [anon_sym_SEMI_SEMI] = ACTIONS(259), + [anon_sym_PIPE_AMP] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(259), + [anon_sym_PIPE_PIPE] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(263), + [anon_sym_GT] = ACTIONS(263), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_AMP_GT] = ACTIONS(263), + [anon_sym_AMP_GT_GT] = ACTIONS(259), + [anon_sym_LT_AMP] = ACTIONS(259), + [anon_sym_GT_AMP] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(263), + [anon_sym_LT_LT_DASH] = ACTIONS(259), + [anon_sym_LT_LT_LT] = ACTIONS(259), + [sym__special_characters] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(267), + [anon_sym_DOLLAR] = ACTIONS(269), + [sym_raw_string] = ACTIONS(1147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(273), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(277), + [anon_sym_LT_LPAREN] = ACTIONS(279), + [anon_sym_GT_LPAREN] = ACTIONS(279), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2606), + [sym_word] = ACTIONS(1151), + [anon_sym_LF] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(263), + }, + [647] = { + [sym_concatenation] = STATE(1211), + [sym_string] = STATE(599), + [sym_simple_expansion] = STATE(599), + [sym_string_expansion] = STATE(599), + [sym_expansion] = STATE(599), + [sym_command_substitution] = STATE(599), + [sym_process_substitution] = STATE(599), + [aux_sym_unset_command_repeat1] = STATE(1211), + [sym__simple_heredoc_body] = ACTIONS(285), + [sym__heredoc_body_beginning] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(287), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(287), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [sym__special_characters] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(1155), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(299), + [anon_sym_BQUOTE] = ACTIONS(301), + [anon_sym_LT_LPAREN] = ACTIONS(303), + [anon_sym_GT_LPAREN] = ACTIONS(303), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2608), + [sym_word] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(287), + }, + [648] = { + [sym_file_redirect] = STATE(1219), + [sym_heredoc_redirect] = STATE(1219), + [sym_heredoc_body] = STATE(1218), + [sym_herestring_redirect] = STATE(1219), + [aux_sym_redirected_statement_repeat1] = STATE(1219), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(2610), + [anon_sym_SEMI] = ACTIONS(2612), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_SEMI_SEMI] = ACTIONS(2616), + [anon_sym_PIPE_AMP] = ACTIONS(2618), + [anon_sym_AMP_AMP] = ACTIONS(2620), + [anon_sym_PIPE_PIPE] = ACTIONS(2620), + [anon_sym_LT] = ACTIONS(2622), + [anon_sym_GT] = ACTIONS(2622), + [anon_sym_GT_GT] = ACTIONS(2624), + [anon_sym_AMP_GT] = ACTIONS(2622), + [anon_sym_AMP_GT_GT] = ACTIONS(2624), + [anon_sym_LT_AMP] = ACTIONS(2624), + [anon_sym_GT_AMP] = ACTIONS(2624), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(2626), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2616), + [anon_sym_AMP] = ACTIONS(2612), + }, + [649] = { + [sym_concatenation] = STATE(1220), + [sym_string] = STATE(612), + [sym_simple_expansion] = STATE(612), + [sym_string_expansion] = STATE(612), + [sym_expansion] = STATE(612), + [sym_command_substitution] = STATE(612), + [sym_process_substitution] = STATE(612), + [aux_sym_command_repeat2] = STATE(1220), + [sym__simple_heredoc_body] = ACTIONS(415), + [sym__heredoc_body_beginning] = ACTIONS(415), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(415), + [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(415), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(415), + [anon_sym_LT_AMP] = ACTIONS(415), + [anon_sym_GT_AMP] = ACTIONS(415), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(415), + [anon_sym_LT_LT_LT] = ACTIONS(415), + [sym__special_characters] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1183), + [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(1185), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), + }, + [650] = { + [sym_file_redirect] = STATE(1219), + [sym_heredoc_redirect] = STATE(1219), + [sym_heredoc_body] = STATE(1218), + [sym_herestring_redirect] = STATE(1219), + [aux_sym_redirected_statement_repeat1] = STATE(1219), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2612), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_SEMI_SEMI] = ACTIONS(2616), + [anon_sym_PIPE_AMP] = ACTIONS(2618), + [anon_sym_AMP_AMP] = ACTIONS(2620), + [anon_sym_PIPE_PIPE] = ACTIONS(2620), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(2626), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2616), + [anon_sym_AMP] = ACTIONS(2612), + }, + [651] = { + [sym_command_name] = STATE(1221), + [sym_variable_assignment] = STATE(238), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(238), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym_command_repeat1] = STATE(238), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(223), + [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(1187), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(377), + }, + [652] = { + [sym_concatenation] = STATE(642), + [sym_string] = STATE(232), + [sym_simple_expansion] = STATE(232), + [sym_string_expansion] = STATE(232), + [sym_expansion] = STATE(232), + [sym_command_substitution] = STATE(232), + [sym_process_substitution] = STATE(232), + [aux_sym_command_repeat2] = STATE(642), + [sym__simple_heredoc_body] = ACTIONS(2628), + [sym__heredoc_body_beginning] = ACTIONS(2628), + [sym_file_descriptor] = ACTIONS(2628), + [ts_builtin_sym_end] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym_PIPE] = ACTIONS(2630), + [anon_sym_SEMI_SEMI] = ACTIONS(2628), + [anon_sym_PIPE_AMP] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_EQ_TILDE] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_GT] = ACTIONS(2630), + [anon_sym_GT_GT] = ACTIONS(2628), + [anon_sym_AMP_GT] = ACTIONS(2630), + [anon_sym_AMP_GT_GT] = ACTIONS(2628), + [anon_sym_LT_AMP] = ACTIONS(2628), + [anon_sym_GT_AMP] = ACTIONS(2628), + [anon_sym_LT_LT] = ACTIONS(2630), + [anon_sym_LT_LT_DASH] = ACTIONS(2628), + [anon_sym_LT_LT_LT] = ACTIONS(2628), + [sym__special_characters] = ACTIONS(421), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(423), + [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(425), + [anon_sym_LF] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2630), + }, + [653] = { + [sym_string] = STATE(1045), + [sym_simple_expansion] = STATE(1045), + [sym_string_expansion] = STATE(1045), + [sym_expansion] = STATE(1045), + [sym_command_substitution] = STATE(1045), + [sym_process_substitution] = STATE(1045), + [anon_sym_RBRACK] = ACTIONS(2632), + [sym__special_characters] = ACTIONS(2634), + [anon_sym_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [sym_raw_string] = ACTIONS(2067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_LT_LPAREN] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2067), + }, + [654] = { + [sym__concat] = ACTIONS(2636), + [anon_sym_EQ] = ACTIONS(2638), + [anon_sym_PLUS_EQ] = ACTIONS(2638), + [sym_comment] = ACTIONS(57), + }, + [655] = { + [aux_sym_concatenation_repeat1] = STATE(1224), + [sym__concat] = ACTIONS(893), + [anon_sym_RBRACK] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + }, + [656] = { + [sym_string] = STATE(1045), + [sym_simple_expansion] = STATE(1045), + [sym_string_expansion] = STATE(1045), + [sym_expansion] = STATE(1045), + [sym_command_substitution] = STATE(1045), + [sym_process_substitution] = STATE(1045), + [anon_sym_RBRACK] = ACTIONS(2640), + [sym__special_characters] = ACTIONS(2634), + [anon_sym_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [sym_raw_string] = ACTIONS(2067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_LT_LPAREN] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2067), + }, + [657] = { + [sym__concat] = ACTIONS(2642), + [anon_sym_EQ] = ACTIONS(2644), + [anon_sym_PLUS_EQ] = ACTIONS(2644), + [sym_comment] = ACTIONS(57), + }, + [658] = { + [anon_sym_RBRACK] = ACTIONS(2640), + [sym_comment] = ACTIONS(57), + }, + [659] = { + [sym__simple_heredoc_body] = ACTIONS(2646), + [sym__heredoc_body_beginning] = ACTIONS(2646), + [sym_file_descriptor] = ACTIONS(2646), + [sym_variable_name] = ACTIONS(2646), + [ts_builtin_sym_end] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2646), + [anon_sym_SEMI_SEMI] = ACTIONS(2646), + [anon_sym_PIPE_AMP] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_PIPE_PIPE] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_GT] = ACTIONS(2648), + [anon_sym_GT_GT] = ACTIONS(2646), + [anon_sym_AMP_GT] = ACTIONS(2648), + [anon_sym_AMP_GT_GT] = ACTIONS(2646), + [anon_sym_LT_AMP] = ACTIONS(2646), + [anon_sym_GT_AMP] = ACTIONS(2646), + [anon_sym_LT_LT] = ACTIONS(2648), + [anon_sym_LT_LT_DASH] = ACTIONS(2646), + [anon_sym_LT_LT_LT] = ACTIONS(2646), + [sym__special_characters] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2648), + [sym_raw_string] = ACTIONS(2646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2646), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2646), + [anon_sym_BQUOTE] = ACTIONS(2646), + [anon_sym_LT_LPAREN] = ACTIONS(2646), + [anon_sym_GT_LPAREN] = ACTIONS(2646), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2648), + [anon_sym_LF] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2648), + }, + [660] = { + [aux_sym_concatenation_repeat1] = STATE(1228), + [sym__concat] = ACTIONS(2650), + [anon_sym_RPAREN] = ACTIONS(2652), + [sym__special_characters] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_DOLLAR] = ACTIONS(2654), + [sym_raw_string] = ACTIONS(2652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2652), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2652), + [anon_sym_BQUOTE] = ACTIONS(2652), + [anon_sym_LT_LPAREN] = ACTIONS(2652), + [anon_sym_GT_LPAREN] = ACTIONS(2652), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2652), + }, + [661] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(1231), + [anon_sym_DQUOTE] = ACTIONS(2656), + [anon_sym_DOLLAR] = ACTIONS(2658), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [662] = { + [sym_string] = STATE(1233), + [anon_sym_DASH] = ACTIONS(2660), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(2660), + [sym_raw_string] = ACTIONS(2662), + [anon_sym_POUND] = ACTIONS(2660), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(2666), + [anon_sym_0] = ACTIONS(2664), + [anon_sym__] = ACTIONS(2664), + }, + [663] = { + [aux_sym_concatenation_repeat1] = STATE(1228), + [sym__concat] = ACTIONS(2650), + [anon_sym_RPAREN] = ACTIONS(2668), + [sym__special_characters] = ACTIONS(2668), + [anon_sym_DQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR] = ACTIONS(2670), + [sym_raw_string] = ACTIONS(2668), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2668), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2668), + [anon_sym_BQUOTE] = ACTIONS(2668), + [anon_sym_LT_LPAREN] = ACTIONS(2668), + [anon_sym_GT_LPAREN] = ACTIONS(2668), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2668), + }, + [664] = { + [sym_subscript] = STATE(1238), + [sym_variable_name] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2674), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(2674), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2678), + [anon_sym_STAR] = ACTIONS(2680), + [anon_sym_AT] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2680), + [anon_sym_0] = ACTIONS(2678), + [anon_sym__] = ACTIONS(2678), + }, + [665] = { + [sym__statements] = STATE(1239), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [666] = { + [sym__statements] = STATE(1240), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [667] = { + [sym__statements] = STATE(1241), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [668] = { + [sym_concatenation] = STATE(1243), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1243), + [anon_sym_RPAREN] = ACTIONS(2682), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [669] = { + [sym_string] = STATE(1244), + [sym_simple_expansion] = STATE(1244), + [sym_string_expansion] = STATE(1244), + [sym_expansion] = STATE(1244), + [sym_command_substitution] = STATE(1244), + [sym_process_substitution] = STATE(1244), + [sym__special_characters] = ACTIONS(2684), + [anon_sym_DQUOTE] = ACTIONS(447), + [anon_sym_DOLLAR] = ACTIONS(449), + [sym_raw_string] = ACTIONS(2684), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(455), + [anon_sym_BQUOTE] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(459), + [anon_sym_GT_LPAREN] = ACTIONS(459), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2684), + }, + [670] = { + [aux_sym_concatenation_repeat1] = STATE(1245), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(1395), + [sym_variable_name] = ACTIONS(1043), + [ts_builtin_sym_end] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [671] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [sym_variable_name] = ACTIONS(1047), + [ts_builtin_sym_end] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [672] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(2686), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [673] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(2686), + [anon_sym_DOLLAR] = ACTIONS(2688), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [674] = { + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [sym_variable_name] = ACTIONS(1081), + [ts_builtin_sym_end] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_RPAREN] = ACTIONS(1081), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [675] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = 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), + }, + [676] = { + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [sym_variable_name] = ACTIONS(1089), + [ts_builtin_sym_end] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_RPAREN] = ACTIONS(1089), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + }, + [677] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2690), + [sym_comment] = ACTIONS(57), + }, + [678] = { + [sym_subscript] = STATE(1251), + [sym_variable_name] = ACTIONS(2692), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_DOLLAR] = ACTIONS(2694), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_AT] = ACTIONS(2698), + [anon_sym_QMARK] = ACTIONS(2698), + [anon_sym_0] = ACTIONS(2696), + [anon_sym__] = ACTIONS(2696), + }, + [679] = { + [sym_concatenation] = STATE(1254), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1254), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_EQ] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2702), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [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(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [680] = { + [sym_concatenation] = STATE(1257), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1257), + [anon_sym_RBRACE] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2710), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2714), + [anon_sym_COLON] = ACTIONS(2710), + [anon_sym_COLON_QMARK] = ACTIONS(2710), + [anon_sym_COLON_DASH] = ACTIONS(2710), + [anon_sym_PERCENT] = ACTIONS(2710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [681] = { + [anon_sym_RPAREN] = ACTIONS(2716), + [sym_comment] = ACTIONS(57), + }, + [682] = { + [anon_sym_BQUOTE] = ACTIONS(2716), + [sym_comment] = ACTIONS(57), + }, + [683] = { + [anon_sym_RPAREN] = ACTIONS(2718), + [sym_comment] = ACTIONS(57), + }, + [684] = { + [sym__expression] = STATE(1261), + [sym_binary_expression] = STATE(1261), + [sym_unary_expression] = STATE(1261), + [sym_postfix_expression] = STATE(1261), + [sym_parenthesized_expression] = STATE(1261), + [sym_concatenation] = STATE(1261), + [sym_string] = STATE(46), + [sym_simple_expansion] = STATE(46), + [sym_string_expansion] = STATE(46), + [sym_expansion] = STATE(46), + [sym_command_substitution] = STATE(46), + [sym_process_substitution] = STATE(46), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2720), + [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), + }, + [685] = { + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_SEMI_SEMI] = ACTIONS(2724), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_PLUS_EQ] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1453), + [anon_sym_LF] = ACTIONS(2724), + [anon_sym_AMP] = ACTIONS(2722), + }, + [686] = { + [anon_sym_RPAREN] = ACTIONS(2726), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_PIPE_PIPE] = ACTIONS(1503), + [anon_sym_EQ_TILDE] = ACTIONS(1505), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1507), + [anon_sym_GT] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1503), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1503), + [anon_sym_LT_EQ] = ACTIONS(1503), + [anon_sym_GT_EQ] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1503), + }, + [687] = { + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_SEMI_SEMI] = ACTIONS(1511), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_PLUS_EQ] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1453), + [anon_sym_LF] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(2728), + }, + [688] = { + [sym_string] = STATE(1264), + [sym_simple_expansion] = STATE(1264), + [sym_string_expansion] = STATE(1264), + [sym_expansion] = STATE(1264), + [sym_command_substitution] = STATE(1264), + [sym_process_substitution] = STATE(1264), + [sym__special_characters] = ACTIONS(2730), + [anon_sym_DQUOTE] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(473), + [sym_raw_string] = ACTIONS(2730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_LT_LPAREN] = ACTIONS(483), + [anon_sym_GT_LPAREN] = ACTIONS(483), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2730), + }, + [689] = { + [aux_sym_concatenation_repeat1] = STATE(1265), + [sym__concat] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_EQ_TILDE] = ACTIONS(1043), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_PLUS_EQ] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_DASH_EQ] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_PLUS_PLUS] = ACTIONS(1043), + [anon_sym_DASH_DASH] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1043), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [690] = { + [sym__concat] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(1049), + [anon_sym_PLUS_EQ] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_DASH_EQ] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1047), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [691] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [692] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_DOLLAR] = ACTIONS(2734), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [693] = { + [sym__concat] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1081), + [anon_sym_EQ_EQ] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(1083), + [anon_sym_PLUS_EQ] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_BANG_EQ] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_DASH_EQ] = ACTIONS(1081), + [anon_sym_LT_EQ] = ACTIONS(1081), + [anon_sym_GT_EQ] = ACTIONS(1081), + [anon_sym_PLUS_PLUS] = ACTIONS(1081), + [anon_sym_DASH_DASH] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1081), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [694] = { + [sym__concat] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_EQ_TILDE] = ACTIONS(1085), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_EQ] = ACTIONS(1087), + [anon_sym_PLUS_EQ] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_DASH_EQ] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1085), + [anon_sym_GT_EQ] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1085), + [anon_sym_LF] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1087), + }, + [695] = { + [sym__concat] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_EQ] = ACTIONS(1091), + [anon_sym_PLUS_EQ] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_DASH_EQ] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1089), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + }, + [696] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2736), + [sym_comment] = ACTIONS(57), + }, + [697] = { + [sym_subscript] = STATE(1271), + [sym_variable_name] = ACTIONS(2738), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_DOLLAR] = ACTIONS(2740), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2742), + [anon_sym_STAR] = ACTIONS(2744), + [anon_sym_AT] = ACTIONS(2744), + [anon_sym_QMARK] = ACTIONS(2744), + [anon_sym_0] = ACTIONS(2742), + [anon_sym__] = ACTIONS(2742), + }, + [698] = { + [sym_concatenation] = STATE(1274), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1274), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_EQ] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2752), + [anon_sym_COLON] = ACTIONS(2748), + [anon_sym_COLON_QMARK] = ACTIONS(2748), + [anon_sym_COLON_DASH] = ACTIONS(2748), + [anon_sym_PERCENT] = ACTIONS(2748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [699] = { + [sym_concatenation] = STATE(1277), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1277), + [anon_sym_RBRACE] = ACTIONS(2754), + [anon_sym_EQ] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2760), + [anon_sym_COLON] = ACTIONS(2756), + [anon_sym_COLON_QMARK] = ACTIONS(2756), + [anon_sym_COLON_DASH] = ACTIONS(2756), + [anon_sym_PERCENT] = ACTIONS(2756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [700] = { + [anon_sym_RPAREN] = ACTIONS(2762), + [sym_comment] = ACTIONS(57), + }, + [701] = { + [anon_sym_BQUOTE] = ACTIONS(2762), + [sym_comment] = ACTIONS(57), + }, + [702] = { + [anon_sym_RPAREN] = ACTIONS(2764), + [sym_comment] = ACTIONS(57), + }, + [703] = { + [sym__expression] = STATE(1280), + [sym_binary_expression] = STATE(1280), + [sym_unary_expression] = STATE(1280), + [sym_postfix_expression] = STATE(1280), + [sym_parenthesized_expression] = STATE(1280), + [sym_concatenation] = STATE(1280), + [sym_string] = STATE(261), + [sym_simple_expansion] = STATE(261), + [sym_string_expansion] = STATE(261), + [sym_expansion] = STATE(261), + [sym_command_substitution] = STATE(261), + [sym_process_substitution] = STATE(261), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_SEMI_SEMI] = ACTIONS(2724), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(467), + [sym__special_characters] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(473), + [sym_raw_string] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_LT_LPAREN] = ACTIONS(483), + [anon_sym_GT_LPAREN] = ACTIONS(483), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(485), + [sym_test_operator] = ACTIONS(487), + [anon_sym_LF] = ACTIONS(2724), + [anon_sym_AMP] = ACTIONS(2724), + }, + [704] = { + [sym__expression] = STATE(1281), + [sym_binary_expression] = STATE(1281), + [sym_unary_expression] = STATE(1281), + [sym_postfix_expression] = STATE(1281), + [sym_parenthesized_expression] = STATE(1281), + [sym_concatenation] = STATE(1281), + [sym_string] = STATE(261), + [sym_simple_expansion] = STATE(261), + [sym_string_expansion] = STATE(261), + [sym_expansion] = STATE(261), + [sym_command_substitution] = STATE(261), + [sym_process_substitution] = STATE(261), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(467), + [sym__special_characters] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(473), + [sym_raw_string] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_LT_LPAREN] = ACTIONS(483), + [anon_sym_GT_LPAREN] = ACTIONS(483), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(485), + [sym_test_operator] = ACTIONS(487), + }, + [705] = { + [sym__expression] = STATE(1281), + [sym_binary_expression] = STATE(1281), + [sym_unary_expression] = STATE(1281), + [sym_postfix_expression] = STATE(1281), + [sym_parenthesized_expression] = STATE(1281), + [sym_concatenation] = STATE(1281), + [sym_string] = STATE(261), + [sym_simple_expansion] = STATE(261), + [sym_string_expansion] = STATE(261), + [sym_expansion] = STATE(261), + [sym_command_substitution] = STATE(261), + [sym_process_substitution] = STATE(261), + [sym_regex] = ACTIONS(2766), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(467), + [sym__special_characters] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(473), + [sym_raw_string] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_LT_LPAREN] = ACTIONS(483), + [anon_sym_GT_LPAREN] = ACTIONS(483), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(485), + [sym_test_operator] = ACTIONS(487), + }, + [706] = { + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_SEMI_SEMI] = ACTIONS(1555), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_PIPE_PIPE] = ACTIONS(1555), + [anon_sym_EQ_TILDE] = ACTIONS(1555), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_EQ] = ACTIONS(1557), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_GT] = ACTIONS(1557), + [anon_sym_BANG_EQ] = ACTIONS(1555), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1555), + [anon_sym_LF] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + }, + [707] = { + [aux_sym_concatenation_repeat1] = STATE(1284), + [sym__concat] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(2654), + [anon_sym_SEMI_SEMI] = ACTIONS(2652), + [sym__special_characters] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_DOLLAR] = ACTIONS(2654), + [sym_raw_string] = ACTIONS(2652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2652), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2652), + [anon_sym_BQUOTE] = ACTIONS(2652), + [anon_sym_LT_LPAREN] = ACTIONS(2652), + [anon_sym_GT_LPAREN] = ACTIONS(2652), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2654), + [anon_sym_LF] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2652), + }, + [708] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(1287), + [anon_sym_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2772), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [709] = { + [sym_string] = STATE(1289), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_DOLLAR] = ACTIONS(2774), + [sym_raw_string] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(2774), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2778), + [anon_sym_STAR] = ACTIONS(2780), + [anon_sym_AT] = ACTIONS(2780), + [anon_sym_QMARK] = ACTIONS(2780), + [anon_sym_0] = ACTIONS(2778), + [anon_sym__] = ACTIONS(2778), + }, + [710] = { + [aux_sym_concatenation_repeat1] = STATE(1284), + [sym__concat] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_SEMI_SEMI] = ACTIONS(2668), + [sym__special_characters] = ACTIONS(2668), + [anon_sym_DQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR] = ACTIONS(2670), + [sym_raw_string] = ACTIONS(2668), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2668), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2668), + [anon_sym_BQUOTE] = ACTIONS(2668), + [anon_sym_LT_LPAREN] = ACTIONS(2668), + [anon_sym_GT_LPAREN] = ACTIONS(2668), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2670), + [anon_sym_LF] = ACTIONS(2668), + [anon_sym_AMP] = ACTIONS(2668), + }, + [711] = { + [sym_subscript] = STATE(1294), + [sym_variable_name] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2784), + [anon_sym_DASH] = ACTIONS(2786), + [anon_sym_DOLLAR] = ACTIONS(2786), + [anon_sym_POUND] = ACTIONS(2784), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2788), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_AT] = ACTIONS(2790), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_0] = ACTIONS(2788), + [anon_sym__] = ACTIONS(2788), + }, + [712] = { + [sym__statements] = STATE(1295), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [713] = { + [sym__statements] = STATE(1296), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [714] = { + [sym__statements] = STATE(1297), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [715] = { + [sym_concatenation] = STATE(1299), + [sym_string] = STATE(710), + [sym_simple_expansion] = STATE(710), + [sym_string_expansion] = STATE(710), + [sym_expansion] = STATE(710), + [sym_command_substitution] = STATE(710), + [sym_process_substitution] = STATE(710), + [aux_sym_for_statement_repeat1] = STATE(1299), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym_SEMI_SEMI] = ACTIONS(2794), + [sym__special_characters] = ACTIONS(1461), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_DOLLAR] = ACTIONS(1465), + [sym_raw_string] = ACTIONS(1467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1469), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1473), + [anon_sym_LT_LPAREN] = ACTIONS(1475), + [anon_sym_GT_LPAREN] = ACTIONS(1475), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2796), + [anon_sym_LF] = ACTIONS(2794), + [anon_sym_AMP] = ACTIONS(2794), + }, + [716] = { + [sym__simple_heredoc_body] = ACTIONS(2798), + [sym__heredoc_body_beginning] = ACTIONS(2798), + [sym_file_descriptor] = ACTIONS(2798), + [ts_builtin_sym_end] = ACTIONS(2798), + [anon_sym_SEMI] = ACTIONS(2800), + [anon_sym_done] = ACTIONS(2798), + [anon_sym_fi] = ACTIONS(2798), + [anon_sym_elif] = ACTIONS(2798), + [anon_sym_else] = ACTIONS(2798), + [anon_sym_esac] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2800), + [anon_sym_RPAREN] = ACTIONS(2798), + [anon_sym_SEMI_SEMI] = ACTIONS(2798), + [anon_sym_PIPE_AMP] = ACTIONS(2798), + [anon_sym_AMP_AMP] = ACTIONS(2798), + [anon_sym_PIPE_PIPE] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2800), + [anon_sym_GT] = ACTIONS(2800), + [anon_sym_GT_GT] = ACTIONS(2798), + [anon_sym_AMP_GT] = ACTIONS(2800), + [anon_sym_AMP_GT_GT] = ACTIONS(2798), + [anon_sym_LT_AMP] = ACTIONS(2798), + [anon_sym_GT_AMP] = ACTIONS(2798), + [anon_sym_LT_LT] = ACTIONS(2800), + [anon_sym_LT_LT_DASH] = ACTIONS(2798), + [anon_sym_LT_LT_LT] = ACTIONS(2798), + [anon_sym_BQUOTE] = ACTIONS(2798), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2800), + }, + [717] = { + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_PIPE_PIPE] = ACTIONS(1503), + [anon_sym_EQ_TILDE] = ACTIONS(1505), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1507), + [anon_sym_GT] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1503), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1503), + [anon_sym_LT_EQ] = ACTIONS(1503), + [anon_sym_GT_EQ] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1503), + }, + [718] = { + [anon_sym_RPAREN] = ACTIONS(1511), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_PIPE_PIPE] = ACTIONS(1503), + [anon_sym_EQ_TILDE] = ACTIONS(1505), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1507), + [anon_sym_GT] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1503), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1503), + [anon_sym_LT_EQ] = ACTIONS(1503), + [anon_sym_GT_EQ] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1503), + }, + [719] = { + [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), + [sym__special_characters] = ACTIONS(2804), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(2804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2804), + }, + [720] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(1477), + [anon_sym_RPAREN] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_EQ_TILDE] = ACTIONS(1043), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_PLUS_EQ] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_DASH_EQ] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_PLUS_PLUS] = ACTIONS(1043), + [anon_sym_DASH_DASH] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1043), + }, + [721] = { + [sym__concat] = ACTIONS(1047), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(1049), + [anon_sym_PLUS_EQ] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_DASH_EQ] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1047), + }, + [722] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(2806), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [723] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(2806), + [anon_sym_DOLLAR] = ACTIONS(2808), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [724] = { + [sym__concat] = ACTIONS(1081), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_RPAREN] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1081), + [anon_sym_EQ_EQ] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(1083), + [anon_sym_PLUS_EQ] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_BANG_EQ] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_DASH_EQ] = ACTIONS(1081), + [anon_sym_LT_EQ] = ACTIONS(1081), + [anon_sym_GT_EQ] = ACTIONS(1081), + [anon_sym_PLUS_PLUS] = ACTIONS(1081), + [anon_sym_DASH_DASH] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1081), + }, + [725] = { + [sym__concat] = ACTIONS(1085), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_RPAREN] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_EQ_TILDE] = ACTIONS(1085), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_EQ] = ACTIONS(1087), + [anon_sym_PLUS_EQ] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_DASH_EQ] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1085), + [anon_sym_GT_EQ] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1085), + }, + [726] = { + [sym__concat] = ACTIONS(1089), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_RPAREN] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_EQ] = ACTIONS(1091), + [anon_sym_PLUS_EQ] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_DASH_EQ] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1089), + }, + [727] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2810), + [sym_comment] = ACTIONS(57), + }, + [728] = { + [sym_subscript] = STATE(1308), + [sym_variable_name] = ACTIONS(2812), + [anon_sym_DASH] = ACTIONS(2814), + [anon_sym_DOLLAR] = ACTIONS(2814), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2816), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_AT] = ACTIONS(2818), + [anon_sym_QMARK] = ACTIONS(2818), + [anon_sym_0] = ACTIONS(2816), + [anon_sym__] = ACTIONS(2816), + }, + [729] = { + [sym_concatenation] = STATE(1311), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1311), + [anon_sym_RBRACE] = ACTIONS(2820), + [anon_sym_EQ] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2822), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [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(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [730] = { + [sym_concatenation] = STATE(1314), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1314), + [anon_sym_RBRACE] = ACTIONS(2828), + [anon_sym_EQ] = ACTIONS(2830), + [anon_sym_DASH] = ACTIONS(2830), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2834), + [anon_sym_COLON] = ACTIONS(2830), + [anon_sym_COLON_QMARK] = ACTIONS(2830), + [anon_sym_COLON_DASH] = ACTIONS(2830), + [anon_sym_PERCENT] = ACTIONS(2830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [731] = { + [anon_sym_RPAREN] = ACTIONS(2836), + [sym_comment] = ACTIONS(57), + }, + [732] = { + [anon_sym_BQUOTE] = ACTIONS(2836), + [sym_comment] = ACTIONS(57), + }, + [733] = { + [anon_sym_RPAREN] = ACTIONS(2838), + [sym_comment] = ACTIONS(57), + }, + [734] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(2840), + [anon_sym_AMP_AMP] = ACTIONS(2840), + [anon_sym_PIPE_PIPE] = ACTIONS(2840), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2840), + [anon_sym_EQ_TILDE] = ACTIONS(2840), + [anon_sym_EQ_EQ] = ACTIONS(2840), + [anon_sym_EQ] = ACTIONS(2842), + [anon_sym_PLUS_EQ] = ACTIONS(2840), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_GT] = ACTIONS(2842), + [anon_sym_BANG_EQ] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2842), + [anon_sym_DASH_EQ] = ACTIONS(2840), + [anon_sym_LT_EQ] = ACTIONS(2840), + [anon_sym_GT_EQ] = ACTIONS(2840), + [anon_sym_PLUS_PLUS] = ACTIONS(2840), + [anon_sym_DASH_DASH] = ACTIONS(2840), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2840), + }, + [735] = { + [sym__expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_unary_expression] = STATE(1317), + [sym_postfix_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_concatenation] = STATE(1317), + [sym_string] = STATE(274), + [sym_simple_expansion] = STATE(274), + [sym_string_expansion] = STATE(274), + [sym_expansion] = STATE(274), + [sym_command_substitution] = STATE(274), + [sym_process_substitution] = STATE(274), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(497), + [sym__special_characters] = ACTIONS(499), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), + }, + [736] = { + [sym__expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_unary_expression] = STATE(1317), + [sym_postfix_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_concatenation] = STATE(1317), + [sym_string] = STATE(274), + [sym_simple_expansion] = STATE(274), + [sym_string_expansion] = STATE(274), + [sym_expansion] = STATE(274), + [sym_command_substitution] = STATE(274), + [sym_process_substitution] = STATE(274), + [sym_regex] = ACTIONS(2844), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(497), + [sym__special_characters] = ACTIONS(499), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), + }, + [737] = { + [anon_sym_RPAREN] = ACTIONS(1555), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_PIPE_PIPE] = ACTIONS(1555), + [anon_sym_EQ_TILDE] = ACTIONS(1555), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_EQ] = ACTIONS(1557), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_GT] = ACTIONS(1557), + [anon_sym_BANG_EQ] = ACTIONS(1555), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1555), + }, + [738] = { + [sym__concat] = ACTIONS(2292), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2292), + [anon_sym_EQ_EQ] = ACTIONS(2292), + [anon_sym_EQ] = ACTIONS(2294), + [anon_sym_PLUS_EQ] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_BANG_EQ] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_DASH_EQ] = ACTIONS(2292), + [anon_sym_LT_EQ] = ACTIONS(2292), + [anon_sym_GT_EQ] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2292), + }, + [739] = { + [aux_sym_concatenation_repeat1] = STATE(739), + [sym__concat] = ACTIONS(2846), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2292), + [anon_sym_EQ_EQ] = ACTIONS(2292), + [anon_sym_EQ] = ACTIONS(2294), + [anon_sym_PLUS_EQ] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_BANG_EQ] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_DASH_EQ] = ACTIONS(2292), + [anon_sym_LT_EQ] = ACTIONS(2292), + [anon_sym_GT_EQ] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2292), + }, + [740] = { + [sym__concat] = ACTIONS(2299), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2299), + [anon_sym_EQ_TILDE] = ACTIONS(2299), + [anon_sym_EQ_EQ] = ACTIONS(2299), + [anon_sym_EQ] = ACTIONS(2301), + [anon_sym_PLUS_EQ] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_BANG_EQ] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_DASH_EQ] = ACTIONS(2299), + [anon_sym_LT_EQ] = ACTIONS(2299), + [anon_sym_GT_EQ] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2299), + }, + [741] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(2849), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [742] = { + [sym_concatenation] = STATE(1323), + [sym_string] = STATE(1322), + [sym_simple_expansion] = STATE(1322), + [sym_string_expansion] = STATE(1322), + [sym_expansion] = STATE(1322), + [sym_command_substitution] = STATE(1322), + [sym_process_substitution] = STATE(1322), + [anon_sym_RBRACE] = ACTIONS(2851), + [sym__special_characters] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2855), + }, + [743] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2857), + [sym_comment] = ACTIONS(57), + }, + [744] = { + [sym_concatenation] = STATE(1327), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1327), + [anon_sym_RBRACE] = ACTIONS(2859), + [anon_sym_EQ] = ACTIONS(2861), + [anon_sym_DASH] = ACTIONS(2861), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2865), + [anon_sym_COLON] = ACTIONS(2861), + [anon_sym_COLON_QMARK] = ACTIONS(2861), + [anon_sym_COLON_DASH] = ACTIONS(2861), + [anon_sym_PERCENT] = ACTIONS(2861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [745] = { + [sym_concatenation] = STATE(1329), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1329), + [anon_sym_RBRACE] = ACTIONS(2851), + [anon_sym_EQ] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2867), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2871), + [anon_sym_COLON] = ACTIONS(2867), + [anon_sym_COLON_QMARK] = ACTIONS(2867), + [anon_sym_COLON_DASH] = ACTIONS(2867), + [anon_sym_PERCENT] = ACTIONS(2867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [746] = { + [sym__concat] = ACTIONS(2392), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2392), + [anon_sym_EQ_TILDE] = ACTIONS(2392), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_EQ] = ACTIONS(2394), + [anon_sym_PLUS_EQ] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2394), + [anon_sym_DASH] = ACTIONS(2394), + [anon_sym_DASH_EQ] = ACTIONS(2392), + [anon_sym_LT_EQ] = ACTIONS(2392), + [anon_sym_GT_EQ] = ACTIONS(2392), + [anon_sym_PLUS_PLUS] = ACTIONS(2392), + [anon_sym_DASH_DASH] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2392), + }, + [747] = { + [sym_concatenation] = STATE(1332), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1332), + [sym_regex] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2875), + [anon_sym_EQ] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2877), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2877), + [anon_sym_COLON_QMARK] = ACTIONS(2877), + [anon_sym_COLON_DASH] = ACTIONS(2877), + [anon_sym_PERCENT] = ACTIONS(2877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [748] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(2875), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [749] = { + [sym__concat] = ACTIONS(2440), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2440), + [anon_sym_EQ_TILDE] = ACTIONS(2440), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ] = ACTIONS(2442), + [anon_sym_PLUS_EQ] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_DASH_EQ] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2440), + [anon_sym_GT_EQ] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2440), + }, + [750] = { + [sym_concatenation] = STATE(1329), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1329), + [sym_regex] = ACTIONS(2881), + [anon_sym_RBRACE] = ACTIONS(2851), + [anon_sym_EQ] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2867), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2867), + [anon_sym_COLON_QMARK] = ACTIONS(2867), + [anon_sym_COLON_DASH] = ACTIONS(2867), + [anon_sym_PERCENT] = ACTIONS(2867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [751] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(2851), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [752] = { + [sym__concat] = ACTIONS(2446), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2446), + [anon_sym_AMP_AMP] = ACTIONS(2446), + [anon_sym_PIPE_PIPE] = ACTIONS(2446), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2446), + [anon_sym_EQ_TILDE] = ACTIONS(2446), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ] = ACTIONS(2448), + [anon_sym_PLUS_EQ] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_DASH_EQ] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2446), + [anon_sym_GT_EQ] = ACTIONS(2446), + [anon_sym_PLUS_PLUS] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2446), + }, + [753] = { + [sym__concat] = ACTIONS(2484), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2484), + [anon_sym_EQ_TILDE] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2484), + [anon_sym_EQ] = ACTIONS(2486), + [anon_sym_PLUS_EQ] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_BANG_EQ] = ACTIONS(2484), + [anon_sym_PLUS] = ACTIONS(2486), + [anon_sym_DASH] = ACTIONS(2486), + [anon_sym_DASH_EQ] = ACTIONS(2484), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(2484), + [anon_sym_DASH_DASH] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2484), + }, + [754] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(2883), + [anon_sym_AMP_AMP] = ACTIONS(2883), + [anon_sym_PIPE_PIPE] = ACTIONS(2883), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2883), + [anon_sym_EQ_TILDE] = ACTIONS(2883), + [anon_sym_EQ_EQ] = ACTIONS(2883), + [anon_sym_EQ] = ACTIONS(2885), + [anon_sym_PLUS_EQ] = ACTIONS(2883), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_GT] = ACTIONS(2885), + [anon_sym_BANG_EQ] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_DASH_EQ] = ACTIONS(2883), + [anon_sym_LT_EQ] = ACTIONS(2883), + [anon_sym_GT_EQ] = ACTIONS(2883), + [anon_sym_PLUS_PLUS] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2883), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2883), + }, + [755] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(2883), + [anon_sym_AMP_AMP] = ACTIONS(2883), + [anon_sym_PIPE_PIPE] = ACTIONS(2883), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2883), + [anon_sym_EQ_TILDE] = ACTIONS(2883), + [anon_sym_EQ_EQ] = ACTIONS(2883), + [anon_sym_EQ] = ACTIONS(2885), + [anon_sym_PLUS_EQ] = ACTIONS(2883), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_GT] = ACTIONS(2885), + [anon_sym_BANG_EQ] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_DASH_EQ] = ACTIONS(2883), + [anon_sym_LT_EQ] = ACTIONS(2883), + [anon_sym_GT_EQ] = ACTIONS(2883), + [anon_sym_PLUS_PLUS] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2883), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2883), + }, + [756] = { + [sym_file_descriptor] = ACTIONS(1371), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [757] = { + [sym_concatenation] = STATE(1335), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1335), + [anon_sym_RPAREN] = ACTIONS(2887), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [758] = { + [aux_sym_concatenation_repeat1] = STATE(1337), + [sym_file_descriptor] = ACTIONS(1393), + [sym__concat] = ACTIONS(2889), + [sym_variable_name] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_SEMI_SEMI] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_AMP_GT] = ACTIONS(1397), + [anon_sym_AMP_GT_GT] = ACTIONS(1393), + [anon_sym_LT_AMP] = ACTIONS(1393), + [anon_sym_GT_AMP] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_LT_LT_DASH] = ACTIONS(1393), + [anon_sym_LT_LT_LT] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1397), + [sym_raw_string] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1393), + [anon_sym_GT_LPAREN] = ACTIONS(1393), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1397), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1397), + }, + [759] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(1340), + [anon_sym_DQUOTE] = ACTIONS(2891), + [anon_sym_DOLLAR] = ACTIONS(2893), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [760] = { + [sym_string] = STATE(1342), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_DQUOTE] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(2895), + [sym_raw_string] = ACTIONS(2897), + [anon_sym_POUND] = ACTIONS(2895), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2901), + [anon_sym_AT] = ACTIONS(2901), + [anon_sym_QMARK] = ACTIONS(2901), + [anon_sym_0] = ACTIONS(2899), + [anon_sym__] = ACTIONS(2899), + }, + [761] = { + [aux_sym_concatenation_repeat1] = STATE(1337), + [sym_file_descriptor] = ACTIONS(1371), + [sym__concat] = ACTIONS(2889), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [762] = { + [sym_subscript] = STATE(1347), + [sym_variable_name] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2907), + [anon_sym_DOLLAR] = ACTIONS(2907), + [anon_sym_POUND] = ACTIONS(2905), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2911), + [anon_sym_AT] = ACTIONS(2911), + [anon_sym_QMARK] = ACTIONS(2911), + [anon_sym_0] = ACTIONS(2909), + [anon_sym__] = ACTIONS(2909), + }, + [763] = { + [sym__statements] = STATE(1348), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [764] = { + [sym__statements] = STATE(1349), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [765] = { + [sym__statements] = STATE(1350), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [766] = { + [sym__expression] = STATE(1352), + [sym_binary_expression] = STATE(1352), + [sym_unary_expression] = STATE(1352), + [sym_postfix_expression] = STATE(1352), + [sym_parenthesized_expression] = STATE(1352), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(261), + [sym_simple_expansion] = STATE(261), + [sym_string_expansion] = STATE(261), + [sym_expansion] = STATE(261), + [sym_command_substitution] = STATE(261), + [sym_process_substitution] = STATE(261), + [anon_sym_SEMI] = ACTIONS(2913), + [anon_sym_SEMI_SEMI] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(467), + [sym__special_characters] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(473), + [sym_raw_string] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_LT_LPAREN] = ACTIONS(483), + [anon_sym_GT_LPAREN] = ACTIONS(483), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(485), + [sym_test_operator] = ACTIONS(487), + [anon_sym_LF] = ACTIONS(2915), + [anon_sym_AMP] = ACTIONS(2915), + }, + [767] = { + [anon_sym_SEMI] = ACTIONS(2917), + [anon_sym_SEMI_SEMI] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_PLUS_EQ] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1453), + [anon_sym_LF] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2917), + }, + [768] = { + [sym_concatenation] = STATE(1354), + [sym_string] = STATE(710), + [sym_simple_expansion] = STATE(710), + [sym_string_expansion] = STATE(710), + [sym_expansion] = STATE(710), + [sym_command_substitution] = STATE(710), + [sym_process_substitution] = STATE(710), + [aux_sym_for_statement_repeat1] = STATE(1354), + [sym__special_characters] = ACTIONS(1461), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_DOLLAR] = ACTIONS(1465), + [sym_raw_string] = ACTIONS(1467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1469), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1473), + [anon_sym_LT_LPAREN] = ACTIONS(1475), + [anon_sym_GT_LPAREN] = ACTIONS(1475), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1467), + }, + [769] = { + [sym_do_group] = STATE(1355), + [anon_sym_do] = ACTIONS(1591), + [sym_comment] = ACTIONS(57), + }, + [770] = { + [sym_file_descriptor] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_SEMI_SEMI] = ACTIONS(1549), + [anon_sym_PIPE_AMP] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1549), + [anon_sym_PIPE_PIPE] = ACTIONS(1549), + [anon_sym_LT] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_GT_GT] = ACTIONS(1549), + [anon_sym_AMP_GT] = ACTIONS(1551), + [anon_sym_AMP_GT_GT] = ACTIONS(1549), + [anon_sym_LT_AMP] = ACTIONS(1549), + [anon_sym_GT_AMP] = ACTIONS(1549), + [anon_sym_LT_LT] = ACTIONS(1551), + [anon_sym_LT_LT_DASH] = ACTIONS(1549), + [anon_sym_LT_LT_LT] = ACTIONS(1549), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1551), + }, + [771] = { + [sym__statements] = STATE(1357), + [sym_redirected_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_c_style_for_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_case_statement] = STATE(847), + [sym_function_definition] = STATE(847), + [sym_compound_statement] = STATE(847), + [sym_subshell] = STATE(847), + [sym_pipeline] = STATE(847), + [sym_list] = STATE(847), + [sym_negated_command] = STATE(847), + [sym_test_command] = STATE(847), + [sym_declaration_command] = STATE(847), + [sym_unset_command] = STATE(847), + [sym_command] = STATE(847), + [sym_command_name] = STATE(848), + [sym_variable_assignment] = STATE(849), + [sym_subscript] = STATE(850), + [sym_file_redirect] = STATE(853), + [sym_concatenation] = STATE(851), + [sym_string] = STATE(840), + [sym_simple_expansion] = STATE(840), + [sym_string_expansion] = STATE(840), + [sym_expansion] = STATE(840), + [sym_command_substitution] = STATE(840), + [sym_process_substitution] = STATE(840), + [aux_sym__statements_repeat1] = STATE(852), + [aux_sym_command_repeat1] = STATE(853), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_done] = ACTIONS(2921), + [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(1709), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(1711), + [anon_sym_typeset] = ACTIONS(1711), + [anon_sym_export] = ACTIONS(1711), + [anon_sym_readonly] = ACTIONS(1711), + [anon_sym_local] = ACTIONS(1711), + [anon_sym_unset] = ACTIONS(1713), + [anon_sym_unsetenv] = ACTIONS(1713), + [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(1715), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1727), + [anon_sym_LT_LPAREN] = ACTIONS(1729), + [anon_sym_GT_LPAREN] = ACTIONS(1729), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1731), + }, + [772] = { + [sym_file_descriptor] = ACTIONS(1733), + [anon_sym_SEMI] = 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_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1733), + [anon_sym_AMP] = ACTIONS(1735), + }, + [773] = { + [sym__statements] = STATE(1359), + [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_elif_clause] = STATE(1361), + [sym_else_clause] = STATE(1360), + [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(891), + [sym_variable_assignment] = STATE(892), + [sym_subscript] = STATE(893), + [sym_file_redirect] = STATE(897), + [sym_concatenation] = STATE(894), + [sym_string] = STATE(882), + [sym_simple_expansion] = STATE(882), + [sym_string_expansion] = STATE(882), + [sym_expansion] = STATE(882), + [sym_command_substitution] = STATE(882), + [sym_process_substitution] = STATE(882), + [aux_sym__statements_repeat1] = STATE(895), + [aux_sym_if_statement_repeat1] = STATE(1361), + [aux_sym_command_repeat1] = STATE(897), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(1759), + [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(2923), + [anon_sym_elif] = ACTIONS(1763), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(1769), + [anon_sym_typeset] = ACTIONS(1769), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_readonly] = ACTIONS(1769), + [anon_sym_local] = ACTIONS(1769), + [anon_sym_unset] = ACTIONS(1771), + [anon_sym_unsetenv] = ACTIONS(1771), + [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(1773), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_DOLLAR] = ACTIONS(1777), + [sym_raw_string] = ACTIONS(1779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1783), + [anon_sym_BQUOTE] = ACTIONS(1785), + [anon_sym_LT_LPAREN] = ACTIONS(1787), + [anon_sym_GT_LPAREN] = ACTIONS(1787), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1789), + }, + [774] = { + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym_SEMI_SEMI] = ACTIONS(2927), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2927), + }, + [775] = { + [anon_sym_in] = ACTIONS(2929), + [sym_comment] = ACTIONS(57), + }, + [776] = { + [anon_sym_SEMI] = ACTIONS(2931), + [anon_sym_SEMI_SEMI] = ACTIONS(2933), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2933), + [anon_sym_AMP] = ACTIONS(2933), + }, + [777] = { + [anon_sym_in] = ACTIONS(2935), + [sym_comment] = ACTIONS(57), + }, + [778] = { + [anon_sym_RPAREN] = ACTIONS(2937), + [sym_comment] = ACTIONS(57), + }, + [779] = { + [sym_file_descriptor] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SEMI_SEMI] = ACTIONS(1841), + [anon_sym_PIPE_AMP] = ACTIONS(1841), + [anon_sym_AMP_AMP] = ACTIONS(1841), + [anon_sym_PIPE_PIPE] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_GT_GT] = ACTIONS(1841), + [anon_sym_AMP_GT] = ACTIONS(1843), + [anon_sym_AMP_GT_GT] = ACTIONS(1841), + [anon_sym_LT_AMP] = ACTIONS(1841), + [anon_sym_GT_AMP] = ACTIONS(1841), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_LT_LT_DASH] = ACTIONS(1841), + [anon_sym_LT_LT_LT] = ACTIONS(1841), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1841), + [anon_sym_AMP] = ACTIONS(1843), + }, + [780] = { + [sym_file_descriptor] = ACTIONS(1855), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_SEMI_SEMI] = ACTIONS(1855), + [anon_sym_PIPE_AMP] = ACTIONS(1855), + [anon_sym_AMP_AMP] = ACTIONS(1855), + [anon_sym_PIPE_PIPE] = ACTIONS(1855), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_GT] = ACTIONS(1857), + [anon_sym_GT_GT] = ACTIONS(1855), + [anon_sym_AMP_GT] = ACTIONS(1857), + [anon_sym_AMP_GT_GT] = ACTIONS(1855), + [anon_sym_LT_AMP] = ACTIONS(1855), + [anon_sym_GT_AMP] = ACTIONS(1855), + [anon_sym_LT_LT] = ACTIONS(1857), + [anon_sym_LT_LT_DASH] = ACTIONS(1855), + [anon_sym_LT_LT_LT] = ACTIONS(1855), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1857), + }, + [781] = { + [sym_file_descriptor] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2023), + [anon_sym_SEMI_SEMI] = ACTIONS(2021), + [anon_sym_PIPE_AMP] = ACTIONS(2021), + [anon_sym_AMP_AMP] = ACTIONS(2021), + [anon_sym_PIPE_PIPE] = ACTIONS(2021), + [anon_sym_LT] = ACTIONS(2023), + [anon_sym_GT] = ACTIONS(2023), + [anon_sym_GT_GT] = ACTIONS(2021), + [anon_sym_AMP_GT] = ACTIONS(2023), + [anon_sym_AMP_GT_GT] = ACTIONS(2021), + [anon_sym_LT_AMP] = ACTIONS(2021), + [anon_sym_GT_AMP] = ACTIONS(2021), + [anon_sym_LT_LT] = ACTIONS(2023), + [anon_sym_LT_LT_DASH] = ACTIONS(2021), + [anon_sym_LT_LT_LT] = ACTIONS(2021), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2021), + [anon_sym_AMP] = ACTIONS(2023), + }, + [782] = { + [sym_concatenation] = STATE(1367), + [sym_string] = STATE(1370), + [sym_array] = STATE(1367), + [sym_simple_expansion] = STATE(1370), + [sym_string_expansion] = STATE(1370), + [sym_expansion] = STATE(1370), + [sym_command_substitution] = STATE(1370), + [sym_process_substitution] = STATE(1370), + [sym__empty_value] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(2941), + [sym__special_characters] = ACTIONS(2943), + [anon_sym_DQUOTE] = ACTIONS(579), + [anon_sym_DOLLAR] = ACTIONS(581), + [sym_raw_string] = ACTIONS(2945), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(587), + [anon_sym_BQUOTE] = ACTIONS(589), + [anon_sym_LT_LPAREN] = ACTIONS(591), + [anon_sym_GT_LPAREN] = ACTIONS(591), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2945), + }, + [783] = { + [sym_string] = STATE(1371), + [sym_simple_expansion] = STATE(1371), + [sym_string_expansion] = STATE(1371), + [sym_expansion] = STATE(1371), + [sym_command_substitution] = STATE(1371), + [sym_process_substitution] = STATE(1371), + [sym__special_characters] = ACTIONS(2947), + [anon_sym_DQUOTE] = ACTIONS(579), + [anon_sym_DOLLAR] = ACTIONS(581), + [sym_raw_string] = ACTIONS(2947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(587), + [anon_sym_BQUOTE] = ACTIONS(589), + [anon_sym_LT_LPAREN] = ACTIONS(591), + [anon_sym_GT_LPAREN] = ACTIONS(591), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2947), + }, + [784] = { + [aux_sym_concatenation_repeat1] = STATE(1372), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(1615), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1045), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [785] = { + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [sym_variable_name] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1049), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [786] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(2949), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [787] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(2949), + [anon_sym_DOLLAR] = ACTIONS(2951), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [788] = { + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [sym_variable_name] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1083), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [789] = { + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1085), + [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), + }, + [790] = { + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [sym_variable_name] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1091), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + }, + [791] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2953), + [sym_comment] = ACTIONS(57), + }, + [792] = { + [sym_subscript] = STATE(1378), + [sym_variable_name] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2959), + [anon_sym_STAR] = ACTIONS(2961), + [anon_sym_AT] = ACTIONS(2961), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_0] = ACTIONS(2959), + [anon_sym__] = ACTIONS(2959), + }, + [793] = { + [sym_concatenation] = STATE(1381), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1381), + [anon_sym_RBRACE] = ACTIONS(2963), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2965), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2969), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_COLON_QMARK] = ACTIONS(2965), + [anon_sym_COLON_DASH] = ACTIONS(2965), + [anon_sym_PERCENT] = ACTIONS(2965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [794] = { + [sym_concatenation] = STATE(1384), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1384), + [anon_sym_RBRACE] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2973), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_COLON] = ACTIONS(2973), + [anon_sym_COLON_QMARK] = ACTIONS(2973), + [anon_sym_COLON_DASH] = ACTIONS(2973), + [anon_sym_PERCENT] = ACTIONS(2973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [795] = { + [anon_sym_RPAREN] = ACTIONS(2979), + [sym_comment] = ACTIONS(57), + }, + [796] = { + [anon_sym_BQUOTE] = ACTIONS(2979), + [sym_comment] = ACTIONS(57), + }, + [797] = { + [anon_sym_RPAREN] = ACTIONS(2981), + [sym_comment] = ACTIONS(57), + }, + [798] = { + [sym_variable_assignment] = STATE(798), + [sym_subscript] = STATE(325), + [sym_concatenation] = STATE(798), + [sym_string] = STATE(320), + [sym_simple_expansion] = STATE(320), + [sym_string_expansion] = STATE(320), + [sym_expansion] = STATE(320), + [sym_command_substitution] = STATE(320), + [sym_process_substitution] = STATE(320), + [aux_sym_declaration_command_repeat1] = STATE(798), + [sym_file_descriptor] = ACTIONS(2149), + [sym_variable_name] = ACTIONS(2983), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_SEMI_SEMI] = ACTIONS(2149), + [anon_sym_PIPE_AMP] = ACTIONS(2149), + [anon_sym_AMP_AMP] = ACTIONS(2149), + [anon_sym_PIPE_PIPE] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_GT] = ACTIONS(2154), + [anon_sym_GT_GT] = ACTIONS(2149), + [anon_sym_AMP_GT] = ACTIONS(2154), + [anon_sym_AMP_GT_GT] = ACTIONS(2149), + [anon_sym_LT_AMP] = ACTIONS(2149), + [anon_sym_GT_AMP] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2154), + [anon_sym_LT_LT_DASH] = ACTIONS(2149), + [anon_sym_LT_LT_LT] = ACTIONS(2149), + [sym__special_characters] = ACTIONS(2986), + [anon_sym_DQUOTE] = ACTIONS(2989), + [anon_sym_DOLLAR] = ACTIONS(2992), + [sym_raw_string] = ACTIONS(2995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3001), + [anon_sym_BQUOTE] = ACTIONS(3004), + [anon_sym_LT_LPAREN] = ACTIONS(3007), + [anon_sym_GT_LPAREN] = ACTIONS(3007), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3010), + [sym_word] = ACTIONS(3013), + [anon_sym_LF] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2154), + }, + [799] = { + [sym_string] = STATE(1387), + [sym_simple_expansion] = STATE(1387), + [sym_string_expansion] = STATE(1387), + [sym_expansion] = STATE(1387), + [sym_command_substitution] = STATE(1387), + [sym_process_substitution] = STATE(1387), + [sym__special_characters] = ACTIONS(3016), + [anon_sym_DQUOTE] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(601), + [sym_raw_string] = ACTIONS(3016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(605), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(607), + [anon_sym_BQUOTE] = ACTIONS(609), + [anon_sym_LT_LPAREN] = ACTIONS(611), + [anon_sym_GT_LPAREN] = ACTIONS(611), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3016), + }, + [800] = { + [aux_sym_concatenation_repeat1] = STATE(1388), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1045), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [801] = { + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1049), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [802] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [803] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_DOLLAR] = ACTIONS(3020), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [804] = { + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1083), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [805] = { + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = 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), + }, + [806] = { + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1091), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + }, + [807] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(3022), + [sym_comment] = ACTIONS(57), + }, + [808] = { + [sym_subscript] = STATE(1394), + [sym_variable_name] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_DOLLAR] = ACTIONS(3026), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AT] = ACTIONS(3030), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_0] = ACTIONS(3028), + [anon_sym__] = ACTIONS(3028), + }, + [809] = { + [sym_concatenation] = STATE(1397), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1397), + [anon_sym_RBRACE] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3038), + [anon_sym_COLON] = ACTIONS(3034), + [anon_sym_COLON_QMARK] = ACTIONS(3034), + [anon_sym_COLON_DASH] = ACTIONS(3034), + [anon_sym_PERCENT] = ACTIONS(3034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [810] = { + [sym_concatenation] = STATE(1400), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1400), + [anon_sym_RBRACE] = ACTIONS(3040), + [anon_sym_EQ] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3042), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3046), + [anon_sym_COLON] = ACTIONS(3042), + [anon_sym_COLON_QMARK] = ACTIONS(3042), + [anon_sym_COLON_DASH] = ACTIONS(3042), + [anon_sym_PERCENT] = ACTIONS(3042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [811] = { + [anon_sym_RPAREN] = ACTIONS(3048), + [sym_comment] = ACTIONS(57), + }, + [812] = { + [anon_sym_BQUOTE] = ACTIONS(3048), + [sym_comment] = ACTIONS(57), + }, + [813] = { + [anon_sym_RPAREN] = ACTIONS(3050), + [sym_comment] = ACTIONS(57), + }, + [814] = { + [sym_concatenation] = STATE(814), + [sym_string] = STATE(330), + [sym_simple_expansion] = STATE(330), + [sym_string_expansion] = STATE(330), + [sym_expansion] = STATE(330), + [sym_command_substitution] = STATE(330), + [sym_process_substitution] = STATE(330), + [aux_sym_unset_command_repeat1] = STATE(814), + [sym_file_descriptor] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_SEMI_SEMI] = ACTIONS(2222), + [anon_sym_PIPE_AMP] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2222), + [anon_sym_AMP_GT] = ACTIONS(2224), + [anon_sym_AMP_GT_GT] = ACTIONS(2222), + [anon_sym_LT_AMP] = ACTIONS(2222), + [anon_sym_GT_AMP] = ACTIONS(2222), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_LT_LT_DASH] = ACTIONS(2222), + [anon_sym_LT_LT_LT] = ACTIONS(2222), + [sym__special_characters] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3055), + [anon_sym_DOLLAR] = ACTIONS(3058), + [sym_raw_string] = ACTIONS(3061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3067), + [anon_sym_BQUOTE] = ACTIONS(3070), + [anon_sym_LT_LPAREN] = ACTIONS(3073), + [anon_sym_GT_LPAREN] = ACTIONS(3073), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3076), + [sym_word] = ACTIONS(3079), + [anon_sym_LF] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2224), + }, + [815] = { + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [816] = { + [aux_sym_concatenation_repeat1] = STATE(816), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(3082), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [817] = { + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_EQ_TILDE] = ACTIONS(2301), + [anon_sym_EQ_EQ] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [818] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [819] = { + [sym_concatenation] = STATE(1407), + [sym_string] = STATE(1406), + [sym_simple_expansion] = STATE(1406), + [sym_string_expansion] = STATE(1406), + [sym_expansion] = STATE(1406), + [sym_command_substitution] = STATE(1406), + [sym_process_substitution] = STATE(1406), + [anon_sym_RBRACE] = ACTIONS(3087), + [sym__special_characters] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3091), + }, + [820] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(3093), + [sym_comment] = ACTIONS(57), + }, + [821] = { + [sym_concatenation] = STATE(1411), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1411), + [anon_sym_RBRACE] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3097), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3101), + [anon_sym_COLON] = ACTIONS(3097), + [anon_sym_COLON_QMARK] = ACTIONS(3097), + [anon_sym_COLON_DASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [822] = { + [sym_concatenation] = STATE(1413), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1413), + [anon_sym_RBRACE] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_DASH] = ACTIONS(3103), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3107), + [anon_sym_COLON] = ACTIONS(3103), + [anon_sym_COLON_QMARK] = ACTIONS(3103), + [anon_sym_COLON_DASH] = ACTIONS(3103), + [anon_sym_PERCENT] = ACTIONS(3103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [823] = { + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_EQ_TILDE] = ACTIONS(2394), + [anon_sym_EQ_EQ] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [824] = { + [sym_concatenation] = STATE(1416), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1416), + [sym_regex] = ACTIONS(3109), + [anon_sym_RBRACE] = ACTIONS(3111), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_COLON_QMARK] = ACTIONS(3113), + [anon_sym_COLON_DASH] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [825] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(3111), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [826] = { + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_EQ_TILDE] = ACTIONS(2442), + [anon_sym_EQ_EQ] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [827] = { + [sym_concatenation] = STATE(1413), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1413), + [sym_regex] = ACTIONS(3117), + [anon_sym_RBRACE] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_DASH] = ACTIONS(3103), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(3103), + [anon_sym_COLON_QMARK] = ACTIONS(3103), + [anon_sym_COLON_DASH] = ACTIONS(3103), + [anon_sym_PERCENT] = ACTIONS(3103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [828] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [829] = { + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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_EQ_TILDE] = ACTIONS(2448), + [anon_sym_EQ_EQ] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [830] = { + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_EQ_TILDE] = ACTIONS(2486), + [anon_sym_EQ_EQ] = ACTIONS(2486), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [831] = { + [sym_compound_statement] = STATE(1418), + [anon_sym_LBRACE] = ACTIONS(113), + [sym_comment] = ACTIONS(57), + }, + [832] = { + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(3119), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [sym_comment] = ACTIONS(57), + }, + [833] = { + [sym__simple_heredoc_body] = ACTIONS(3121), + [sym__heredoc_body_beginning] = ACTIONS(3121), + [sym_file_descriptor] = ACTIONS(3121), + [ts_builtin_sym_end] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_done] = ACTIONS(3121), + [anon_sym_fi] = ACTIONS(3121), + [anon_sym_elif] = ACTIONS(3121), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_esac] = ACTIONS(3121), + [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), + [anon_sym_BQUOTE] = ACTIONS(3121), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), + }, + [834] = { + [sym_subshell] = STATE(140), + [sym_test_command] = STATE(140), + [sym_command] = STATE(140), + [sym_command_name] = STATE(848), + [sym_variable_assignment] = STATE(853), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(853), + [sym_concatenation] = STATE(851), + [sym_string] = STATE(840), + [sym_simple_expansion] = STATE(840), + [sym_string_expansion] = STATE(840), + [sym_expansion] = STATE(840), + [sym_command_substitution] = STATE(840), + [sym_process_substitution] = STATE(840), + [aux_sym_command_repeat1] = STATE(853), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(223), + [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(1715), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1727), + [anon_sym_LT_LPAREN] = ACTIONS(1729), + [anon_sym_GT_LPAREN] = ACTIONS(1729), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1721), + }, + [835] = { + [sym_variable_assignment] = STATE(1430), + [sym_subscript] = STATE(1429), + [sym_concatenation] = STATE(1430), + [sym_string] = STATE(1424), + [sym_simple_expansion] = STATE(1424), + [sym_string_expansion] = STATE(1424), + [sym_expansion] = STATE(1424), + [sym_command_substitution] = STATE(1424), + [sym_process_substitution] = STATE(1424), + [aux_sym_declaration_command_repeat1] = STATE(1430), + [sym__simple_heredoc_body] = ACTIONS(259), + [sym__heredoc_body_beginning] = ACTIONS(259), + [sym_file_descriptor] = ACTIONS(259), + [sym_variable_name] = ACTIONS(3125), + [anon_sym_SEMI] = ACTIONS(263), + [anon_sym_done] = ACTIONS(263), + [anon_sym_PIPE] = ACTIONS(263), + [anon_sym_SEMI_SEMI] = ACTIONS(259), + [anon_sym_PIPE_AMP] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(259), + [anon_sym_PIPE_PIPE] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(263), + [anon_sym_GT] = ACTIONS(263), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_AMP_GT] = ACTIONS(263), + [anon_sym_AMP_GT_GT] = ACTIONS(259), + [anon_sym_LT_AMP] = ACTIONS(259), + [anon_sym_GT_AMP] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(263), + [anon_sym_LT_LT_DASH] = ACTIONS(259), + [anon_sym_LT_LT_LT] = ACTIONS(259), + [sym__special_characters] = ACTIONS(3127), + [anon_sym_DQUOTE] = ACTIONS(3129), + [anon_sym_DOLLAR] = ACTIONS(3131), + [sym_raw_string] = ACTIONS(3133), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3135), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3137), + [anon_sym_BQUOTE] = ACTIONS(3139), + [anon_sym_LT_LPAREN] = ACTIONS(3141), + [anon_sym_GT_LPAREN] = ACTIONS(3141), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3143), + [sym_word] = ACTIONS(3145), + [anon_sym_LF] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(263), + }, + [836] = { + [sym_concatenation] = STATE(1439), + [sym_string] = STATE(1434), + [sym_simple_expansion] = STATE(1434), + [sym_string_expansion] = STATE(1434), + [sym_expansion] = STATE(1434), + [sym_command_substitution] = STATE(1434), + [sym_process_substitution] = STATE(1434), + [aux_sym_unset_command_repeat1] = STATE(1439), + [sym__simple_heredoc_body] = ACTIONS(285), + [sym__heredoc_body_beginning] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_done] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(287), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(287), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [sym__special_characters] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3149), + [anon_sym_DOLLAR] = ACTIONS(3151), + [sym_raw_string] = ACTIONS(3153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3157), + [anon_sym_BQUOTE] = ACTIONS(3159), + [anon_sym_LT_LPAREN] = ACTIONS(3161), + [anon_sym_GT_LPAREN] = ACTIONS(3161), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3163), + [sym_word] = ACTIONS(3165), + [anon_sym_LF] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(287), + }, + [837] = { + [aux_sym_concatenation_repeat1] = STATE(1441), + [sym__simple_heredoc_body] = ACTIONS(325), + [sym__heredoc_body_beginning] = ACTIONS(325), + [sym_file_descriptor] = ACTIONS(325), + [sym__concat] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(329), + [anon_sym_done] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(325), + [anon_sym_PIPE_AMP] = ACTIONS(325), + [anon_sym_AMP_AMP] = ACTIONS(325), + [anon_sym_PIPE_PIPE] = ACTIONS(325), + [anon_sym_EQ_TILDE] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(329), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_LT_LT_DASH] = ACTIONS(325), + [anon_sym_LT_LT_LT] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(329), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(329), + [anon_sym_LF] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(329), + }, + [838] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(1444), + [anon_sym_DQUOTE] = ACTIONS(3169), + [anon_sym_DOLLAR] = ACTIONS(3171), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [839] = { + [sym_string] = STATE(1446), + [anon_sym_DASH] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(3173), + [sym_raw_string] = ACTIONS(3175), + [anon_sym_POUND] = ACTIONS(3173), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_AT] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_0] = ACTIONS(3177), + [anon_sym__] = ACTIONS(3177), + }, + [840] = { + [aux_sym_concatenation_repeat1] = STATE(1441), + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [sym__concat] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_done] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), + }, + [841] = { + [sym_subscript] = STATE(1451), + [sym_variable_name] = ACTIONS(3181), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_DOLLAR] = ACTIONS(3185), + [anon_sym_POUND] = ACTIONS(3183), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_AT] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(3189), + [anon_sym_0] = ACTIONS(3187), + [anon_sym__] = ACTIONS(3187), + }, + [842] = { + [sym__statements] = STATE(1452), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [843] = { + [sym__statements] = STATE(1453), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [844] = { + [sym__statements] = STATE(1454), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [845] = { + [aux_sym_concatenation_repeat1] = STATE(1441), + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [sym__concat] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_done] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), + }, + [846] = { + [anon_sym_done] = ACTIONS(3191), + [sym_comment] = ACTIONS(57), + }, + [847] = { + [sym_file_redirect] = STATE(1463), + [sym_heredoc_redirect] = STATE(1463), + [sym_heredoc_body] = STATE(1462), + [sym_herestring_redirect] = STATE(1463), + [aux_sym_redirected_statement_repeat1] = STATE(1463), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_done] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(3197), + [anon_sym_SEMI_SEMI] = ACTIONS(3199), + [anon_sym_PIPE_AMP] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3203), + [anon_sym_PIPE_PIPE] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(3205), + [anon_sym_GT] = ACTIONS(3205), + [anon_sym_GT_GT] = ACTIONS(3207), + [anon_sym_AMP_GT] = ACTIONS(3205), + [anon_sym_AMP_GT_GT] = ACTIONS(3207), + [anon_sym_LT_AMP] = ACTIONS(3207), + [anon_sym_GT_AMP] = ACTIONS(3207), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(3209), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3199), + [anon_sym_AMP] = ACTIONS(3195), + }, + [848] = { + [sym_concatenation] = STATE(1467), + [sym_string] = STATE(1466), + [sym_simple_expansion] = STATE(1466), + [sym_string_expansion] = STATE(1466), + [sym_expansion] = STATE(1466), + [sym_command_substitution] = STATE(1466), + [sym_process_substitution] = STATE(1466), + [aux_sym_command_repeat2] = STATE(1467), + [sym__simple_heredoc_body] = ACTIONS(415), + [sym__heredoc_body_beginning] = ACTIONS(415), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_done] = ACTIONS(417), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(415), + [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(3211), + [anon_sym_EQ_EQ] = ACTIONS(3211), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(415), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(415), + [anon_sym_LT_AMP] = ACTIONS(415), + [anon_sym_GT_AMP] = ACTIONS(415), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(415), + [anon_sym_LT_LT_LT] = ACTIONS(415), + [sym__special_characters] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(3215), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1727), + [anon_sym_LT_LPAREN] = ACTIONS(1729), + [anon_sym_GT_LPAREN] = ACTIONS(1729), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3217), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), + }, + [849] = { + [sym_file_redirect] = STATE(1463), + [sym_heredoc_redirect] = STATE(1463), + [sym_heredoc_body] = STATE(1462), + [sym_herestring_redirect] = STATE(1463), + [aux_sym_redirected_statement_repeat1] = STATE(1463), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_done] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3197), + [anon_sym_SEMI_SEMI] = ACTIONS(3199), + [anon_sym_PIPE_AMP] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3203), + [anon_sym_PIPE_PIPE] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(3209), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(3199), + [anon_sym_AMP] = ACTIONS(3195), + }, + [850] = { + [anon_sym_EQ] = ACTIONS(3119), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [sym_comment] = ACTIONS(57), + }, + [851] = { + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_done] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), + }, + [852] = { + [sym_redirected_statement] = STATE(1468), + [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_compound_statement] = 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(848), + [sym_variable_assignment] = STATE(1469), + [sym_subscript] = STATE(850), + [sym_file_redirect] = STATE(853), + [sym_concatenation] = STATE(851), + [sym_string] = STATE(840), + [sym_simple_expansion] = STATE(840), + [sym_string_expansion] = STATE(840), + [sym_expansion] = STATE(840), + [sym_command_substitution] = STATE(840), + [sym_process_substitution] = STATE(840), + [aux_sym__statements_repeat1] = STATE(236), + [aux_sym_command_repeat1] = STATE(853), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(1705), + [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(1709), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(1711), + [anon_sym_typeset] = ACTIONS(1711), + [anon_sym_export] = ACTIONS(1711), + [anon_sym_readonly] = ACTIONS(1711), + [anon_sym_local] = ACTIONS(1711), + [anon_sym_unset] = ACTIONS(1713), + [anon_sym_unsetenv] = ACTIONS(1713), + [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(1715), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1727), + [anon_sym_LT_LPAREN] = ACTIONS(1729), + [anon_sym_GT_LPAREN] = ACTIONS(1729), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1731), + }, + [853] = { + [sym_command_name] = STATE(1470), + [sym_variable_assignment] = STATE(238), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(238), + [sym_concatenation] = STATE(851), + [sym_string] = STATE(840), + [sym_simple_expansion] = STATE(840), + [sym_string_expansion] = STATE(840), + [sym_expansion] = STATE(840), + [sym_command_substitution] = STATE(840), + [sym_process_substitution] = STATE(840), + [aux_sym_command_repeat1] = STATE(238), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(223), + [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(3221), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1727), + [anon_sym_LT_LPAREN] = ACTIONS(1729), + [anon_sym_GT_LPAREN] = ACTIONS(1729), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1721), + }, + [854] = { + [sym_concatenation] = STATE(1473), + [sym_string] = STATE(1472), + [sym_simple_expansion] = STATE(1472), + [sym_string_expansion] = STATE(1472), + [sym_expansion] = STATE(1472), + [sym_command_substitution] = STATE(1472), + [sym_process_substitution] = STATE(1472), + [sym__special_characters] = ACTIONS(3223), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(3225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3225), + }, + [855] = { + [sym_file_redirect] = STATE(361), + [sym_heredoc_redirect] = STATE(361), + [sym_herestring_redirect] = STATE(361), + [aux_sym_redirected_statement_repeat1] = STATE(361), + [sym_file_descriptor] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), + }, + [856] = { + [sym_file_redirect] = STATE(361), + [sym_heredoc_redirect] = STATE(361), + [sym_herestring_redirect] = STATE(361), + [aux_sym_redirected_statement_repeat1] = STATE(361), + [sym_file_descriptor] = ACTIONS(2516), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), + }, + [857] = { + [sym_file_redirect] = STATE(361), + [sym_heredoc_redirect] = STATE(361), + [sym_herestring_redirect] = STATE(361), + [aux_sym_redirected_statement_repeat1] = STATE(361), + [sym_file_descriptor] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(649), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2520), + [anon_sym_AMP_GT] = ACTIONS(2522), + [anon_sym_AMP_GT_GT] = ACTIONS(2520), + [anon_sym_LT_AMP] = ACTIONS(2520), + [anon_sym_GT_AMP] = ACTIONS(2520), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + }, + [858] = { + [sym_file_redirect] = STATE(361), + [sym_heredoc_redirect] = STATE(361), + [sym_herestring_redirect] = STATE(361), + [aux_sym_redirected_statement_repeat1] = STATE(361), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(649), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + }, + [859] = { + [aux_sym_concatenation_repeat1] = STATE(1474), + [sym_file_descriptor] = ACTIONS(1009), + [sym__concat] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_SEMI_SEMI] = ACTIONS(1009), + [anon_sym_PIPE_AMP] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1009), + [anon_sym_PIPE_PIPE] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_GT] = ACTIONS(1013), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(1013), + [anon_sym_AMP_GT_GT] = ACTIONS(1009), + [anon_sym_LT_AMP] = ACTIONS(1009), + [anon_sym_GT_AMP] = ACTIONS(1009), + [anon_sym_LT_LT] = ACTIONS(1013), + [anon_sym_LT_LT_DASH] = ACTIONS(1009), + [anon_sym_LT_LT_LT] = ACTIONS(1009), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1013), + }, + [860] = { + [aux_sym_concatenation_repeat1] = STATE(1474), + [sym_file_descriptor] = ACTIONS(1027), + [sym__concat] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_SEMI_SEMI] = ACTIONS(1027), + [anon_sym_PIPE_AMP] = ACTIONS(1027), + [anon_sym_AMP_AMP] = ACTIONS(1027), + [anon_sym_PIPE_PIPE] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_AMP_GT] = ACTIONS(1029), + [anon_sym_AMP_GT_GT] = ACTIONS(1027), + [anon_sym_LT_AMP] = ACTIONS(1027), + [anon_sym_GT_AMP] = ACTIONS(1027), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_LT_LT_DASH] = ACTIONS(1027), + [anon_sym_LT_LT_LT] = ACTIONS(1027), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + }, + [861] = { + [sym_file_descriptor] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_SEMI_SEMI] = ACTIONS(1027), + [anon_sym_PIPE_AMP] = ACTIONS(1027), + [anon_sym_AMP_AMP] = ACTIONS(1027), + [anon_sym_PIPE_PIPE] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_AMP_GT] = ACTIONS(1029), + [anon_sym_AMP_GT_GT] = ACTIONS(1027), + [anon_sym_LT_AMP] = ACTIONS(1027), + [anon_sym_GT_AMP] = ACTIONS(1027), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_LT_LT_DASH] = ACTIONS(1027), + [anon_sym_LT_LT_LT] = ACTIONS(1027), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + }, + [862] = { + [sym_file_descriptor] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_PIPE] = ACTIONS(2526), + [anon_sym_SEMI_SEMI] = ACTIONS(2524), + [anon_sym_PIPE_AMP] = ACTIONS(2524), + [anon_sym_AMP_AMP] = ACTIONS(2524), + [anon_sym_PIPE_PIPE] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_GT] = ACTIONS(2526), + [anon_sym_GT_GT] = ACTIONS(2524), + [anon_sym_AMP_GT] = ACTIONS(2526), + [anon_sym_AMP_GT_GT] = ACTIONS(2524), + [anon_sym_LT_AMP] = ACTIONS(2524), + [anon_sym_GT_AMP] = ACTIONS(2524), + [anon_sym_LT_LT] = ACTIONS(2526), + [anon_sym_LT_LT_DASH] = ACTIONS(2524), + [anon_sym_LT_LT_LT] = ACTIONS(2524), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2524), + [anon_sym_AMP] = ACTIONS(2526), + }, + [863] = { + [aux_sym_concatenation_repeat1] = STATE(1474), + [sym_file_descriptor] = ACTIONS(2528), + [sym__concat] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_PIPE] = ACTIONS(2530), + [anon_sym_SEMI_SEMI] = ACTIONS(2528), + [anon_sym_PIPE_AMP] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_GT] = ACTIONS(2530), + [anon_sym_GT_GT] = ACTIONS(2528), + [anon_sym_AMP_GT] = ACTIONS(2530), + [anon_sym_AMP_GT_GT] = ACTIONS(2528), + [anon_sym_LT_AMP] = ACTIONS(2528), + [anon_sym_GT_AMP] = ACTIONS(2528), + [anon_sym_LT_LT] = ACTIONS(2530), + [anon_sym_LT_LT_DASH] = ACTIONS(2528), + [anon_sym_LT_LT_LT] = ACTIONS(2528), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2530), + }, + [864] = { + [aux_sym_concatenation_repeat1] = STATE(1474), + [sym_file_descriptor] = ACTIONS(2532), + [sym__concat] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_SEMI_SEMI] = ACTIONS(2532), + [anon_sym_PIPE_AMP] = ACTIONS(2532), + [anon_sym_AMP_AMP] = ACTIONS(2532), + [anon_sym_PIPE_PIPE] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_AMP_GT] = ACTIONS(2534), + [anon_sym_AMP_GT_GT] = ACTIONS(2532), + [anon_sym_LT_AMP] = ACTIONS(2532), + [anon_sym_GT_AMP] = ACTIONS(2532), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_LT_LT_DASH] = ACTIONS(2532), + [anon_sym_LT_LT_LT] = ACTIONS(2532), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2534), + }, + [865] = { + [sym_file_descriptor] = ACTIONS(2532), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_SEMI_SEMI] = ACTIONS(2532), + [anon_sym_PIPE_AMP] = ACTIONS(2532), + [anon_sym_AMP_AMP] = ACTIONS(2532), + [anon_sym_PIPE_PIPE] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_AMP_GT] = ACTIONS(2534), + [anon_sym_AMP_GT_GT] = ACTIONS(2532), + [anon_sym_LT_AMP] = ACTIONS(2532), + [anon_sym_GT_AMP] = ACTIONS(2532), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_LT_LT_DASH] = ACTIONS(2532), + [anon_sym_LT_LT_LT] = ACTIONS(2532), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2534), + }, + [866] = { + [sym_file_redirect] = STATE(866), + [sym_heredoc_redirect] = STATE(866), + [sym_herestring_redirect] = STATE(866), + [aux_sym_redirected_statement_repeat1] = STATE(866), + [sym_file_descriptor] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_SEMI_SEMI] = ACTIONS(2542), + [anon_sym_PIPE_AMP] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_GT] = ACTIONS(3230), + [anon_sym_GT_GT] = ACTIONS(3233), + [anon_sym_AMP_GT] = ACTIONS(3230), + [anon_sym_AMP_GT_GT] = ACTIONS(3233), + [anon_sym_LT_AMP] = ACTIONS(3233), + [anon_sym_GT_AMP] = ACTIONS(3233), + [anon_sym_LT_LT] = ACTIONS(3236), + [anon_sym_LT_LT_DASH] = ACTIONS(3239), + [anon_sym_LT_LT_LT] = ACTIONS(3242), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2547), + }, + [867] = { + [sym_file_descriptor] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(2566), + [anon_sym_EQ_EQ] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2566), + [sym_raw_string] = ACTIONS(2564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2564), + [anon_sym_LT_LPAREN] = ACTIONS(2564), + [anon_sym_GT_LPAREN] = ACTIONS(2564), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2566), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [868] = { + [aux_sym_concatenation_repeat1] = STATE(337), + [sym_file_descriptor] = ACTIONS(2568), + [sym__concat] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_SEMI_SEMI] = ACTIONS(2568), + [anon_sym_PIPE_AMP] = ACTIONS(2568), + [anon_sym_AMP_AMP] = ACTIONS(2568), + [anon_sym_PIPE_PIPE] = ACTIONS(2568), + [anon_sym_EQ_TILDE] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_AMP_GT] = ACTIONS(2570), + [anon_sym_AMP_GT_GT] = ACTIONS(2568), + [anon_sym_LT_AMP] = ACTIONS(2568), + [anon_sym_GT_AMP] = ACTIONS(2568), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_LT_LT_DASH] = ACTIONS(2568), + [anon_sym_LT_LT_LT] = ACTIONS(2568), + [sym__special_characters] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2568), + [anon_sym_DOLLAR] = ACTIONS(2570), + [sym_raw_string] = ACTIONS(2568), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2568), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2568), + [anon_sym_BQUOTE] = ACTIONS(2568), + [anon_sym_LT_LPAREN] = ACTIONS(2568), + [anon_sym_GT_LPAREN] = ACTIONS(2568), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2570), + [anon_sym_LF] = ACTIONS(2568), + [anon_sym_AMP] = ACTIONS(2570), + }, + [869] = { + [aux_sym_concatenation_repeat1] = STATE(337), + [sym_file_descriptor] = ACTIONS(2564), + [sym__concat] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(2566), + [anon_sym_EQ_EQ] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2566), + [sym_raw_string] = ACTIONS(2564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2564), + [anon_sym_LT_LPAREN] = ACTIONS(2564), + [anon_sym_GT_LPAREN] = ACTIONS(2564), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2566), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [870] = { + [sym_concatenation] = STATE(870), + [sym_string] = STATE(364), + [sym_simple_expansion] = STATE(364), + [sym_string_expansion] = STATE(364), + [sym_expansion] = STATE(364), + [sym_command_substitution] = STATE(364), + [sym_process_substitution] = STATE(364), + [aux_sym_command_repeat2] = STATE(870), + [sym_file_descriptor] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(3245), + [anon_sym_EQ_EQ] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3254), + [sym_raw_string] = ACTIONS(3257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3263), + [anon_sym_BQUOTE] = ACTIONS(3266), + [anon_sym_LT_LPAREN] = ACTIONS(3269), + [anon_sym_GT_LPAREN] = ACTIONS(3269), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3272), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [871] = { + [sym_concatenation] = STATE(870), + [sym_string] = STATE(364), + [sym_simple_expansion] = STATE(364), + [sym_string_expansion] = STATE(364), + [sym_expansion] = STATE(364), + [sym_command_substitution] = STATE(364), + [sym_process_substitution] = STATE(364), + [aux_sym_command_repeat2] = STATE(870), + [sym_file_descriptor] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym_PIPE] = ACTIONS(2630), + [anon_sym_SEMI_SEMI] = ACTIONS(2628), + [anon_sym_PIPE_AMP] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_EQ_TILDE] = ACTIONS(667), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_GT] = ACTIONS(2630), + [anon_sym_GT_GT] = ACTIONS(2628), + [anon_sym_AMP_GT] = ACTIONS(2630), + [anon_sym_AMP_GT_GT] = ACTIONS(2628), + [anon_sym_LT_AMP] = ACTIONS(2628), + [anon_sym_GT_AMP] = ACTIONS(2628), + [anon_sym_LT_LT] = ACTIONS(2630), + [anon_sym_LT_LT_DASH] = ACTIONS(2628), + [anon_sym_LT_LT_LT] = ACTIONS(2628), + [sym__special_characters] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(673), + [anon_sym_LF] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2630), + }, + [872] = { + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(3275), + [anon_sym_PLUS_EQ] = ACTIONS(3275), + [sym_comment] = ACTIONS(57), + }, + [873] = { + [sym__simple_heredoc_body] = ACTIONS(3277), + [sym__heredoc_body_beginning] = ACTIONS(3277), + [sym_file_descriptor] = ACTIONS(3277), + [ts_builtin_sym_end] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_done] = ACTIONS(3277), + [anon_sym_fi] = ACTIONS(3277), + [anon_sym_elif] = ACTIONS(3277), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_esac] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3279), + [anon_sym_RPAREN] = ACTIONS(3277), + [anon_sym_SEMI_SEMI] = ACTIONS(3277), + [anon_sym_PIPE_AMP] = ACTIONS(3277), + [anon_sym_AMP_AMP] = ACTIONS(3277), + [anon_sym_PIPE_PIPE] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3279), + [anon_sym_GT_GT] = ACTIONS(3277), + [anon_sym_AMP_GT] = ACTIONS(3279), + [anon_sym_AMP_GT_GT] = ACTIONS(3277), + [anon_sym_LT_AMP] = ACTIONS(3277), + [anon_sym_GT_AMP] = ACTIONS(3277), + [anon_sym_LT_LT] = ACTIONS(3279), + [anon_sym_LT_LT_DASH] = ACTIONS(3277), + [anon_sym_LT_LT_LT] = ACTIONS(3277), + [anon_sym_BQUOTE] = ACTIONS(3277), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3277), + [anon_sym_AMP] = ACTIONS(3279), + }, + [874] = { + [sym__terminated_statement] = STATE(1476), + [sym_redirected_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_c_style_for_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_function_definition] = STATE(76), + [sym_compound_statement] = STATE(76), + [sym_subshell] = STATE(76), + [sym_pipeline] = STATE(76), + [sym_list] = STATE(76), + [sym_negated_command] = STATE(76), + [sym_test_command] = STATE(76), + [sym_declaration_command] = STATE(76), + [sym_unset_command] = STATE(76), + [sym_command] = STATE(76), + [sym_command_name] = STATE(77), + [sym_variable_assignment] = STATE(78), + [sym_subscript] = STATE(79), + [sym_file_redirect] = STATE(81), + [sym_concatenation] = STATE(80), + [sym_string] = STATE(69), + [sym_simple_expansion] = STATE(69), + [sym_string_expansion] = STATE(69), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_process_substitution] = STATE(69), + [aux_sym_command_repeat1] = STATE(81), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [anon_sym_LPAREN_LPAREN] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_if] = ACTIONS(105), + [anon_sym_case] = ACTIONS(107), + [anon_sym_function] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(119), + [anon_sym_declare] = ACTIONS(121), + [anon_sym_typeset] = ACTIONS(121), + [anon_sym_export] = ACTIONS(121), + [anon_sym_readonly] = ACTIONS(121), + [anon_sym_local] = ACTIONS(121), + [anon_sym_unset] = ACTIONS(123), + [anon_sym_unsetenv] = ACTIONS(123), + [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(125), + [anon_sym_DQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [sym_raw_string] = ACTIONS(131), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(139), + [anon_sym_GT_LPAREN] = ACTIONS(139), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), + }, + [875] = { + [sym__statements] = STATE(1490), + [sym_redirected_statement] = STATE(1491), + [sym_for_statement] = STATE(1491), + [sym_c_style_for_statement] = STATE(1491), + [sym_while_statement] = STATE(1491), + [sym_if_statement] = STATE(1491), + [sym_case_statement] = STATE(1491), + [sym_function_definition] = STATE(1491), + [sym_compound_statement] = STATE(1491), + [sym_subshell] = STATE(1491), + [sym_pipeline] = STATE(1491), + [sym_list] = STATE(1491), + [sym_negated_command] = STATE(1491), + [sym_test_command] = STATE(1491), + [sym_declaration_command] = STATE(1491), + [sym_unset_command] = STATE(1491), + [sym_command] = STATE(1491), + [sym_command_name] = STATE(1492), + [sym_variable_assignment] = STATE(1493), + [sym_subscript] = STATE(1494), + [sym_file_redirect] = STATE(1497), + [sym_concatenation] = STATE(1495), + [sym_string] = STATE(1484), + [sym_simple_expansion] = STATE(1484), + [sym_string_expansion] = STATE(1484), + [sym_expansion] = STATE(1484), + [sym_command_substitution] = STATE(1484), + [sym_process_substitution] = STATE(1484), + [aux_sym__statements_repeat1] = STATE(1496), + [aux_sym_command_repeat1] = STATE(1497), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(3281), + [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(3283), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(3287), + [anon_sym_typeset] = ACTIONS(3287), + [anon_sym_export] = ACTIONS(3287), + [anon_sym_readonly] = ACTIONS(3287), + [anon_sym_local] = ACTIONS(3287), + [anon_sym_unset] = ACTIONS(3289), + [anon_sym_unsetenv] = ACTIONS(3289), + [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(3291), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(3297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3301), + [anon_sym_BQUOTE] = ACTIONS(3303), + [anon_sym_LT_LPAREN] = ACTIONS(3305), + [anon_sym_GT_LPAREN] = ACTIONS(3305), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3307), + }, + [876] = { + [sym_subshell] = STATE(140), + [sym_test_command] = STATE(140), + [sym_command] = STATE(140), + [sym_command_name] = STATE(891), + [sym_variable_assignment] = STATE(897), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(897), + [sym_concatenation] = STATE(894), + [sym_string] = STATE(882), + [sym_simple_expansion] = STATE(882), + [sym_string_expansion] = STATE(882), + [sym_expansion] = STATE(882), + [sym_command_substitution] = STATE(882), + [sym_process_substitution] = STATE(882), + [aux_sym_command_repeat1] = STATE(897), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(223), + [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(1773), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_DOLLAR] = ACTIONS(1777), + [sym_raw_string] = ACTIONS(1779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1783), + [anon_sym_BQUOTE] = ACTIONS(1785), + [anon_sym_LT_LPAREN] = ACTIONS(1787), + [anon_sym_GT_LPAREN] = ACTIONS(1787), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1779), + }, + [877] = { + [sym_variable_assignment] = STATE(1508), + [sym_subscript] = STATE(1507), + [sym_concatenation] = STATE(1508), + [sym_string] = STATE(1502), + [sym_simple_expansion] = STATE(1502), + [sym_string_expansion] = STATE(1502), + [sym_expansion] = STATE(1502), + [sym_command_substitution] = STATE(1502), + [sym_process_substitution] = STATE(1502), + [aux_sym_declaration_command_repeat1] = STATE(1508), + [sym__simple_heredoc_body] = ACTIONS(259), + [sym__heredoc_body_beginning] = ACTIONS(259), + [sym_file_descriptor] = ACTIONS(259), + [sym_variable_name] = ACTIONS(3309), + [anon_sym_SEMI] = ACTIONS(263), + [anon_sym_fi] = ACTIONS(263), + [anon_sym_elif] = ACTIONS(263), + [anon_sym_else] = ACTIONS(263), + [anon_sym_PIPE] = ACTIONS(263), + [anon_sym_SEMI_SEMI] = ACTIONS(259), + [anon_sym_PIPE_AMP] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(259), + [anon_sym_PIPE_PIPE] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(263), + [anon_sym_GT] = ACTIONS(263), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_AMP_GT] = ACTIONS(263), + [anon_sym_AMP_GT_GT] = ACTIONS(259), + [anon_sym_LT_AMP] = ACTIONS(259), + [anon_sym_GT_AMP] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(263), + [anon_sym_LT_LT_DASH] = ACTIONS(259), + [anon_sym_LT_LT_LT] = ACTIONS(259), + [sym__special_characters] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(3313), + [anon_sym_DOLLAR] = ACTIONS(3315), + [sym_raw_string] = ACTIONS(3317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3319), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3321), + [anon_sym_BQUOTE] = ACTIONS(3323), + [anon_sym_LT_LPAREN] = ACTIONS(3325), + [anon_sym_GT_LPAREN] = ACTIONS(3325), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3327), + [sym_word] = ACTIONS(3329), + [anon_sym_LF] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(263), + }, + [878] = { + [sym_concatenation] = STATE(1517), + [sym_string] = STATE(1512), + [sym_simple_expansion] = STATE(1512), + [sym_string_expansion] = STATE(1512), + [sym_expansion] = STATE(1512), + [sym_command_substitution] = STATE(1512), + [sym_process_substitution] = STATE(1512), + [aux_sym_unset_command_repeat1] = STATE(1517), + [sym__simple_heredoc_body] = ACTIONS(285), + [sym__heredoc_body_beginning] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_fi] = ACTIONS(287), + [anon_sym_elif] = ACTIONS(287), + [anon_sym_else] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(287), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(287), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [sym__special_characters] = ACTIONS(3331), + [anon_sym_DQUOTE] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [sym_raw_string] = ACTIONS(3337), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3341), + [anon_sym_BQUOTE] = ACTIONS(3343), + [anon_sym_LT_LPAREN] = ACTIONS(3345), + [anon_sym_GT_LPAREN] = ACTIONS(3345), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3347), + [sym_word] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(287), + }, + [879] = { + [aux_sym_concatenation_repeat1] = STATE(1519), + [sym__simple_heredoc_body] = ACTIONS(325), + [sym__heredoc_body_beginning] = ACTIONS(325), + [sym_file_descriptor] = ACTIONS(325), + [sym__concat] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(329), + [anon_sym_fi] = ACTIONS(329), + [anon_sym_elif] = ACTIONS(329), + [anon_sym_else] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(325), + [anon_sym_PIPE_AMP] = ACTIONS(325), + [anon_sym_AMP_AMP] = ACTIONS(325), + [anon_sym_PIPE_PIPE] = ACTIONS(325), + [anon_sym_EQ_TILDE] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(329), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_LT_LT_DASH] = ACTIONS(325), + [anon_sym_LT_LT_LT] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(329), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(329), + [anon_sym_LF] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(329), + }, + [880] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(1522), + [anon_sym_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3355), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [881] = { + [sym_string] = STATE(1524), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_DOLLAR] = ACTIONS(3357), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_POUND] = ACTIONS(3357), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3361), + [anon_sym_STAR] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_QMARK] = ACTIONS(3363), + [anon_sym_0] = ACTIONS(3361), + [anon_sym__] = ACTIONS(3361), + }, + [882] = { + [aux_sym_concatenation_repeat1] = STATE(1519), + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [sym__concat] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_fi] = ACTIONS(355), + [anon_sym_elif] = ACTIONS(355), + [anon_sym_else] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), + }, + [883] = { + [sym_subscript] = STATE(1529), + [sym_variable_name] = ACTIONS(3365), + [anon_sym_BANG] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_POUND] = ACTIONS(3367), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3371), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AT] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_0] = ACTIONS(3371), + [anon_sym__] = ACTIONS(3371), + }, + [884] = { + [sym__statements] = STATE(1530), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [885] = { + [sym__statements] = STATE(1531), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [886] = { + [sym__statements] = STATE(1532), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [887] = { + [aux_sym_concatenation_repeat1] = STATE(1519), + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [sym__concat] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_fi] = ACTIONS(355), + [anon_sym_elif] = ACTIONS(355), + [anon_sym_else] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), + }, + [888] = { + [sym_elif_clause] = STATE(1535), + [sym_else_clause] = STATE(1534), + [aux_sym_if_statement_repeat1] = STATE(1535), + [anon_sym_fi] = ACTIONS(3375), + [anon_sym_elif] = ACTIONS(3377), + [anon_sym_else] = ACTIONS(3379), + [sym_comment] = ACTIONS(57), + }, + [889] = { + [sym_file_redirect] = STATE(1543), + [sym_heredoc_redirect] = STATE(1543), + [sym_heredoc_body] = STATE(1542), + [sym_herestring_redirect] = STATE(1543), + [aux_sym_redirected_statement_repeat1] = STATE(1543), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(3381), + [anon_sym_SEMI] = ACTIONS(3383), + [anon_sym_fi] = ACTIONS(393), + [anon_sym_elif] = ACTIONS(393), + [anon_sym_else] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(3385), + [anon_sym_SEMI_SEMI] = ACTIONS(3387), + [anon_sym_PIPE_AMP] = ACTIONS(3389), + [anon_sym_AMP_AMP] = ACTIONS(3391), + [anon_sym_PIPE_PIPE] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_GT] = ACTIONS(3393), + [anon_sym_GT_GT] = ACTIONS(3395), + [anon_sym_AMP_GT] = ACTIONS(3393), + [anon_sym_AMP_GT_GT] = ACTIONS(3395), + [anon_sym_LT_AMP] = ACTIONS(3395), + [anon_sym_GT_AMP] = ACTIONS(3395), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(3397), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3383), + }, + [890] = { + [anon_sym_fi] = ACTIONS(3375), + [sym_comment] = ACTIONS(57), + }, + [891] = { + [sym_concatenation] = STATE(1547), + [sym_string] = STATE(1546), + [sym_simple_expansion] = STATE(1546), + [sym_string_expansion] = STATE(1546), + [sym_expansion] = STATE(1546), + [sym_command_substitution] = STATE(1546), + [sym_process_substitution] = STATE(1546), + [aux_sym_command_repeat2] = STATE(1547), + [sym__simple_heredoc_body] = ACTIONS(415), + [sym__heredoc_body_beginning] = ACTIONS(415), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_fi] = ACTIONS(417), + [anon_sym_elif] = ACTIONS(417), + [anon_sym_else] = ACTIONS(417), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(415), + [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(3399), + [anon_sym_EQ_EQ] = ACTIONS(3399), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(415), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(415), + [anon_sym_LT_AMP] = ACTIONS(415), + [anon_sym_GT_AMP] = ACTIONS(415), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(415), + [anon_sym_LT_LT_LT] = ACTIONS(415), + [sym__special_characters] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_DOLLAR] = ACTIONS(1777), + [sym_raw_string] = ACTIONS(3403), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1783), + [anon_sym_BQUOTE] = ACTIONS(1785), + [anon_sym_LT_LPAREN] = ACTIONS(1787), + [anon_sym_GT_LPAREN] = ACTIONS(1787), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3405), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), + }, + [892] = { + [sym_file_redirect] = STATE(1543), + [sym_heredoc_redirect] = STATE(1543), + [sym_heredoc_body] = STATE(1542), + [sym_herestring_redirect] = STATE(1543), + [aux_sym_redirected_statement_repeat1] = STATE(1543), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(3383), + [anon_sym_fi] = ACTIONS(3219), + [anon_sym_elif] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3385), + [anon_sym_SEMI_SEMI] = ACTIONS(3387), + [anon_sym_PIPE_AMP] = ACTIONS(3389), + [anon_sym_AMP_AMP] = ACTIONS(3391), + [anon_sym_PIPE_PIPE] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(3397), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3383), + }, + [893] = { + [anon_sym_EQ] = ACTIONS(3275), + [anon_sym_PLUS_EQ] = ACTIONS(3275), + [sym_comment] = ACTIONS(57), + }, + [894] = { + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_fi] = ACTIONS(355), + [anon_sym_elif] = ACTIONS(355), + [anon_sym_else] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), + }, + [895] = { + [sym_redirected_statement] = STATE(1548), + [sym_for_statement] = STATE(1548), + [sym_c_style_for_statement] = STATE(1548), + [sym_while_statement] = STATE(1548), + [sym_if_statement] = STATE(1548), + [sym_case_statement] = STATE(1548), + [sym_function_definition] = STATE(1548), + [sym_compound_statement] = STATE(1548), + [sym_subshell] = STATE(1548), + [sym_pipeline] = STATE(1548), + [sym_list] = STATE(1548), + [sym_negated_command] = STATE(1548), + [sym_test_command] = STATE(1548), + [sym_declaration_command] = STATE(1548), + [sym_unset_command] = STATE(1548), + [sym_command] = STATE(1548), + [sym_command_name] = STATE(891), + [sym_variable_assignment] = STATE(1549), + [sym_subscript] = STATE(893), + [sym_file_redirect] = STATE(897), + [sym_concatenation] = STATE(894), + [sym_string] = STATE(882), + [sym_simple_expansion] = STATE(882), + [sym_string_expansion] = STATE(882), + [sym_expansion] = STATE(882), + [sym_command_substitution] = STATE(882), + [sym_process_substitution] = STATE(882), + [aux_sym__statements_repeat1] = STATE(236), + [aux_sym_command_repeat1] = STATE(897), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(1759), + [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(1767), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(1769), + [anon_sym_typeset] = ACTIONS(1769), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_readonly] = ACTIONS(1769), + [anon_sym_local] = ACTIONS(1769), + [anon_sym_unset] = ACTIONS(1771), + [anon_sym_unsetenv] = ACTIONS(1771), + [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(1773), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_DOLLAR] = ACTIONS(1777), + [sym_raw_string] = ACTIONS(1779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1783), + [anon_sym_BQUOTE] = ACTIONS(1785), + [anon_sym_LT_LPAREN] = ACTIONS(1787), + [anon_sym_GT_LPAREN] = ACTIONS(1787), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1789), + }, + [896] = { + [sym_elif_clause] = STATE(1550), + [sym_else_clause] = STATE(1534), + [aux_sym_if_statement_repeat1] = STATE(1550), + [anon_sym_fi] = ACTIONS(3375), + [anon_sym_elif] = ACTIONS(3377), + [anon_sym_else] = ACTIONS(3379), + [sym_comment] = ACTIONS(57), + }, + [897] = { + [sym_command_name] = STATE(1551), + [sym_variable_assignment] = STATE(238), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(238), + [sym_concatenation] = STATE(894), + [sym_string] = STATE(882), + [sym_simple_expansion] = STATE(882), + [sym_string_expansion] = STATE(882), + [sym_expansion] = STATE(882), + [sym_command_substitution] = STATE(882), + [sym_process_substitution] = STATE(882), + [aux_sym_command_repeat1] = STATE(238), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(223), + [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(3407), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_DOLLAR] = ACTIONS(1777), + [sym_raw_string] = ACTIONS(1779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1783), + [anon_sym_BQUOTE] = ACTIONS(1785), + [anon_sym_LT_LPAREN] = ACTIONS(1787), + [anon_sym_GT_LPAREN] = ACTIONS(1787), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1779), + }, + [898] = { + [sym__concat] = ACTIONS(2292), + [anon_sym_in] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2292), + }, + [899] = { + [sym_case_item] = STATE(1557), + [sym_last_case_item] = STATE(1555), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(1557), + [anon_sym_esac] = ACTIONS(3409), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3415), + }, + [900] = { + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_SEMI_SEMI] = ACTIONS(3419), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3419), + }, + [901] = { + [aux_sym_concatenation_repeat1] = STATE(901), + [sym__concat] = ACTIONS(3421), + [anon_sym_in] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2292), + }, + [902] = { + [sym__concat] = ACTIONS(2299), + [anon_sym_in] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2299), + }, + [903] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(3424), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [904] = { + [sym_case_item] = STATE(1562), + [sym_last_case_item] = STATE(1561), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(1562), + [anon_sym_esac] = ACTIONS(3426), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3415), + }, + [905] = { + [anon_sym_SEMI] = ACTIONS(3428), + [anon_sym_SEMI_SEMI] = ACTIONS(3430), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3430), + }, + [906] = { + [sym_concatenation] = STATE(1567), + [sym_string] = STATE(1566), + [sym_simple_expansion] = STATE(1566), + [sym_string_expansion] = STATE(1566), + [sym_expansion] = STATE(1566), + [sym_command_substitution] = STATE(1566), + [sym_process_substitution] = STATE(1566), + [anon_sym_RBRACE] = ACTIONS(3432), + [sym__special_characters] = ACTIONS(3434), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(3436), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3436), + }, + [907] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(3438), + [sym_comment] = ACTIONS(57), + }, + [908] = { + [sym_concatenation] = STATE(1571), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1571), + [anon_sym_RBRACE] = ACTIONS(3440), + [anon_sym_EQ] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3446), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_DASH] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [909] = { + [sym_concatenation] = STATE(1573), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1573), + [anon_sym_RBRACE] = ACTIONS(3432), + [anon_sym_EQ] = ACTIONS(3448), + [anon_sym_DASH] = ACTIONS(3448), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3450), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3452), + [anon_sym_COLON] = ACTIONS(3448), + [anon_sym_COLON_QMARK] = ACTIONS(3448), + [anon_sym_COLON_DASH] = ACTIONS(3448), + [anon_sym_PERCENT] = ACTIONS(3448), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [910] = { + [sym__concat] = ACTIONS(2392), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2392), + }, + [911] = { + [sym_concatenation] = STATE(1576), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1576), + [sym_regex] = ACTIONS(3454), + [anon_sym_RBRACE] = ACTIONS(3456), + [anon_sym_EQ] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3460), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(3458), + [anon_sym_COLON_QMARK] = ACTIONS(3458), + [anon_sym_COLON_DASH] = ACTIONS(3458), + [anon_sym_PERCENT] = ACTIONS(3458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [912] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(3456), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [913] = { + [sym__concat] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2440), + }, + [914] = { + [sym_concatenation] = STATE(1573), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1573), + [sym_regex] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3432), + [anon_sym_EQ] = ACTIONS(3448), + [anon_sym_DASH] = ACTIONS(3448), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3450), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(3448), + [anon_sym_COLON_QMARK] = ACTIONS(3448), + [anon_sym_COLON_DASH] = ACTIONS(3448), + [anon_sym_PERCENT] = ACTIONS(3448), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [915] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(3432), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [916] = { + [sym__concat] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_SEMI_SEMI] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2446), + }, + [917] = { + [sym__concat] = ACTIONS(2484), + [anon_sym_in] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2484), + }, + [918] = { + [sym_compound_statement] = STATE(1578), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), + }, + [919] = { + [aux_sym_concatenation_repeat1] = STATE(1579), + [sym__simple_heredoc_body] = ACTIONS(1393), + [sym__heredoc_body_beginning] = ACTIONS(1393), + [sym_file_descriptor] = ACTIONS(1393), + [sym__concat] = ACTIONS(1395), + [sym_variable_name] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_RPAREN] = ACTIONS(1393), + [anon_sym_SEMI_SEMI] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_AMP_GT] = ACTIONS(1397), + [anon_sym_AMP_GT_GT] = ACTIONS(1393), + [anon_sym_LT_AMP] = ACTIONS(1393), + [anon_sym_GT_AMP] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_LT_LT_DASH] = ACTIONS(1393), + [anon_sym_LT_LT_LT] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1397), + [sym_raw_string] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1393), + [anon_sym_GT_LPAREN] = ACTIONS(1393), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1397), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1397), + }, + [920] = { + [aux_sym_concatenation_repeat1] = STATE(1579), + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym__concat] = ACTIONS(1395), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [921] = { + [sym_concatenation] = STATE(1064), + [sym_string] = STATE(1581), + [sym_array] = STATE(1064), + [sym_simple_expansion] = STATE(1581), + [sym_string_expansion] = STATE(1581), + [sym_expansion] = STATE(1581), + [sym_command_substitution] = STATE(1581), + [sym_process_substitution] = STATE(1581), + [sym__empty_value] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [sym__special_characters] = ACTIONS(3464), + [anon_sym_DQUOTE] = ACTIONS(267), + [anon_sym_DOLLAR] = ACTIONS(269), + [sym_raw_string] = ACTIONS(3466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(273), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(277), + [anon_sym_LT_LPAREN] = ACTIONS(279), + [anon_sym_GT_LPAREN] = ACTIONS(279), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3466), + }, + [922] = { + [aux_sym_concatenation_repeat1] = STATE(1582), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(935), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_RPAREN] = ACTIONS(1043), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1045), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [923] = { + [sym_variable_assignment] = STATE(923), + [sym_subscript] = STATE(393), + [sym_concatenation] = STATE(923), + [sym_string] = STATE(392), + [sym_simple_expansion] = STATE(392), + [sym_string_expansion] = STATE(392), + [sym_expansion] = STATE(392), + [sym_command_substitution] = STATE(392), + [sym_process_substitution] = STATE(392), + [aux_sym_declaration_command_repeat1] = STATE(923), + [sym__simple_heredoc_body] = ACTIONS(2149), + [sym__heredoc_body_beginning] = ACTIONS(2149), + [sym_file_descriptor] = ACTIONS(2149), + [sym_variable_name] = ACTIONS(3468), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2149), + [anon_sym_SEMI_SEMI] = ACTIONS(2149), + [anon_sym_PIPE_AMP] = ACTIONS(2149), + [anon_sym_AMP_AMP] = ACTIONS(2149), + [anon_sym_PIPE_PIPE] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_GT] = ACTIONS(2154), + [anon_sym_GT_GT] = ACTIONS(2149), + [anon_sym_AMP_GT] = ACTIONS(2154), + [anon_sym_AMP_GT_GT] = ACTIONS(2149), + [anon_sym_LT_AMP] = ACTIONS(2149), + [anon_sym_GT_AMP] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2154), + [anon_sym_LT_LT_DASH] = ACTIONS(2149), + [anon_sym_LT_LT_LT] = ACTIONS(2149), + [sym__special_characters] = ACTIONS(3471), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_DOLLAR] = ACTIONS(2162), + [sym_raw_string] = ACTIONS(3474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2168), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2171), + [anon_sym_BQUOTE] = ACTIONS(2174), + [anon_sym_LT_LPAREN] = ACTIONS(2177), + [anon_sym_GT_LPAREN] = ACTIONS(2177), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3477), + [sym_word] = ACTIONS(3480), + [anon_sym_LF] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2154), + }, + [924] = { + [aux_sym_concatenation_repeat1] = STATE(1583), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_RPAREN] = ACTIONS(1043), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1045), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [925] = { + [sym_concatenation] = STATE(925), + [sym_string] = STATE(396), + [sym_simple_expansion] = STATE(396), + [sym_string_expansion] = STATE(396), + [sym_expansion] = STATE(396), + [sym_command_substitution] = STATE(396), + [sym_process_substitution] = STATE(396), + [aux_sym_unset_command_repeat1] = STATE(925), + [sym__simple_heredoc_body] = ACTIONS(2222), + [sym__heredoc_body_beginning] = ACTIONS(2222), + [sym_file_descriptor] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_RPAREN] = ACTIONS(2222), + [anon_sym_SEMI_SEMI] = ACTIONS(2222), + [anon_sym_PIPE_AMP] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2222), + [anon_sym_AMP_GT] = ACTIONS(2224), + [anon_sym_AMP_GT_GT] = ACTIONS(2222), + [anon_sym_LT_AMP] = ACTIONS(2222), + [anon_sym_GT_AMP] = ACTIONS(2222), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_LT_LT_DASH] = ACTIONS(2222), + [anon_sym_LT_LT_LT] = ACTIONS(2222), + [sym__special_characters] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2232), + [sym_raw_string] = ACTIONS(3486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2241), + [anon_sym_BQUOTE] = ACTIONS(2244), + [anon_sym_LT_LPAREN] = ACTIONS(2247), + [anon_sym_GT_LPAREN] = ACTIONS(2247), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3489), + [sym_word] = ACTIONS(3492), + [anon_sym_LF] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2224), + }, + [926] = { + [aux_sym_concatenation_repeat1] = STATE(926), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [927] = { + [sym_concatenation] = STATE(1207), + [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(3495), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(3497), + [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(3497), + }, + [928] = { + [sym_file_redirect] = STATE(405), + [sym_heredoc_redirect] = STATE(405), + [sym_herestring_redirect] = STATE(405), + [aux_sym_redirected_statement_repeat1] = STATE(405), + [sym__simple_heredoc_body] = ACTIONS(2516), + [sym__heredoc_body_beginning] = ACTIONS(2516), + [sym_file_descriptor] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_RPAREN] = ACTIONS(2516), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), + }, + [929] = { + [sym_file_redirect] = STATE(405), + [sym_heredoc_redirect] = STATE(405), + [sym_herestring_redirect] = STATE(405), + [aux_sym_redirected_statement_repeat1] = STATE(405), + [sym__simple_heredoc_body] = ACTIONS(2516), + [sym__heredoc_body_beginning] = ACTIONS(2516), + [sym_file_descriptor] = ACTIONS(2516), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_RPAREN] = ACTIONS(2516), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), + }, + [930] = { + [sym_file_redirect] = STATE(405), + [sym_heredoc_redirect] = STATE(405), + [sym_herestring_redirect] = STATE(405), + [aux_sym_redirected_statement_repeat1] = STATE(405), + [sym__simple_heredoc_body] = ACTIONS(2520), + [sym__heredoc_body_beginning] = ACTIONS(2520), + [sym_file_descriptor] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(2520), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(743), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2520), + [anon_sym_AMP_GT] = ACTIONS(2522), + [anon_sym_AMP_GT_GT] = ACTIONS(2520), + [anon_sym_LT_AMP] = ACTIONS(2520), + [anon_sym_GT_AMP] = ACTIONS(2520), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + }, + [931] = { + [sym_file_redirect] = STATE(405), + [sym_heredoc_redirect] = STATE(405), + [sym_herestring_redirect] = STATE(405), + [aux_sym_redirected_statement_repeat1] = STATE(405), + [sym__simple_heredoc_body] = ACTIONS(2520), + [sym__heredoc_body_beginning] = ACTIONS(2520), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(2520), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(743), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + }, + [932] = { + [aux_sym_concatenation_repeat1] = STATE(1586), + [sym__simple_heredoc_body] = ACTIONS(1009), + [sym__heredoc_body_beginning] = ACTIONS(1009), + [sym_file_descriptor] = ACTIONS(1009), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_RPAREN] = ACTIONS(1009), + [anon_sym_SEMI_SEMI] = ACTIONS(1009), + [anon_sym_PIPE_AMP] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1009), + [anon_sym_PIPE_PIPE] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_GT] = ACTIONS(1013), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(1013), + [anon_sym_AMP_GT_GT] = ACTIONS(1009), + [anon_sym_LT_AMP] = ACTIONS(1009), + [anon_sym_GT_AMP] = ACTIONS(1009), + [anon_sym_LT_LT] = ACTIONS(1013), + [anon_sym_LT_LT_DASH] = ACTIONS(1009), + [anon_sym_LT_LT_LT] = ACTIONS(1009), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1013), + }, + [933] = { + [aux_sym_concatenation_repeat1] = STATE(1586), + [sym__simple_heredoc_body] = ACTIONS(1027), + [sym__heredoc_body_beginning] = ACTIONS(1027), + [sym_file_descriptor] = ACTIONS(1027), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1027), + [anon_sym_SEMI_SEMI] = ACTIONS(1027), + [anon_sym_PIPE_AMP] = ACTIONS(1027), + [anon_sym_AMP_AMP] = ACTIONS(1027), + [anon_sym_PIPE_PIPE] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_AMP_GT] = ACTIONS(1029), + [anon_sym_AMP_GT_GT] = ACTIONS(1027), + [anon_sym_LT_AMP] = ACTIONS(1027), + [anon_sym_GT_AMP] = ACTIONS(1027), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_LT_LT_DASH] = ACTIONS(1027), + [anon_sym_LT_LT_LT] = ACTIONS(1027), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + }, + [934] = { + [aux_sym_concatenation_repeat1] = STATE(1586), + [sym__simple_heredoc_body] = ACTIONS(2528), + [sym__heredoc_body_beginning] = ACTIONS(2528), + [sym_file_descriptor] = ACTIONS(2528), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_PIPE] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(2528), + [anon_sym_SEMI_SEMI] = ACTIONS(2528), + [anon_sym_PIPE_AMP] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_GT] = ACTIONS(2530), + [anon_sym_GT_GT] = ACTIONS(2528), + [anon_sym_AMP_GT] = ACTIONS(2530), + [anon_sym_AMP_GT_GT] = ACTIONS(2528), + [anon_sym_LT_AMP] = ACTIONS(2528), + [anon_sym_GT_AMP] = ACTIONS(2528), + [anon_sym_LT_LT] = ACTIONS(2530), + [anon_sym_LT_LT_DASH] = ACTIONS(2528), + [anon_sym_LT_LT_LT] = ACTIONS(2528), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2530), + }, + [935] = { + [aux_sym_concatenation_repeat1] = STATE(1586), + [sym__simple_heredoc_body] = ACTIONS(2532), + [sym__heredoc_body_beginning] = ACTIONS(2532), + [sym_file_descriptor] = ACTIONS(2532), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_RPAREN] = ACTIONS(2532), + [anon_sym_SEMI_SEMI] = ACTIONS(2532), + [anon_sym_PIPE_AMP] = ACTIONS(2532), + [anon_sym_AMP_AMP] = ACTIONS(2532), + [anon_sym_PIPE_PIPE] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_AMP_GT] = ACTIONS(2534), + [anon_sym_AMP_GT_GT] = ACTIONS(2532), + [anon_sym_LT_AMP] = ACTIONS(2532), + [anon_sym_GT_AMP] = ACTIONS(2532), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_LT_LT_DASH] = ACTIONS(2532), + [anon_sym_LT_LT_LT] = ACTIONS(2532), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2534), + }, + [936] = { + [sym_file_redirect] = STATE(936), + [sym_heredoc_redirect] = STATE(936), + [sym_herestring_redirect] = STATE(936), + [aux_sym_redirected_statement_repeat1] = STATE(936), + [sym__simple_heredoc_body] = ACTIONS(2542), + [sym__heredoc_body_beginning] = ACTIONS(2542), + [sym_file_descriptor] = ACTIONS(3499), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_RPAREN] = ACTIONS(2542), + [anon_sym_SEMI_SEMI] = ACTIONS(2542), + [anon_sym_PIPE_AMP] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(3502), + [anon_sym_GT] = ACTIONS(3502), + [anon_sym_GT_GT] = ACTIONS(3505), + [anon_sym_AMP_GT] = ACTIONS(3502), + [anon_sym_AMP_GT_GT] = ACTIONS(3505), + [anon_sym_LT_AMP] = ACTIONS(3505), + [anon_sym_GT_AMP] = ACTIONS(3505), + [anon_sym_LT_LT] = ACTIONS(2555), + [anon_sym_LT_LT_DASH] = ACTIONS(2558), + [anon_sym_LT_LT_LT] = ACTIONS(3508), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2547), + }, + [937] = { + [aux_sym_concatenation_repeat1] = STATE(398), + [sym__simple_heredoc_body] = ACTIONS(2568), + [sym__heredoc_body_beginning] = ACTIONS(2568), + [sym_file_descriptor] = ACTIONS(2568), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_RPAREN] = ACTIONS(2568), + [anon_sym_SEMI_SEMI] = ACTIONS(2568), + [anon_sym_PIPE_AMP] = ACTIONS(2568), + [anon_sym_AMP_AMP] = ACTIONS(2568), + [anon_sym_PIPE_PIPE] = ACTIONS(2568), + [anon_sym_EQ_TILDE] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_AMP_GT] = ACTIONS(2570), + [anon_sym_AMP_GT_GT] = ACTIONS(2568), + [anon_sym_LT_AMP] = ACTIONS(2568), + [anon_sym_GT_AMP] = ACTIONS(2568), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_LT_LT_DASH] = ACTIONS(2568), + [anon_sym_LT_LT_LT] = ACTIONS(2568), + [sym__special_characters] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2568), + [anon_sym_DOLLAR] = ACTIONS(2570), + [sym_raw_string] = ACTIONS(2568), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2568), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2568), + [anon_sym_BQUOTE] = ACTIONS(2568), + [anon_sym_LT_LPAREN] = ACTIONS(2568), + [anon_sym_GT_LPAREN] = ACTIONS(2568), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2570), + [anon_sym_LF] = ACTIONS(2568), + [anon_sym_AMP] = ACTIONS(2570), + }, + [938] = { + [aux_sym_concatenation_repeat1] = STATE(398), + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_RPAREN] = ACTIONS(2564), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(2566), + [anon_sym_EQ_EQ] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2566), + [sym_raw_string] = ACTIONS(2564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2564), + [anon_sym_LT_LPAREN] = ACTIONS(2564), + [anon_sym_GT_LPAREN] = ACTIONS(2564), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2566), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [939] = { + [sym_concatenation] = STATE(939), + [sym_string] = STATE(408), + [sym_simple_expansion] = STATE(408), + [sym_string_expansion] = STATE(408), + [sym_expansion] = STATE(408), + [sym_command_substitution] = STATE(408), + [sym_process_substitution] = STATE(408), + [aux_sym_command_repeat2] = STATE(939), + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_RPAREN] = ACTIONS(2564), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(3511), + [anon_sym_EQ_EQ] = ACTIONS(3511), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(3514), + [anon_sym_DQUOTE] = ACTIONS(2578), + [anon_sym_DOLLAR] = ACTIONS(2581), + [sym_raw_string] = ACTIONS(3517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2587), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2590), + [anon_sym_BQUOTE] = ACTIONS(2593), + [anon_sym_LT_LPAREN] = ACTIONS(2596), + [anon_sym_GT_LPAREN] = ACTIONS(2596), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3520), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [940] = { + [sym_concatenation] = STATE(939), + [sym_string] = STATE(408), + [sym_simple_expansion] = STATE(408), + [sym_string_expansion] = STATE(408), + [sym_expansion] = STATE(408), + [sym_command_substitution] = STATE(408), + [sym_process_substitution] = STATE(408), + [aux_sym_command_repeat2] = STATE(939), + [sym__simple_heredoc_body] = ACTIONS(2628), + [sym__heredoc_body_beginning] = ACTIONS(2628), + [sym_file_descriptor] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym_PIPE] = ACTIONS(2630), + [anon_sym_RPAREN] = ACTIONS(2628), + [anon_sym_SEMI_SEMI] = ACTIONS(2628), + [anon_sym_PIPE_AMP] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_GT] = ACTIONS(2630), + [anon_sym_GT_GT] = ACTIONS(2628), + [anon_sym_AMP_GT] = ACTIONS(2630), + [anon_sym_AMP_GT_GT] = ACTIONS(2628), + [anon_sym_LT_AMP] = ACTIONS(2628), + [anon_sym_GT_AMP] = ACTIONS(2628), + [anon_sym_LT_LT] = ACTIONS(2630), + [anon_sym_LT_LT_DASH] = ACTIONS(2628), + [anon_sym_LT_LT_LT] = ACTIONS(2628), + [sym__special_characters] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(757), + [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(759), + [anon_sym_LF] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2630), + }, + [941] = { + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_RBRACE] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [942] = { + [sym_concatenation] = STATE(1588), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1588), + [anon_sym_RPAREN] = ACTIONS(3523), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [943] = { + [aux_sym_concatenation_repeat1] = STATE(1590), + [sym__simple_heredoc_body] = ACTIONS(1393), + [sym__heredoc_body_beginning] = ACTIONS(1393), + [sym_file_descriptor] = ACTIONS(1393), + [sym__concat] = ACTIONS(3525), + [sym_variable_name] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_SEMI_SEMI] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_AMP_GT] = ACTIONS(1397), + [anon_sym_AMP_GT_GT] = ACTIONS(1393), + [anon_sym_LT_AMP] = ACTIONS(1393), + [anon_sym_GT_AMP] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_LT_LT_DASH] = ACTIONS(1393), + [anon_sym_LT_LT_LT] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1397), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1397), + [sym_raw_string] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1393), + [anon_sym_GT_LPAREN] = ACTIONS(1393), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1397), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1397), + }, + [944] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(1593), + [anon_sym_DQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR] = ACTIONS(3529), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [945] = { + [sym_string] = STATE(1595), + [anon_sym_DASH] = ACTIONS(3531), + [anon_sym_DQUOTE] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(3531), + [sym_raw_string] = ACTIONS(3533), + [anon_sym_POUND] = ACTIONS(3531), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3535), + [anon_sym_STAR] = ACTIONS(3537), + [anon_sym_AT] = ACTIONS(3537), + [anon_sym_QMARK] = ACTIONS(3537), + [anon_sym_0] = ACTIONS(3535), + [anon_sym__] = ACTIONS(3535), + }, + [946] = { + [aux_sym_concatenation_repeat1] = STATE(1590), + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym__concat] = ACTIONS(3525), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_RBRACE] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [947] = { + [sym_subscript] = STATE(1600), + [sym_variable_name] = ACTIONS(3539), + [anon_sym_BANG] = ACTIONS(3541), + [anon_sym_DASH] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(3541), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3545), + [anon_sym_STAR] = ACTIONS(3547), + [anon_sym_AT] = ACTIONS(3547), + [anon_sym_QMARK] = ACTIONS(3547), + [anon_sym_0] = ACTIONS(3545), + [anon_sym__] = ACTIONS(3545), + }, + [948] = { + [sym__statements] = STATE(1601), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [949] = { + [sym__statements] = STATE(1602), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [950] = { + [sym__statements] = STATE(1603), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [951] = { + [sym__expression] = STATE(1605), + [sym_binary_expression] = STATE(1605), + [sym_unary_expression] = STATE(1605), + [sym_postfix_expression] = STATE(1605), + [sym_parenthesized_expression] = STATE(1605), + [sym_concatenation] = STATE(1605), + [sym_string] = STATE(261), + [sym_simple_expansion] = STATE(261), + [sym_string_expansion] = STATE(261), + [sym_expansion] = STATE(261), + [sym_command_substitution] = STATE(261), + [sym_process_substitution] = STATE(261), + [anon_sym_SEMI] = ACTIONS(3549), + [anon_sym_SEMI_SEMI] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(467), + [sym__special_characters] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(473), + [sym_raw_string] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_LT_LPAREN] = ACTIONS(483), + [anon_sym_GT_LPAREN] = ACTIONS(483), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(485), + [sym_test_operator] = ACTIONS(487), + [anon_sym_LF] = ACTIONS(3551), + [anon_sym_AMP] = ACTIONS(3551), + }, + [952] = { + [anon_sym_SEMI] = ACTIONS(3553), + [anon_sym_SEMI_SEMI] = ACTIONS(3555), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_PLUS_EQ] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1453), + [anon_sym_LF] = ACTIONS(3555), + [anon_sym_AMP] = ACTIONS(3553), + }, + [953] = { + [sym_concatenation] = STATE(1607), + [sym_string] = STATE(710), + [sym_simple_expansion] = STATE(710), + [sym_string_expansion] = STATE(710), + [sym_expansion] = STATE(710), + [sym_command_substitution] = STATE(710), + [sym_process_substitution] = STATE(710), + [aux_sym_for_statement_repeat1] = STATE(1607), + [sym__special_characters] = ACTIONS(1461), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_DOLLAR] = ACTIONS(1465), + [sym_raw_string] = ACTIONS(1467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1469), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1473), + [anon_sym_LT_LPAREN] = ACTIONS(1475), + [anon_sym_GT_LPAREN] = ACTIONS(1475), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1467), + }, + [954] = { + [sym_do_group] = STATE(1608), + [anon_sym_do] = ACTIONS(1907), + [sym_comment] = ACTIONS(57), + }, + [955] = { + [sym__simple_heredoc_body] = ACTIONS(1549), + [sym__heredoc_body_beginning] = ACTIONS(1549), + [sym_file_descriptor] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_SEMI_SEMI] = ACTIONS(1549), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_PIPE_AMP] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1549), + [anon_sym_PIPE_PIPE] = ACTIONS(1549), + [anon_sym_LT] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_GT_GT] = ACTIONS(1549), + [anon_sym_AMP_GT] = ACTIONS(1551), + [anon_sym_AMP_GT_GT] = ACTIONS(1549), + [anon_sym_LT_AMP] = ACTIONS(1549), + [anon_sym_GT_AMP] = ACTIONS(1549), + [anon_sym_LT_LT] = ACTIONS(1551), + [anon_sym_LT_LT_DASH] = ACTIONS(1549), + [anon_sym_LT_LT_LT] = ACTIONS(1549), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1551), + }, + [956] = { + [sym__statements] = STATE(1610), + [sym_redirected_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_c_style_for_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_case_statement] = STATE(847), + [sym_function_definition] = STATE(847), + [sym_compound_statement] = STATE(847), + [sym_subshell] = STATE(847), + [sym_pipeline] = STATE(847), + [sym_list] = STATE(847), + [sym_negated_command] = STATE(847), + [sym_test_command] = STATE(847), + [sym_declaration_command] = STATE(847), + [sym_unset_command] = STATE(847), + [sym_command] = STATE(847), + [sym_command_name] = STATE(848), + [sym_variable_assignment] = STATE(849), + [sym_subscript] = STATE(850), + [sym_file_redirect] = STATE(853), + [sym_concatenation] = STATE(851), + [sym_string] = STATE(840), + [sym_simple_expansion] = STATE(840), + [sym_string_expansion] = STATE(840), + [sym_expansion] = STATE(840), + [sym_command_substitution] = STATE(840), + [sym_process_substitution] = STATE(840), + [aux_sym__statements_repeat1] = STATE(852), + [aux_sym_command_repeat1] = STATE(853), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_done] = ACTIONS(3557), + [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(1709), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(1711), + [anon_sym_typeset] = ACTIONS(1711), + [anon_sym_export] = ACTIONS(1711), + [anon_sym_readonly] = ACTIONS(1711), + [anon_sym_local] = ACTIONS(1711), + [anon_sym_unset] = ACTIONS(1713), + [anon_sym_unsetenv] = ACTIONS(1713), + [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(1715), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1727), + [anon_sym_LT_LPAREN] = ACTIONS(1729), + [anon_sym_GT_LPAREN] = ACTIONS(1729), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1731), + }, + [957] = { + [sym__simple_heredoc_body] = ACTIONS(1733), + [sym__heredoc_body_beginning] = ACTIONS(1733), + [sym_file_descriptor] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1733), + [anon_sym_RBRACE] = 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), + }, + [958] = { + [sym__statements] = STATE(1612), + [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_elif_clause] = STATE(1614), + [sym_else_clause] = STATE(1613), + [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(891), + [sym_variable_assignment] = STATE(892), + [sym_subscript] = STATE(893), + [sym_file_redirect] = STATE(897), + [sym_concatenation] = STATE(894), + [sym_string] = STATE(882), + [sym_simple_expansion] = STATE(882), + [sym_string_expansion] = STATE(882), + [sym_expansion] = STATE(882), + [sym_command_substitution] = STATE(882), + [sym_process_substitution] = STATE(882), + [aux_sym__statements_repeat1] = STATE(895), + [aux_sym_if_statement_repeat1] = STATE(1614), + [aux_sym_command_repeat1] = STATE(897), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(1759), + [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(3559), + [anon_sym_elif] = ACTIONS(1763), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(1769), + [anon_sym_typeset] = ACTIONS(1769), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_readonly] = ACTIONS(1769), + [anon_sym_local] = ACTIONS(1769), + [anon_sym_unset] = ACTIONS(1771), + [anon_sym_unsetenv] = ACTIONS(1771), + [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(1773), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_DOLLAR] = ACTIONS(1777), + [sym_raw_string] = ACTIONS(1779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1783), + [anon_sym_BQUOTE] = ACTIONS(1785), + [anon_sym_LT_LPAREN] = ACTIONS(1787), + [anon_sym_GT_LPAREN] = ACTIONS(1787), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1789), + }, + [959] = { + [anon_sym_SEMI] = ACTIONS(3561), + [anon_sym_SEMI_SEMI] = ACTIONS(3563), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3563), + [anon_sym_AMP] = ACTIONS(3563), + }, + [960] = { + [anon_sym_in] = ACTIONS(3565), + [sym_comment] = ACTIONS(57), + }, + [961] = { + [anon_sym_SEMI] = ACTIONS(3567), + [anon_sym_SEMI_SEMI] = ACTIONS(3569), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3569), + [anon_sym_AMP] = ACTIONS(3569), + }, + [962] = { + [anon_sym_in] = ACTIONS(3571), + [sym_comment] = ACTIONS(57), + }, + [963] = { + [anon_sym_RPAREN] = ACTIONS(3573), + [sym_comment] = ACTIONS(57), + }, + [964] = { + [sym__simple_heredoc_body] = ACTIONS(1841), + [sym__heredoc_body_beginning] = ACTIONS(1841), + [sym_file_descriptor] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SEMI_SEMI] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_PIPE_AMP] = ACTIONS(1841), + [anon_sym_AMP_AMP] = ACTIONS(1841), + [anon_sym_PIPE_PIPE] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_GT_GT] = ACTIONS(1841), + [anon_sym_AMP_GT] = ACTIONS(1843), + [anon_sym_AMP_GT_GT] = ACTIONS(1841), + [anon_sym_LT_AMP] = ACTIONS(1841), + [anon_sym_GT_AMP] = ACTIONS(1841), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_LT_LT_DASH] = ACTIONS(1841), + [anon_sym_LT_LT_LT] = ACTIONS(1841), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1841), + [anon_sym_AMP] = ACTIONS(1843), + }, + [965] = { + [sym__simple_heredoc_body] = ACTIONS(1855), + [sym__heredoc_body_beginning] = ACTIONS(1855), + [sym_file_descriptor] = ACTIONS(1855), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_SEMI_SEMI] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1855), + [anon_sym_PIPE_AMP] = ACTIONS(1855), + [anon_sym_AMP_AMP] = ACTIONS(1855), + [anon_sym_PIPE_PIPE] = ACTIONS(1855), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_GT] = ACTIONS(1857), + [anon_sym_GT_GT] = ACTIONS(1855), + [anon_sym_AMP_GT] = ACTIONS(1857), + [anon_sym_AMP_GT_GT] = ACTIONS(1855), + [anon_sym_LT_AMP] = ACTIONS(1855), + [anon_sym_GT_AMP] = ACTIONS(1855), + [anon_sym_LT_LT] = ACTIONS(1857), + [anon_sym_LT_LT_DASH] = ACTIONS(1855), + [anon_sym_LT_LT_LT] = ACTIONS(1855), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1857), + }, + [966] = { + [sym__simple_heredoc_body] = ACTIONS(2021), + [sym__heredoc_body_beginning] = ACTIONS(2021), + [sym_file_descriptor] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2023), + [anon_sym_SEMI_SEMI] = ACTIONS(2021), + [anon_sym_RBRACE] = ACTIONS(2021), + [anon_sym_PIPE_AMP] = ACTIONS(2021), + [anon_sym_AMP_AMP] = ACTIONS(2021), + [anon_sym_PIPE_PIPE] = ACTIONS(2021), + [anon_sym_LT] = ACTIONS(2023), + [anon_sym_GT] = ACTIONS(2023), + [anon_sym_GT_GT] = ACTIONS(2021), + [anon_sym_AMP_GT] = ACTIONS(2023), + [anon_sym_AMP_GT_GT] = ACTIONS(2021), + [anon_sym_LT_AMP] = ACTIONS(2021), + [anon_sym_GT_AMP] = ACTIONS(2021), + [anon_sym_LT_LT] = ACTIONS(2023), + [anon_sym_LT_LT_DASH] = ACTIONS(2021), + [anon_sym_LT_LT_LT] = ACTIONS(2021), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2021), + [anon_sym_AMP] = ACTIONS(2023), + }, + [967] = { + [sym_concatenation] = STATE(1620), + [sym_string] = STATE(1623), + [sym_array] = STATE(1620), + [sym_simple_expansion] = STATE(1623), + [sym_string_expansion] = STATE(1623), + [sym_expansion] = STATE(1623), + [sym_command_substitution] = STATE(1623), + [sym_process_substitution] = STATE(1623), + [sym__empty_value] = ACTIONS(3575), + [anon_sym_LPAREN] = ACTIONS(3577), + [sym__special_characters] = ACTIONS(3579), + [anon_sym_DQUOTE] = ACTIONS(785), + [anon_sym_DOLLAR] = ACTIONS(787), + [sym_raw_string] = ACTIONS(3581), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(791), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(793), + [anon_sym_BQUOTE] = ACTIONS(795), + [anon_sym_LT_LPAREN] = ACTIONS(797), + [anon_sym_GT_LPAREN] = ACTIONS(797), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3581), + }, + [968] = { + [sym_string] = STATE(1624), + [sym_simple_expansion] = STATE(1624), + [sym_string_expansion] = STATE(1624), + [sym_expansion] = STATE(1624), + [sym_command_substitution] = STATE(1624), + [sym_process_substitution] = STATE(1624), + [sym__special_characters] = ACTIONS(3583), + [anon_sym_DQUOTE] = ACTIONS(785), + [anon_sym_DOLLAR] = ACTIONS(787), + [sym_raw_string] = ACTIONS(3583), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(791), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(793), + [anon_sym_BQUOTE] = ACTIONS(795), + [anon_sym_LT_LPAREN] = ACTIONS(797), + [anon_sym_GT_LPAREN] = ACTIONS(797), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3583), + }, + [969] = { + [aux_sym_concatenation_repeat1] = STATE(1625), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(1931), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1045), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [970] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [sym_variable_name] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1049), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [971] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(3585), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [972] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(3585), + [anon_sym_DOLLAR] = ACTIONS(3587), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [973] = { + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [sym_variable_name] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_RBRACE] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1083), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [974] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1085), + [sym_variable_name] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_RBRACE] = 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(1087), + [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), + }, + [975] = { + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [sym_variable_name] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1091), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + }, + [976] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(3589), + [sym_comment] = ACTIONS(57), + }, + [977] = { + [sym_subscript] = STATE(1631), + [sym_variable_name] = ACTIONS(3591), + [anon_sym_DASH] = ACTIONS(3593), + [anon_sym_DOLLAR] = ACTIONS(3593), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3595), + [anon_sym_STAR] = ACTIONS(3597), + [anon_sym_AT] = ACTIONS(3597), + [anon_sym_QMARK] = ACTIONS(3597), + [anon_sym_0] = ACTIONS(3595), + [anon_sym__] = ACTIONS(3595), + }, + [978] = { + [sym_concatenation] = STATE(1634), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1634), + [anon_sym_RBRACE] = ACTIONS(3599), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_DASH] = ACTIONS(3601), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3603), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3605), + [anon_sym_COLON] = ACTIONS(3601), + [anon_sym_COLON_QMARK] = ACTIONS(3601), + [anon_sym_COLON_DASH] = ACTIONS(3601), + [anon_sym_PERCENT] = ACTIONS(3601), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [979] = { + [sym_concatenation] = STATE(1637), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1637), + [anon_sym_RBRACE] = ACTIONS(3607), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_DASH] = ACTIONS(3609), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3611), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3613), + [anon_sym_COLON] = ACTIONS(3609), + [anon_sym_COLON_QMARK] = ACTIONS(3609), + [anon_sym_COLON_DASH] = ACTIONS(3609), + [anon_sym_PERCENT] = ACTIONS(3609), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [980] = { + [anon_sym_RPAREN] = ACTIONS(3615), + [sym_comment] = ACTIONS(57), + }, + [981] = { + [anon_sym_BQUOTE] = ACTIONS(3615), + [sym_comment] = ACTIONS(57), + }, + [982] = { + [anon_sym_RPAREN] = ACTIONS(3617), + [sym_comment] = ACTIONS(57), + }, + [983] = { + [sym_variable_assignment] = STATE(983), + [sym_subscript] = STATE(438), + [sym_concatenation] = STATE(983), + [sym_string] = STATE(433), + [sym_simple_expansion] = STATE(433), + [sym_string_expansion] = STATE(433), + [sym_expansion] = STATE(433), + [sym_command_substitution] = STATE(433), + [sym_process_substitution] = STATE(433), + [aux_sym_declaration_command_repeat1] = STATE(983), + [sym__simple_heredoc_body] = ACTIONS(2149), + [sym__heredoc_body_beginning] = ACTIONS(2149), + [sym_file_descriptor] = ACTIONS(2149), + [sym_variable_name] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_SEMI_SEMI] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_PIPE_AMP] = ACTIONS(2149), + [anon_sym_AMP_AMP] = ACTIONS(2149), + [anon_sym_PIPE_PIPE] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_GT] = ACTIONS(2154), + [anon_sym_GT_GT] = ACTIONS(2149), + [anon_sym_AMP_GT] = ACTIONS(2154), + [anon_sym_AMP_GT_GT] = ACTIONS(2149), + [anon_sym_LT_AMP] = ACTIONS(2149), + [anon_sym_GT_AMP] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2154), + [anon_sym_LT_LT_DASH] = ACTIONS(2149), + [anon_sym_LT_LT_LT] = ACTIONS(2149), + [sym__special_characters] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR] = ACTIONS(3628), + [sym_raw_string] = ACTIONS(3631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3637), + [anon_sym_BQUOTE] = ACTIONS(3640), + [anon_sym_LT_LPAREN] = ACTIONS(3643), + [anon_sym_GT_LPAREN] = ACTIONS(3643), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3646), + [sym_word] = ACTIONS(3649), + [anon_sym_LF] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2154), + }, + [984] = { + [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), + [sym__special_characters] = ACTIONS(3652), + [anon_sym_DQUOTE] = ACTIONS(805), + [anon_sym_DOLLAR] = ACTIONS(807), + [sym_raw_string] = ACTIONS(3652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(815), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3652), + }, + [985] = { + [aux_sym_concatenation_repeat1] = STATE(1641), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(1957), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1045), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [986] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1049), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [987] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(3654), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [988] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(3654), + [anon_sym_DOLLAR] = ACTIONS(3656), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [989] = { + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_RBRACE] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1083), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [990] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_RBRACE] = 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(1087), + [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), + }, + [991] = { + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1091), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + }, + [992] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(3658), + [sym_comment] = ACTIONS(57), + }, + [993] = { + [sym_subscript] = STATE(1647), + [sym_variable_name] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_DOLLAR] = ACTIONS(3662), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AT] = ACTIONS(3666), + [anon_sym_QMARK] = ACTIONS(3666), + [anon_sym_0] = ACTIONS(3664), + [anon_sym__] = ACTIONS(3664), + }, + [994] = { + [sym_concatenation] = STATE(1650), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1650), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_EQ] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_COLON] = ACTIONS(3670), + [anon_sym_COLON_QMARK] = ACTIONS(3670), + [anon_sym_COLON_DASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3670), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [995] = { + [sym_concatenation] = STATE(1653), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1653), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3680), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3682), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_COLON_QMARK] = ACTIONS(3678), + [anon_sym_COLON_DASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [996] = { + [anon_sym_RPAREN] = ACTIONS(3684), + [sym_comment] = ACTIONS(57), + }, + [997] = { + [anon_sym_BQUOTE] = ACTIONS(3684), + [sym_comment] = ACTIONS(57), + }, + [998] = { + [anon_sym_RPAREN] = ACTIONS(3686), + [sym_comment] = ACTIONS(57), + }, + [999] = { + [sym_concatenation] = STATE(999), + [sym_string] = STATE(443), + [sym_simple_expansion] = STATE(443), + [sym_string_expansion] = STATE(443), + [sym_expansion] = STATE(443), + [sym_command_substitution] = STATE(443), + [sym_process_substitution] = STATE(443), + [aux_sym_unset_command_repeat1] = STATE(999), + [sym__simple_heredoc_body] = ACTIONS(2222), + [sym__heredoc_body_beginning] = ACTIONS(2222), + [sym_file_descriptor] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_SEMI_SEMI] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_PIPE_AMP] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2222), + [anon_sym_AMP_GT] = ACTIONS(2224), + [anon_sym_AMP_GT_GT] = ACTIONS(2222), + [anon_sym_LT_AMP] = ACTIONS(2222), + [anon_sym_GT_AMP] = ACTIONS(2222), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_LT_LT_DASH] = ACTIONS(2222), + [anon_sym_LT_LT_LT] = ACTIONS(2222), + [sym__special_characters] = ACTIONS(3688), + [anon_sym_DQUOTE] = ACTIONS(3691), + [anon_sym_DOLLAR] = ACTIONS(3694), + [sym_raw_string] = ACTIONS(3697), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3700), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3703), + [anon_sym_BQUOTE] = ACTIONS(3706), + [anon_sym_LT_LPAREN] = ACTIONS(3709), + [anon_sym_GT_LPAREN] = ACTIONS(3709), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3712), + [sym_word] = ACTIONS(3715), + [anon_sym_LF] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2224), + }, + [1000] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1001] = { + [aux_sym_concatenation_repeat1] = STATE(1001), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(3718), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1002] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_EQ_TILDE] = ACTIONS(2301), + [anon_sym_EQ_EQ] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [1003] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1004] = { + [sym_concatenation] = STATE(1660), + [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), + [anon_sym_RBRACE] = ACTIONS(3723), + [sym__special_characters] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(3727), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3727), + }, + [1005] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(3729), + [sym_comment] = ACTIONS(57), + }, + [1006] = { + [sym_concatenation] = STATE(1664), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1664), + [anon_sym_RBRACE] = ACTIONS(3731), + [anon_sym_EQ] = ACTIONS(3733), + [anon_sym_DASH] = ACTIONS(3733), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3737), + [anon_sym_COLON] = ACTIONS(3733), + [anon_sym_COLON_QMARK] = ACTIONS(3733), + [anon_sym_COLON_DASH] = ACTIONS(3733), + [anon_sym_PERCENT] = ACTIONS(3733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1007] = { + [sym_concatenation] = STATE(1666), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1666), + [anon_sym_RBRACE] = ACTIONS(3723), + [anon_sym_EQ] = ACTIONS(3739), + [anon_sym_DASH] = ACTIONS(3739), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3743), + [anon_sym_COLON] = ACTIONS(3739), + [anon_sym_COLON_QMARK] = ACTIONS(3739), + [anon_sym_COLON_DASH] = ACTIONS(3739), + [anon_sym_PERCENT] = ACTIONS(3739), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1008] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_RBRACE] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_EQ_TILDE] = ACTIONS(2394), + [anon_sym_EQ_EQ] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2394), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [1009] = { + [sym_concatenation] = STATE(1669), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1669), + [sym_regex] = ACTIONS(3745), + [anon_sym_RBRACE] = ACTIONS(3747), + [anon_sym_EQ] = ACTIONS(3749), + [anon_sym_DASH] = ACTIONS(3749), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [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(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1010] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(3747), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1011] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_EQ_TILDE] = ACTIONS(2442), + [anon_sym_EQ_EQ] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [1012] = { + [sym_concatenation] = STATE(1666), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1666), + [sym_regex] = ACTIONS(3753), + [anon_sym_RBRACE] = ACTIONS(3723), + [anon_sym_EQ] = ACTIONS(3739), + [anon_sym_DASH] = ACTIONS(3739), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(3739), + [anon_sym_COLON_QMARK] = ACTIONS(3739), + [anon_sym_COLON_DASH] = ACTIONS(3739), + [anon_sym_PERCENT] = ACTIONS(3739), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1013] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(3723), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1014] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [anon_sym_SEMI_SEMI] = ACTIONS(2446), + [anon_sym_RBRACE] = ACTIONS(2446), + [anon_sym_PIPE_AMP] = ACTIONS(2446), + [anon_sym_AMP_AMP] = ACTIONS(2446), + [anon_sym_PIPE_PIPE] = ACTIONS(2446), + [anon_sym_EQ_TILDE] = ACTIONS(2448), + [anon_sym_EQ_EQ] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [1015] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_EQ_TILDE] = ACTIONS(2486), + [anon_sym_EQ_EQ] = ACTIONS(2486), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [1016] = { + [sym_compound_statement] = STATE(1671), + [anon_sym_LBRACE] = ACTIONS(191), + [sym_comment] = ACTIONS(57), + }, + [1017] = { + [anon_sym_SEMI] = ACTIONS(2490), + [anon_sym_SEMI_SEMI] = ACTIONS(2488), + [anon_sym_RBRACE] = ACTIONS(2488), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2488), + [anon_sym_AMP] = ACTIONS(2488), + }, + [1018] = { + [sym_simple_expansion] = STATE(1204), + [sym_expansion] = STATE(1204), + [sym_command_substitution] = STATE(1204), + [aux_sym_heredoc_body_repeat1] = STATE(1204), + [sym__heredoc_body_middle] = ACTIONS(2508), + [sym__heredoc_body_end] = ACTIONS(3755), + [anon_sym_DOLLAR] = ACTIONS(1201), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1205), + [anon_sym_BQUOTE] = ACTIONS(1207), + [sym_comment] = ACTIONS(57), + }, + [1019] = { + [sym_concatenation] = STATE(1675), + [sym_string] = STATE(1674), + [sym_simple_expansion] = STATE(1674), + [sym_string_expansion] = STATE(1674), + [sym_expansion] = STATE(1674), + [sym_command_substitution] = STATE(1674), + [sym_process_substitution] = STATE(1674), + [sym__special_characters] = ACTIONS(3757), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(209), + [sym_raw_string] = ACTIONS(3759), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3759), + }, + [1020] = { + [sym_file_redirect] = STATE(476), + [sym_heredoc_redirect] = STATE(476), + [sym_herestring_redirect] = STATE(476), + [aux_sym_redirected_statement_repeat1] = STATE(476), + [sym__simple_heredoc_body] = ACTIONS(2516), + [sym__heredoc_body_beginning] = ACTIONS(2516), + [sym_file_descriptor] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_RBRACE] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), + }, + [1021] = { + [sym_file_redirect] = STATE(476), + [sym_heredoc_redirect] = STATE(476), + [sym_herestring_redirect] = STATE(476), + [aux_sym_redirected_statement_repeat1] = STATE(476), + [sym__simple_heredoc_body] = ACTIONS(2516), + [sym__heredoc_body_beginning] = ACTIONS(2516), + [sym_file_descriptor] = ACTIONS(2516), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_RBRACE] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), + [sym__special_characters] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), + }, + [1022] = { + [sym_file_redirect] = STATE(476), + [sym_heredoc_redirect] = STATE(476), + [sym_herestring_redirect] = STATE(476), + [aux_sym_redirected_statement_repeat1] = STATE(476), + [sym__simple_heredoc_body] = ACTIONS(2520), + [sym__heredoc_body_beginning] = ACTIONS(2520), + [sym_file_descriptor] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_RBRACE] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2520), + [anon_sym_AMP_GT] = ACTIONS(2522), + [anon_sym_AMP_GT_GT] = ACTIONS(2520), + [anon_sym_LT_AMP] = ACTIONS(2520), + [anon_sym_GT_AMP] = ACTIONS(2520), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + }, + [1023] = { + [sym_file_redirect] = STATE(476), + [sym_heredoc_redirect] = STATE(476), + [sym_herestring_redirect] = STATE(476), + [aux_sym_redirected_statement_repeat1] = STATE(476), + [sym__simple_heredoc_body] = ACTIONS(2520), + [sym__heredoc_body_beginning] = ACTIONS(2520), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_RBRACE] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), + [sym__special_characters] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + }, + [1024] = { + [aux_sym_concatenation_repeat1] = STATE(1676), + [sym__simple_heredoc_body] = ACTIONS(1009), + [sym__heredoc_body_beginning] = ACTIONS(1009), + [sym_file_descriptor] = ACTIONS(1009), + [sym__concat] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_SEMI_SEMI] = ACTIONS(1009), + [anon_sym_RBRACE] = ACTIONS(1009), + [anon_sym_PIPE_AMP] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1009), + [anon_sym_PIPE_PIPE] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_GT] = ACTIONS(1013), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(1013), + [anon_sym_AMP_GT_GT] = ACTIONS(1009), + [anon_sym_LT_AMP] = ACTIONS(1009), + [anon_sym_GT_AMP] = ACTIONS(1009), + [anon_sym_LT_LT] = ACTIONS(1013), + [anon_sym_LT_LT_DASH] = ACTIONS(1009), + [anon_sym_LT_LT_LT] = ACTIONS(1009), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1013), + }, + [1025] = { + [aux_sym_concatenation_repeat1] = STATE(1676), + [sym__simple_heredoc_body] = ACTIONS(1027), + [sym__heredoc_body_beginning] = ACTIONS(1027), + [sym_file_descriptor] = ACTIONS(1027), + [sym__concat] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_SEMI_SEMI] = ACTIONS(1027), + [anon_sym_RBRACE] = ACTIONS(1027), + [anon_sym_PIPE_AMP] = ACTIONS(1027), + [anon_sym_AMP_AMP] = ACTIONS(1027), + [anon_sym_PIPE_PIPE] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_AMP_GT] = ACTIONS(1029), + [anon_sym_AMP_GT_GT] = ACTIONS(1027), + [anon_sym_LT_AMP] = ACTIONS(1027), + [anon_sym_GT_AMP] = ACTIONS(1027), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_LT_LT_DASH] = ACTIONS(1027), + [anon_sym_LT_LT_LT] = ACTIONS(1027), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + }, + [1026] = { + [sym__simple_heredoc_body] = ACTIONS(1027), + [sym__heredoc_body_beginning] = ACTIONS(1027), + [sym_file_descriptor] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_SEMI_SEMI] = ACTIONS(1027), + [anon_sym_RBRACE] = ACTIONS(1027), + [anon_sym_PIPE_AMP] = ACTIONS(1027), + [anon_sym_AMP_AMP] = ACTIONS(1027), + [anon_sym_PIPE_PIPE] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_AMP_GT] = ACTIONS(1029), + [anon_sym_AMP_GT_GT] = ACTIONS(1027), + [anon_sym_LT_AMP] = ACTIONS(1027), + [anon_sym_GT_AMP] = ACTIONS(1027), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_LT_LT_DASH] = ACTIONS(1027), + [anon_sym_LT_LT_LT] = ACTIONS(1027), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + }, + [1027] = { + [sym__simple_heredoc_body] = ACTIONS(2524), + [sym__heredoc_body_beginning] = ACTIONS(2524), + [sym_file_descriptor] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_PIPE] = ACTIONS(2526), + [anon_sym_SEMI_SEMI] = ACTIONS(2524), + [anon_sym_RBRACE] = ACTIONS(2524), + [anon_sym_PIPE_AMP] = ACTIONS(2524), + [anon_sym_AMP_AMP] = ACTIONS(2524), + [anon_sym_PIPE_PIPE] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_GT] = ACTIONS(2526), + [anon_sym_GT_GT] = ACTIONS(2524), + [anon_sym_AMP_GT] = ACTIONS(2526), + [anon_sym_AMP_GT_GT] = ACTIONS(2524), + [anon_sym_LT_AMP] = ACTIONS(2524), + [anon_sym_GT_AMP] = ACTIONS(2524), + [anon_sym_LT_LT] = ACTIONS(2526), + [anon_sym_LT_LT_DASH] = ACTIONS(2524), + [anon_sym_LT_LT_LT] = ACTIONS(2524), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2524), + [anon_sym_AMP] = ACTIONS(2526), + }, + [1028] = { + [aux_sym_concatenation_repeat1] = STATE(1676), + [sym__simple_heredoc_body] = ACTIONS(2528), + [sym__heredoc_body_beginning] = ACTIONS(2528), + [sym_file_descriptor] = ACTIONS(2528), + [sym__concat] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_PIPE] = ACTIONS(2530), + [anon_sym_SEMI_SEMI] = ACTIONS(2528), + [anon_sym_RBRACE] = ACTIONS(2528), + [anon_sym_PIPE_AMP] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_GT] = ACTIONS(2530), + [anon_sym_GT_GT] = ACTIONS(2528), + [anon_sym_AMP_GT] = ACTIONS(2530), + [anon_sym_AMP_GT_GT] = ACTIONS(2528), + [anon_sym_LT_AMP] = ACTIONS(2528), + [anon_sym_GT_AMP] = ACTIONS(2528), + [anon_sym_LT_LT] = ACTIONS(2530), + [anon_sym_LT_LT_DASH] = ACTIONS(2528), + [anon_sym_LT_LT_LT] = ACTIONS(2528), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2530), + }, + [1029] = { + [aux_sym_concatenation_repeat1] = STATE(1676), + [sym__simple_heredoc_body] = ACTIONS(2532), + [sym__heredoc_body_beginning] = ACTIONS(2532), + [sym_file_descriptor] = ACTIONS(2532), + [sym__concat] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_SEMI_SEMI] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2532), + [anon_sym_PIPE_AMP] = ACTIONS(2532), + [anon_sym_AMP_AMP] = ACTIONS(2532), + [anon_sym_PIPE_PIPE] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_AMP_GT] = ACTIONS(2534), + [anon_sym_AMP_GT_GT] = ACTIONS(2532), + [anon_sym_LT_AMP] = ACTIONS(2532), + [anon_sym_GT_AMP] = ACTIONS(2532), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_LT_LT_DASH] = ACTIONS(2532), + [anon_sym_LT_LT_LT] = ACTIONS(2532), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2534), + }, + [1030] = { + [sym__simple_heredoc_body] = ACTIONS(2532), + [sym__heredoc_body_beginning] = ACTIONS(2532), + [sym_file_descriptor] = ACTIONS(2532), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_SEMI_SEMI] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2532), + [anon_sym_PIPE_AMP] = ACTIONS(2532), + [anon_sym_AMP_AMP] = ACTIONS(2532), + [anon_sym_PIPE_PIPE] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_AMP_GT] = ACTIONS(2534), + [anon_sym_AMP_GT_GT] = ACTIONS(2532), + [anon_sym_LT_AMP] = ACTIONS(2532), + [anon_sym_GT_AMP] = ACTIONS(2532), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_LT_LT_DASH] = ACTIONS(2532), + [anon_sym_LT_LT_LT] = ACTIONS(2532), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2534), + }, + [1031] = { + [sym_file_descriptor] = ACTIONS(2536), + [sym_variable_name] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_LPAREN_LPAREN] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_RBRACE] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2540), + [anon_sym_typeset] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_readonly] = ACTIONS(2540), + [anon_sym_local] = ACTIONS(2540), + [anon_sym_unset] = ACTIONS(2540), + [anon_sym_unsetenv] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_GT] = ACTIONS(2540), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_AMP_GT] = ACTIONS(2540), + [anon_sym_AMP_GT_GT] = ACTIONS(2536), + [anon_sym_LT_AMP] = ACTIONS(2536), + [anon_sym_GT_AMP] = ACTIONS(2536), + [sym__special_characters] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2536), + [anon_sym_DOLLAR] = ACTIONS(2540), + [sym_raw_string] = ACTIONS(2536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2536), + [anon_sym_BQUOTE] = ACTIONS(2536), + [anon_sym_LT_LPAREN] = ACTIONS(2536), + [anon_sym_GT_LPAREN] = ACTIONS(2536), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2540), + }, + [1032] = { + [sym_file_redirect] = STATE(1032), + [sym_heredoc_redirect] = STATE(1032), + [sym_herestring_redirect] = STATE(1032), + [aux_sym_redirected_statement_repeat1] = STATE(1032), + [sym__simple_heredoc_body] = ACTIONS(2542), + [sym__heredoc_body_beginning] = ACTIONS(2542), + [sym_file_descriptor] = ACTIONS(3761), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_SEMI_SEMI] = ACTIONS(2542), + [anon_sym_RBRACE] = ACTIONS(2542), + [anon_sym_PIPE_AMP] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(3764), + [anon_sym_GT] = ACTIONS(3764), + [anon_sym_GT_GT] = ACTIONS(3767), + [anon_sym_AMP_GT] = ACTIONS(3764), + [anon_sym_AMP_GT_GT] = ACTIONS(3767), + [anon_sym_LT_AMP] = ACTIONS(3767), + [anon_sym_GT_AMP] = ACTIONS(3767), + [anon_sym_LT_LT] = ACTIONS(3770), + [anon_sym_LT_LT_DASH] = ACTIONS(3773), + [anon_sym_LT_LT_LT] = ACTIONS(3776), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2547), + }, + [1033] = { + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_RBRACE] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(2566), + [anon_sym_EQ_EQ] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(2566), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2566), + [sym_raw_string] = ACTIONS(2564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2564), + [anon_sym_LT_LPAREN] = ACTIONS(2564), + [anon_sym_GT_LPAREN] = ACTIONS(2564), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2566), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [1034] = { + [aux_sym_concatenation_repeat1] = STATE(450), + [sym__simple_heredoc_body] = ACTIONS(2568), + [sym__heredoc_body_beginning] = ACTIONS(2568), + [sym_file_descriptor] = ACTIONS(2568), + [sym__concat] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_SEMI_SEMI] = ACTIONS(2568), + [anon_sym_RBRACE] = ACTIONS(2568), + [anon_sym_PIPE_AMP] = ACTIONS(2568), + [anon_sym_AMP_AMP] = ACTIONS(2568), + [anon_sym_PIPE_PIPE] = ACTIONS(2568), + [anon_sym_EQ_TILDE] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_AMP_GT] = ACTIONS(2570), + [anon_sym_AMP_GT_GT] = ACTIONS(2568), + [anon_sym_LT_AMP] = ACTIONS(2568), + [anon_sym_GT_AMP] = ACTIONS(2568), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_LT_LT_DASH] = ACTIONS(2568), + [anon_sym_LT_LT_LT] = ACTIONS(2568), + [sym__special_characters] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(2568), + [anon_sym_DOLLAR] = ACTIONS(2570), + [sym_raw_string] = ACTIONS(2568), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2568), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2568), + [anon_sym_BQUOTE] = ACTIONS(2568), + [anon_sym_LT_LPAREN] = ACTIONS(2568), + [anon_sym_GT_LPAREN] = ACTIONS(2568), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2570), + [anon_sym_LF] = ACTIONS(2568), + [anon_sym_AMP] = ACTIONS(2570), + }, + [1035] = { + [aux_sym_concatenation_repeat1] = STATE(450), + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [sym__concat] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_RBRACE] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(2566), + [anon_sym_EQ_EQ] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(2566), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2566), + [sym_raw_string] = ACTIONS(2564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2564), + [anon_sym_LT_LPAREN] = ACTIONS(2564), + [anon_sym_GT_LPAREN] = ACTIONS(2564), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2566), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [1036] = { + [sym_concatenation] = STATE(1036), + [sym_string] = STATE(479), + [sym_simple_expansion] = STATE(479), + [sym_string_expansion] = STATE(479), + [sym_expansion] = STATE(479), + [sym_command_substitution] = STATE(479), + [sym_process_substitution] = STATE(479), + [aux_sym_command_repeat2] = STATE(1036), + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_RBRACE] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(3779), + [anon_sym_EQ_EQ] = ACTIONS(3779), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(3782), + [anon_sym_DQUOTE] = ACTIONS(3785), + [anon_sym_DOLLAR] = ACTIONS(3788), + [sym_raw_string] = ACTIONS(3791), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3797), + [anon_sym_BQUOTE] = ACTIONS(3800), + [anon_sym_LT_LPAREN] = ACTIONS(3803), + [anon_sym_GT_LPAREN] = ACTIONS(3803), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3806), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [1037] = { + [sym_file_descriptor] = ACTIONS(1213), + [sym_variable_name] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_function] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_typeset] = ACTIONS(1217), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_local] = ACTIONS(1217), + [anon_sym_unset] = ACTIONS(1217), + [anon_sym_unsetenv] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_GT] = ACTIONS(1213), + [anon_sym_AMP_GT] = ACTIONS(1217), + [anon_sym_AMP_GT_GT] = ACTIONS(1213), + [anon_sym_LT_AMP] = ACTIONS(1213), + [anon_sym_GT_AMP] = ACTIONS(1213), + [sym__special_characters] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1217), + [sym_raw_string] = ACTIONS(1213), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1213), + [anon_sym_BQUOTE] = ACTIONS(1213), + [anon_sym_LT_LPAREN] = ACTIONS(1213), + [anon_sym_GT_LPAREN] = ACTIONS(1213), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1217), + }, + [1038] = { + [anon_sym_SEMI] = ACTIONS(3809), + [anon_sym_SEMI_SEMI] = ACTIONS(3811), + [anon_sym_RBRACE] = ACTIONS(2538), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3811), + [anon_sym_AMP] = ACTIONS(3811), + }, + [1039] = { + [sym_concatenation] = STATE(1036), + [sym_string] = STATE(479), + [sym_simple_expansion] = STATE(479), + [sym_string_expansion] = STATE(479), + [sym_expansion] = STATE(479), + [sym_command_substitution] = STATE(479), + [sym_process_substitution] = STATE(479), + [aux_sym_command_repeat2] = STATE(1036), + [sym__simple_heredoc_body] = ACTIONS(2628), + [sym__heredoc_body_beginning] = ACTIONS(2628), + [sym_file_descriptor] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym_PIPE] = ACTIONS(2630), + [anon_sym_SEMI_SEMI] = ACTIONS(2628), + [anon_sym_RBRACE] = ACTIONS(2628), + [anon_sym_PIPE_AMP] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_GT] = ACTIONS(2630), + [anon_sym_GT_GT] = ACTIONS(2628), + [anon_sym_AMP_GT] = ACTIONS(2630), + [anon_sym_AMP_GT_GT] = ACTIONS(2628), + [anon_sym_LT_AMP] = ACTIONS(2628), + [anon_sym_GT_AMP] = ACTIONS(2628), + [anon_sym_LT_LT] = ACTIONS(2630), + [anon_sym_LT_LT_DASH] = ACTIONS(2628), + [anon_sym_LT_LT_LT] = ACTIONS(2628), + [sym__special_characters] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(209), + [sym_raw_string] = ACTIONS(881), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(883), + [anon_sym_LF] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2630), + }, + [1040] = { + [sym_file_descriptor] = ACTIONS(1371), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1371), + }, + [1041] = { + [sym_concatenation] = STATE(1679), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1679), + [anon_sym_RPAREN] = ACTIONS(3813), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [1042] = { + [aux_sym_concatenation_repeat1] = STATE(543), + [sym_file_descriptor] = ACTIONS(1393), + [sym__concat] = ACTIONS(1011), + [sym_variable_name] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_AMP_GT] = ACTIONS(1397), + [anon_sym_AMP_GT_GT] = ACTIONS(1393), + [anon_sym_LT_AMP] = ACTIONS(1393), + [anon_sym_GT_AMP] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1397), + [sym_raw_string] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1393), + [anon_sym_GT_LPAREN] = ACTIONS(1393), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1393), + }, + [1043] = { + [aux_sym_concatenation_repeat1] = STATE(543), + [sym_file_descriptor] = ACTIONS(1371), + [sym__concat] = ACTIONS(1011), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1371), + }, + [1044] = { + [anon_sym_AMP_AMP] = ACTIONS(2840), + [anon_sym_PIPE_PIPE] = ACTIONS(2840), + [anon_sym_RBRACK] = ACTIONS(2840), + [anon_sym_EQ_TILDE] = ACTIONS(2840), + [anon_sym_EQ_EQ] = ACTIONS(2840), + [anon_sym_EQ] = ACTIONS(2842), + [anon_sym_PLUS_EQ] = ACTIONS(2840), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_GT] = ACTIONS(2842), + [anon_sym_BANG_EQ] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2842), + [anon_sym_DASH_EQ] = ACTIONS(2840), + [anon_sym_LT_EQ] = ACTIONS(2840), + [anon_sym_GT_EQ] = ACTIONS(2840), + [anon_sym_PLUS_PLUS] = ACTIONS(2840), + [anon_sym_DASH_DASH] = ACTIONS(2840), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2840), + }, + [1045] = { + [sym__concat] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_RBRACK] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2292), + [anon_sym_EQ_EQ] = ACTIONS(2292), + [anon_sym_EQ] = ACTIONS(2294), + [anon_sym_PLUS_EQ] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_BANG_EQ] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_DASH_EQ] = ACTIONS(2292), + [anon_sym_LT_EQ] = ACTIONS(2292), + [anon_sym_GT_EQ] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2292), + }, + [1046] = { + [aux_sym_concatenation_repeat1] = STATE(1046), + [sym__concat] = ACTIONS(3815), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_RBRACK] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2292), + [anon_sym_EQ_EQ] = ACTIONS(2292), + [anon_sym_EQ] = ACTIONS(2294), + [anon_sym_PLUS_EQ] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_BANG_EQ] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_DASH_EQ] = ACTIONS(2292), + [anon_sym_LT_EQ] = ACTIONS(2292), + [anon_sym_GT_EQ] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2292), + }, + [1047] = { + [sym__concat] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_RBRACK] = ACTIONS(2299), + [anon_sym_EQ_TILDE] = ACTIONS(2299), + [anon_sym_EQ_EQ] = ACTIONS(2299), + [anon_sym_EQ] = ACTIONS(2301), + [anon_sym_PLUS_EQ] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_BANG_EQ] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_DASH_EQ] = ACTIONS(2299), + [anon_sym_LT_EQ] = ACTIONS(2299), + [anon_sym_GT_EQ] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2299), + }, + [1048] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(3818), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1049] = { + [sym_concatenation] = STATE(1684), + [sym_string] = STATE(1683), + [sym_simple_expansion] = STATE(1683), + [sym_string_expansion] = STATE(1683), + [sym_expansion] = STATE(1683), + [sym_command_substitution] = STATE(1683), + [sym_process_substitution] = STATE(1683), + [anon_sym_RBRACE] = ACTIONS(3820), + [sym__special_characters] = ACTIONS(3822), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(3824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3824), + }, + [1050] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(3826), + [sym_comment] = ACTIONS(57), + }, + [1051] = { + [sym_concatenation] = STATE(1688), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1688), + [anon_sym_RBRACE] = ACTIONS(3828), + [anon_sym_EQ] = ACTIONS(3830), + [anon_sym_DASH] = ACTIONS(3830), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3834), + [anon_sym_COLON] = ACTIONS(3830), + [anon_sym_COLON_QMARK] = ACTIONS(3830), + [anon_sym_COLON_DASH] = ACTIONS(3830), + [anon_sym_PERCENT] = ACTIONS(3830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1052] = { + [sym_concatenation] = STATE(1690), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1690), + [anon_sym_RBRACE] = ACTIONS(3820), + [anon_sym_EQ] = ACTIONS(3836), + [anon_sym_DASH] = ACTIONS(3836), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3840), + [anon_sym_COLON] = ACTIONS(3836), + [anon_sym_COLON_QMARK] = ACTIONS(3836), + [anon_sym_COLON_DASH] = ACTIONS(3836), + [anon_sym_PERCENT] = ACTIONS(3836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1053] = { + [sym__concat] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_RBRACK] = ACTIONS(2392), + [anon_sym_EQ_TILDE] = ACTIONS(2392), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_EQ] = ACTIONS(2394), + [anon_sym_PLUS_EQ] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2394), + [anon_sym_DASH] = ACTIONS(2394), + [anon_sym_DASH_EQ] = ACTIONS(2392), + [anon_sym_LT_EQ] = ACTIONS(2392), + [anon_sym_GT_EQ] = ACTIONS(2392), + [anon_sym_PLUS_PLUS] = ACTIONS(2392), + [anon_sym_DASH_DASH] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2392), + }, + [1054] = { + [sym_concatenation] = STATE(1693), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1693), + [sym_regex] = ACTIONS(3842), + [anon_sym_RBRACE] = ACTIONS(3844), + [anon_sym_EQ] = ACTIONS(3846), + [anon_sym_DASH] = ACTIONS(3846), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(3846), + [anon_sym_COLON_QMARK] = ACTIONS(3846), + [anon_sym_COLON_DASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1055] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(3844), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1056] = { + [sym__concat] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_RBRACK] = ACTIONS(2440), + [anon_sym_EQ_TILDE] = ACTIONS(2440), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ] = ACTIONS(2442), + [anon_sym_PLUS_EQ] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_DASH_EQ] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2440), + [anon_sym_GT_EQ] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2440), + }, + [1057] = { + [sym_concatenation] = STATE(1690), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1690), + [sym_regex] = ACTIONS(3850), + [anon_sym_RBRACE] = ACTIONS(3820), + [anon_sym_EQ] = ACTIONS(3836), + [anon_sym_DASH] = ACTIONS(3836), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(3836), + [anon_sym_COLON_QMARK] = ACTIONS(3836), + [anon_sym_COLON_DASH] = ACTIONS(3836), + [anon_sym_PERCENT] = ACTIONS(3836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1058] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(3820), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1059] = { + [sym__concat] = ACTIONS(2446), + [anon_sym_AMP_AMP] = ACTIONS(2446), + [anon_sym_PIPE_PIPE] = ACTIONS(2446), + [anon_sym_RBRACK] = ACTIONS(2446), + [anon_sym_EQ_TILDE] = ACTIONS(2446), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ] = ACTIONS(2448), + [anon_sym_PLUS_EQ] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_DASH_EQ] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2446), + [anon_sym_GT_EQ] = ACTIONS(2446), + [anon_sym_PLUS_PLUS] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2446), + }, + [1060] = { + [sym__concat] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_RBRACK] = ACTIONS(2484), + [anon_sym_EQ_TILDE] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2484), + [anon_sym_EQ] = ACTIONS(2486), + [anon_sym_PLUS_EQ] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_BANG_EQ] = ACTIONS(2484), + [anon_sym_PLUS] = ACTIONS(2486), + [anon_sym_DASH] = ACTIONS(2486), + [anon_sym_DASH_EQ] = ACTIONS(2484), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(2484), + [anon_sym_DASH_DASH] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2484), + }, + [1061] = { + [anon_sym_AMP_AMP] = ACTIONS(2883), + [anon_sym_PIPE_PIPE] = ACTIONS(2883), + [anon_sym_RBRACK] = ACTIONS(2883), + [anon_sym_EQ_TILDE] = ACTIONS(2883), + [anon_sym_EQ_EQ] = ACTIONS(2883), + [anon_sym_EQ] = ACTIONS(2885), + [anon_sym_PLUS_EQ] = ACTIONS(2883), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_GT] = ACTIONS(2885), + [anon_sym_BANG_EQ] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_DASH_EQ] = ACTIONS(2883), + [anon_sym_LT_EQ] = ACTIONS(2883), + [anon_sym_GT_EQ] = ACTIONS(2883), + [anon_sym_PLUS_PLUS] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2883), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2883), + }, + [1062] = { + [anon_sym_AMP_AMP] = ACTIONS(2883), + [anon_sym_PIPE_PIPE] = ACTIONS(2883), + [anon_sym_RBRACK] = ACTIONS(2883), + [anon_sym_EQ_TILDE] = ACTIONS(2883), + [anon_sym_EQ_EQ] = ACTIONS(2883), + [anon_sym_EQ] = ACTIONS(2885), + [anon_sym_PLUS_EQ] = ACTIONS(2883), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_GT] = ACTIONS(2885), + [anon_sym_BANG_EQ] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_DASH_EQ] = ACTIONS(2883), + [anon_sym_LT_EQ] = ACTIONS(2883), + [anon_sym_GT_EQ] = ACTIONS(2883), + [anon_sym_PLUS_PLUS] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2883), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2883), + }, + [1063] = { + [aux_sym_concatenation_repeat1] = STATE(1063), + [sym__concat] = ACTIONS(2846), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2292), + [anon_sym_EQ_EQ] = ACTIONS(2292), + [anon_sym_EQ] = ACTIONS(2294), + [anon_sym_PLUS_EQ] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_BANG_EQ] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_DASH_EQ] = ACTIONS(2292), + [anon_sym_LT_EQ] = ACTIONS(2292), + [anon_sym_GT_EQ] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2292), + }, + [1064] = { + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym_variable_name] = ACTIONS(1371), + [ts_builtin_sym_end] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1373), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [1065] = { + [sym_concatenation] = STATE(1696), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1696), + [anon_sym_RPAREN] = ACTIONS(3852), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [1066] = { + [aux_sym_concatenation_repeat1] = STATE(511), + [sym__simple_heredoc_body] = ACTIONS(1393), + [sym__heredoc_body_beginning] = ACTIONS(1393), + [sym_file_descriptor] = ACTIONS(1393), + [sym__concat] = ACTIONS(935), + [sym_variable_name] = ACTIONS(1393), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_SEMI_SEMI] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_AMP_GT] = ACTIONS(1397), + [anon_sym_AMP_GT_GT] = ACTIONS(1393), + [anon_sym_LT_AMP] = ACTIONS(1393), + [anon_sym_GT_AMP] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_LT_LT_DASH] = ACTIONS(1393), + [anon_sym_LT_LT_LT] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1397), + [sym_raw_string] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1393), + [anon_sym_GT_LPAREN] = ACTIONS(1393), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1397), + [sym_word] = ACTIONS(1397), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1397), + }, + [1067] = { + [aux_sym_concatenation_repeat1] = STATE(511), + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym__concat] = ACTIONS(935), + [sym_variable_name] = ACTIONS(1371), + [ts_builtin_sym_end] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1373), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [1068] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [sym_variable_name] = ACTIONS(2292), + [ts_builtin_sym_end] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1069] = { + [aux_sym_concatenation_repeat1] = STATE(1069), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(3854), + [sym_variable_name] = ACTIONS(2292), + [ts_builtin_sym_end] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1070] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [sym_variable_name] = ACTIONS(2299), + [ts_builtin_sym_end] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_RPAREN] = ACTIONS(2299), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2301), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [1071] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(3857), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1072] = { + [sym_concatenation] = STATE(1701), + [sym_string] = STATE(1700), + [sym_simple_expansion] = STATE(1700), + [sym_string_expansion] = STATE(1700), + [sym_expansion] = STATE(1700), + [sym_command_substitution] = STATE(1700), + [sym_process_substitution] = STATE(1700), + [anon_sym_RBRACE] = ACTIONS(3859), + [sym__special_characters] = ACTIONS(3861), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(3863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3863), + }, + [1073] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(3865), + [sym_comment] = ACTIONS(57), + }, + [1074] = { + [sym_concatenation] = STATE(1705), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1705), + [anon_sym_RBRACE] = ACTIONS(3867), + [anon_sym_EQ] = ACTIONS(3869), + [anon_sym_DASH] = ACTIONS(3869), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3873), + [anon_sym_COLON] = ACTIONS(3869), + [anon_sym_COLON_QMARK] = ACTIONS(3869), + [anon_sym_COLON_DASH] = ACTIONS(3869), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1075] = { + [sym_concatenation] = STATE(1707), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1707), + [anon_sym_RBRACE] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3875), + [anon_sym_DASH] = ACTIONS(3875), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3877), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3879), + [anon_sym_COLON] = ACTIONS(3875), + [anon_sym_COLON_QMARK] = ACTIONS(3875), + [anon_sym_COLON_DASH] = ACTIONS(3875), + [anon_sym_PERCENT] = ACTIONS(3875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1076] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [sym_variable_name] = ACTIONS(2392), + [ts_builtin_sym_end] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_RPAREN] = ACTIONS(2392), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2394), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [1077] = { + [sym_concatenation] = STATE(1710), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1710), + [sym_regex] = ACTIONS(3881), + [anon_sym_RBRACE] = ACTIONS(3883), + [anon_sym_EQ] = ACTIONS(3885), + [anon_sym_DASH] = ACTIONS(3885), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3887), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(3885), + [anon_sym_COLON_QMARK] = ACTIONS(3885), + [anon_sym_COLON_DASH] = ACTIONS(3885), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1078] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(3883), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1079] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [sym_variable_name] = ACTIONS(2440), + [ts_builtin_sym_end] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2442), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [1080] = { + [sym_concatenation] = STATE(1707), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1707), + [sym_regex] = ACTIONS(3889), + [anon_sym_RBRACE] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3875), + [anon_sym_DASH] = ACTIONS(3875), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3877), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(3875), + [anon_sym_COLON_QMARK] = ACTIONS(3875), + [anon_sym_COLON_DASH] = ACTIONS(3875), + [anon_sym_PERCENT] = ACTIONS(3875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1081] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1082] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [sym_variable_name] = ACTIONS(2446), + [ts_builtin_sym_end] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2448), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [1083] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [sym_variable_name] = ACTIONS(2484), + [ts_builtin_sym_end] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2486), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [1084] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [ts_builtin_sym_end] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1085] = { + [aux_sym_concatenation_repeat1] = STATE(1085), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(3891), + [ts_builtin_sym_end] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1086] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [ts_builtin_sym_end] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_RPAREN] = ACTIONS(2299), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2301), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [1087] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(3894), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1088] = { + [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(3896), + [sym__special_characters] = ACTIONS(3898), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(3900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3900), + }, + [1089] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(3902), + [sym_comment] = ACTIONS(57), + }, + [1090] = { + [sym_concatenation] = STATE(1720), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1720), + [anon_sym_RBRACE] = ACTIONS(3904), + [anon_sym_EQ] = ACTIONS(3906), + [anon_sym_DASH] = ACTIONS(3906), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3908), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3910), + [anon_sym_COLON] = ACTIONS(3906), + [anon_sym_COLON_QMARK] = ACTIONS(3906), + [anon_sym_COLON_DASH] = ACTIONS(3906), + [anon_sym_PERCENT] = ACTIONS(3906), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1091] = { + [sym_concatenation] = STATE(1722), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1722), + [anon_sym_RBRACE] = ACTIONS(3896), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_DASH] = ACTIONS(3912), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3914), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3916), + [anon_sym_COLON] = ACTIONS(3912), + [anon_sym_COLON_QMARK] = ACTIONS(3912), + [anon_sym_COLON_DASH] = ACTIONS(3912), + [anon_sym_PERCENT] = ACTIONS(3912), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1092] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [ts_builtin_sym_end] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_RPAREN] = ACTIONS(2392), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2394), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [1093] = { + [sym_concatenation] = STATE(1725), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1725), + [sym_regex] = ACTIONS(3918), + [anon_sym_RBRACE] = ACTIONS(3920), + [anon_sym_EQ] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(3922), + [anon_sym_COLON_QMARK] = ACTIONS(3922), + [anon_sym_COLON_DASH] = ACTIONS(3922), + [anon_sym_PERCENT] = ACTIONS(3922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1094] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(3920), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1095] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [ts_builtin_sym_end] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2442), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [1096] = { + [sym_concatenation] = STATE(1722), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1722), + [sym_regex] = ACTIONS(3926), + [anon_sym_RBRACE] = ACTIONS(3896), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_DASH] = ACTIONS(3912), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3914), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(3912), + [anon_sym_COLON_QMARK] = ACTIONS(3912), + [anon_sym_COLON_DASH] = ACTIONS(3912), + [anon_sym_PERCENT] = ACTIONS(3912), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1097] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(3896), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1098] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [ts_builtin_sym_end] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2448), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [1099] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [ts_builtin_sym_end] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2486), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [1100] = { + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2292), + }, + [1101] = { + [aux_sym_concatenation_repeat1] = STATE(1101), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(3928), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2292), + }, + [1102] = { + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [sym_variable_name] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2299), + }, + [1103] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(3931), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1104] = { + [sym_concatenation] = STATE(1731), + [sym_string] = STATE(1730), + [sym_simple_expansion] = STATE(1730), + [sym_string_expansion] = STATE(1730), + [sym_expansion] = STATE(1730), + [sym_command_substitution] = STATE(1730), + [sym_process_substitution] = STATE(1730), + [anon_sym_RBRACE] = ACTIONS(3933), + [sym__special_characters] = ACTIONS(3935), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(3937), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3937), + }, + [1105] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(3939), + [sym_comment] = ACTIONS(57), + }, + [1106] = { + [sym_concatenation] = STATE(1735), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1735), + [anon_sym_RBRACE] = ACTIONS(3941), + [anon_sym_EQ] = ACTIONS(3943), + [anon_sym_DASH] = ACTIONS(3943), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3945), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3943), + [anon_sym_COLON_QMARK] = ACTIONS(3943), + [anon_sym_COLON_DASH] = ACTIONS(3943), + [anon_sym_PERCENT] = ACTIONS(3943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1107] = { + [sym_concatenation] = STATE(1737), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1737), + [anon_sym_RBRACE] = ACTIONS(3933), + [anon_sym_EQ] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3951), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3953), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_COLON_QMARK] = ACTIONS(3949), + [anon_sym_COLON_DASH] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1108] = { + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [sym_variable_name] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2392), + }, + [1109] = { + [sym_concatenation] = STATE(1740), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1740), + [sym_regex] = ACTIONS(3955), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3959), + [anon_sym_DASH] = ACTIONS(3959), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(3959), + [anon_sym_COLON_QMARK] = ACTIONS(3959), + [anon_sym_COLON_DASH] = ACTIONS(3959), + [anon_sym_PERCENT] = ACTIONS(3959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1110] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1111] = { + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [sym_variable_name] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2440), + }, + [1112] = { + [sym_concatenation] = STATE(1737), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1737), + [sym_regex] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3933), + [anon_sym_EQ] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3951), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_COLON_QMARK] = ACTIONS(3949), + [anon_sym_COLON_DASH] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1113] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(3933), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1114] = { + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [sym_variable_name] = 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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2446), + }, + [1115] = { + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [sym_variable_name] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2484), + }, + [1116] = { + [anon_sym_DQUOTE] = ACTIONS(3965), + [anon_sym_DOLLAR] = ACTIONS(3965), + [sym__string_content] = ACTIONS(3967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3965), + [anon_sym_BQUOTE] = ACTIONS(3965), + [sym_comment] = ACTIONS(343), + }, + [1117] = { + [sym_concatenation] = STATE(1745), + [sym_string] = STATE(1744), + [sym_simple_expansion] = STATE(1744), + [sym_string_expansion] = STATE(1744), + [sym_expansion] = STATE(1744), + [sym_command_substitution] = STATE(1744), + [sym_process_substitution] = STATE(1744), + [anon_sym_RBRACE] = ACTIONS(3969), + [sym__special_characters] = ACTIONS(3971), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(3973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3973), + }, + [1118] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(3975), + [sym_comment] = ACTIONS(57), + }, + [1119] = { + [sym_concatenation] = STATE(1749), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1749), + [anon_sym_RBRACE] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3979), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3981), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3983), + [anon_sym_COLON] = ACTIONS(3979), + [anon_sym_COLON_QMARK] = ACTIONS(3979), + [anon_sym_COLON_DASH] = ACTIONS(3979), + [anon_sym_PERCENT] = ACTIONS(3979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1120] = { + [sym_concatenation] = STATE(1751), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1751), + [anon_sym_RBRACE] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3987), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(3989), + [anon_sym_COLON] = ACTIONS(3985), + [anon_sym_COLON_QMARK] = ACTIONS(3985), + [anon_sym_COLON_DASH] = ACTIONS(3985), + [anon_sym_PERCENT] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1121] = { + [sym__concat] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2394), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym__string_content] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2394), + [anon_sym_BQUOTE] = ACTIONS(2394), + [sym_comment] = ACTIONS(343), + }, + [1122] = { + [sym_concatenation] = STATE(1754), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1754), + [sym_regex] = ACTIONS(3991), + [anon_sym_RBRACE] = ACTIONS(3993), + [anon_sym_EQ] = ACTIONS(3995), + [anon_sym_DASH] = ACTIONS(3995), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3997), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(3995), + [anon_sym_COLON_QMARK] = ACTIONS(3995), + [anon_sym_COLON_DASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1123] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(3993), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1124] = { + [sym__concat] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2442), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym__string_content] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2442), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2442), + [anon_sym_BQUOTE] = ACTIONS(2442), + [sym_comment] = ACTIONS(343), + }, + [1125] = { + [sym_concatenation] = STATE(1751), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1751), + [sym_regex] = ACTIONS(3999), + [anon_sym_RBRACE] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3987), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(3985), + [anon_sym_COLON_QMARK] = ACTIONS(3985), + [anon_sym_COLON_DASH] = ACTIONS(3985), + [anon_sym_PERCENT] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1126] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1127] = { + [sym__concat] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym__string_content] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2448), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2448), + [anon_sym_BQUOTE] = ACTIONS(2448), + [sym_comment] = ACTIONS(343), + }, + [1128] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [ts_builtin_sym_end] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_RPAREN] = ACTIONS(4001), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_EQ_TILDE] = ACTIONS(4003), + [anon_sym_EQ_EQ] = ACTIONS(4003), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [1129] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1130] = { + [aux_sym_concatenation_repeat1] = STATE(655), + [sym__concat] = ACTIONS(4005), + [anon_sym_RBRACK] = ACTIONS(4007), + [sym_comment] = ACTIONS(57), + }, + [1131] = { + [aux_sym_concatenation_repeat1] = STATE(655), + [sym__concat] = ACTIONS(4009), + [anon_sym_RBRACK] = ACTIONS(4011), + [sym_comment] = ACTIONS(57), + }, + [1132] = { + [sym__concat] = ACTIONS(4013), + [anon_sym_RBRACK] = ACTIONS(4011), + [sym_comment] = ACTIONS(57), + }, + [1133] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [ts_builtin_sym_end] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_RPAREN] = ACTIONS(4015), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_EQ_TILDE] = ACTIONS(4017), + [anon_sym_EQ_EQ] = ACTIONS(4017), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [1134] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(4021), + [sym_comment] = ACTIONS(57), + }, + [1135] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(1766), + [anon_sym_DQUOTE] = ACTIONS(4023), + [anon_sym_DOLLAR] = ACTIONS(4025), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [1136] = { + [sym_string] = STATE(1768), + [anon_sym_DASH] = ACTIONS(4027), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(4027), + [sym_raw_string] = ACTIONS(4029), + [anon_sym_POUND] = ACTIONS(4027), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4031), + [anon_sym_STAR] = ACTIONS(4033), + [anon_sym_AT] = ACTIONS(4033), + [anon_sym_QMARK] = ACTIONS(4033), + [anon_sym_0] = ACTIONS(4031), + [anon_sym__] = ACTIONS(4031), + }, + [1137] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(4035), + [sym_comment] = ACTIONS(57), + }, + [1138] = { + [sym_subscript] = STATE(1774), + [sym_variable_name] = ACTIONS(4037), + [anon_sym_BANG] = ACTIONS(4039), + [anon_sym_DASH] = ACTIONS(4041), + [anon_sym_DOLLAR] = ACTIONS(4041), + [anon_sym_POUND] = ACTIONS(4039), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4043), + [anon_sym_STAR] = ACTIONS(4045), + [anon_sym_AT] = ACTIONS(4045), + [anon_sym_QMARK] = ACTIONS(4045), + [anon_sym_0] = ACTIONS(4043), + [anon_sym__] = ACTIONS(4043), + }, + [1139] = { + [sym__statements] = STATE(1775), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [1140] = { + [sym__statements] = STATE(1776), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [1141] = { + [sym__statements] = STATE(1777), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [1142] = { + [anon_sym_RBRACE] = ACTIONS(4035), + [sym_comment] = ACTIONS(57), + }, + [1143] = { + [sym_concatenation] = STATE(1780), + [sym_string] = STATE(1779), + [sym_simple_expansion] = STATE(1779), + [sym_string_expansion] = STATE(1779), + [sym_expansion] = STATE(1779), + [sym_command_substitution] = STATE(1779), + [sym_process_substitution] = STATE(1779), + [anon_sym_RBRACE] = ACTIONS(4035), + [sym__special_characters] = ACTIONS(4047), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(4049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4049), + }, + [1144] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [ts_builtin_sym_end] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_RPAREN] = ACTIONS(4051), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_EQ_TILDE] = ACTIONS(4053), + [anon_sym_EQ_EQ] = ACTIONS(4053), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [1145] = { + [sym_concatenation] = STATE(1783), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1783), + [sym_regex] = ACTIONS(4055), + [anon_sym_RBRACE] = ACTIONS(4057), + [anon_sym_EQ] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4059), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(4059), + [anon_sym_COLON_QMARK] = ACTIONS(4059), + [anon_sym_COLON_DASH] = ACTIONS(4059), + [anon_sym_PERCENT] = ACTIONS(4059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1146] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4057), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1147] = { + [sym_concatenation] = STATE(1785), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1785), + [sym_regex] = ACTIONS(4063), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(4065), + [anon_sym_DASH] = ACTIONS(4065), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(4065), + [anon_sym_COLON_QMARK] = ACTIONS(4065), + [anon_sym_COLON_DASH] = ACTIONS(4065), + [anon_sym_PERCENT] = ACTIONS(4065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1148] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1149] = { + [sym_string] = STATE(1786), + [sym_simple_expansion] = STATE(1786), + [sym_string_expansion] = STATE(1786), + [sym_expansion] = STATE(1786), + [sym_command_substitution] = STATE(1786), + [sym_process_substitution] = STATE(1786), + [sym__special_characters] = ACTIONS(4069), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(4069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4069), + }, + [1150] = { + [aux_sym_concatenation_repeat1] = STATE(1787), + [sym__concat] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [sym__special_characters] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_POUND] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_COLON] = ACTIONS(1045), + [anon_sym_COLON_QMARK] = ACTIONS(1045), + [anon_sym_COLON_DASH] = ACTIONS(1045), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1045), + }, + [1151] = { + [sym__concat] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [sym__special_characters] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_COLON] = ACTIONS(1049), + [anon_sym_COLON_QMARK] = ACTIONS(1049), + [anon_sym_COLON_DASH] = ACTIONS(1049), + [anon_sym_PERCENT] = ACTIONS(1049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1049), + }, + [1152] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(4071), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1153] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(4071), + [anon_sym_DOLLAR] = ACTIONS(4073), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [1154] = { + [sym__concat] = ACTIONS(1081), + [anon_sym_RBRACE] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [sym__special_characters] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_COLON] = ACTIONS(1083), + [anon_sym_COLON_QMARK] = ACTIONS(1083), + [anon_sym_COLON_DASH] = ACTIONS(1083), + [anon_sym_PERCENT] = ACTIONS(1083), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1083), + }, + [1155] = { + [sym__concat] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1085), + [anon_sym_EQ] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [sym__special_characters] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1087), + [sym_raw_string] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(1085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), + [anon_sym_COLON] = ACTIONS(1087), + [anon_sym_COLON_QMARK] = ACTIONS(1087), + [anon_sym_COLON_DASH] = ACTIONS(1087), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(343), + [sym_word] = ACTIONS(1087), + }, + [1156] = { + [sym__concat] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_EQ] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [sym__special_characters] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_POUND] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_COLON] = ACTIONS(1091), + [anon_sym_COLON_QMARK] = ACTIONS(1091), + [anon_sym_COLON_DASH] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1091), + }, + [1157] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(4075), + [sym_comment] = ACTIONS(57), + }, + [1158] = { + [sym_subscript] = STATE(1793), + [sym_variable_name] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_DOLLAR] = ACTIONS(4079), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4081), + [anon_sym_STAR] = ACTIONS(4083), + [anon_sym_AT] = ACTIONS(4083), + [anon_sym_QMARK] = ACTIONS(4083), + [anon_sym_0] = ACTIONS(4081), + [anon_sym__] = ACTIONS(4081), + }, + [1159] = { + [sym_concatenation] = STATE(1796), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1796), + [anon_sym_RBRACE] = ACTIONS(4085), + [anon_sym_EQ] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4091), + [anon_sym_COLON] = ACTIONS(4087), + [anon_sym_COLON_QMARK] = ACTIONS(4087), + [anon_sym_COLON_DASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1160] = { + [sym_concatenation] = STATE(1799), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1799), + [anon_sym_RBRACE] = ACTIONS(4093), + [anon_sym_EQ] = ACTIONS(4095), + [anon_sym_DASH] = ACTIONS(4095), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4097), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4099), + [anon_sym_COLON] = ACTIONS(4095), + [anon_sym_COLON_QMARK] = ACTIONS(4095), + [anon_sym_COLON_DASH] = ACTIONS(4095), + [anon_sym_PERCENT] = ACTIONS(4095), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1161] = { + [sym_concatenation] = STATE(1801), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1801), + [anon_sym_RBRACE] = ACTIONS(4101), + [anon_sym_EQ] = ACTIONS(4103), + [anon_sym_DASH] = ACTIONS(4103), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [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(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1162] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [ts_builtin_sym_end] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_RPAREN] = ACTIONS(4107), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_EQ_TILDE] = ACTIONS(4109), + [anon_sym_EQ_EQ] = ACTIONS(4109), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [1163] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4101), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1164] = { + [anon_sym_RPAREN] = ACTIONS(4111), + [sym_comment] = ACTIONS(57), + }, + [1165] = { + [anon_sym_BQUOTE] = ACTIONS(4111), + [sym_comment] = ACTIONS(57), + }, + [1166] = { + [anon_sym_RPAREN] = ACTIONS(4113), + [sym_comment] = ACTIONS(57), + }, + [1167] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4115), + [anon_sym_EQ] = ACTIONS(4117), + [anon_sym_DASH] = ACTIONS(4117), + [sym__special_characters] = ACTIONS(4120), + [anon_sym_DQUOTE] = ACTIONS(4123), + [anon_sym_DOLLAR] = ACTIONS(4126), + [sym_raw_string] = ACTIONS(4129), + [anon_sym_POUND] = ACTIONS(4132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4135), + [anon_sym_COLON] = ACTIONS(4117), + [anon_sym_COLON_QMARK] = ACTIONS(4117), + [anon_sym_COLON_DASH] = ACTIONS(4117), + [anon_sym_PERCENT] = ACTIONS(4117), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4141), + [anon_sym_LT_LPAREN] = ACTIONS(4144), + [anon_sym_GT_LPAREN] = ACTIONS(4144), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(4147), + }, + [1168] = { + [sym_concatenation] = STATE(1785), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1785), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(4065), + [anon_sym_DASH] = ACTIONS(4065), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(4065), + [anon_sym_COLON_QMARK] = ACTIONS(4065), + [anon_sym_COLON_DASH] = ACTIONS(4065), + [anon_sym_PERCENT] = ACTIONS(4065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1169] = { + [aux_sym_concatenation_repeat1] = STATE(1804), + [sym__simple_heredoc_body] = ACTIONS(1393), + [sym__heredoc_body_beginning] = ACTIONS(1393), + [sym_file_descriptor] = ACTIONS(1393), + [sym__concat] = ACTIONS(1395), + [sym_variable_name] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_SEMI_SEMI] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_AMP_GT] = ACTIONS(1397), + [anon_sym_AMP_GT_GT] = ACTIONS(1393), + [anon_sym_LT_AMP] = ACTIONS(1393), + [anon_sym_GT_AMP] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_LT_LT_DASH] = ACTIONS(1393), + [anon_sym_LT_LT_LT] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1397), + [sym_raw_string] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1393), + [anon_sym_GT_LPAREN] = ACTIONS(1393), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1397), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1397), + }, + [1170] = { + [aux_sym_concatenation_repeat1] = STATE(1804), + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym__concat] = ACTIONS(1395), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [1171] = { + [sym_concatenation] = STATE(1064), + [sym_string] = STATE(1806), + [sym_array] = STATE(1064), + [sym_simple_expansion] = STATE(1806), + [sym_string_expansion] = STATE(1806), + [sym_expansion] = STATE(1806), + [sym_command_substitution] = STATE(1806), + [sym_process_substitution] = STATE(1806), + [sym__empty_value] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [sym__special_characters] = ACTIONS(4150), + [anon_sym_DQUOTE] = ACTIONS(267), + [anon_sym_DOLLAR] = ACTIONS(269), + [sym_raw_string] = ACTIONS(4152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(273), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(277), + [anon_sym_LT_LPAREN] = ACTIONS(279), + [anon_sym_GT_LPAREN] = ACTIONS(279), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4152), + }, + [1172] = { + [aux_sym_concatenation_repeat1] = STATE(1807), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(935), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1045), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [1173] = { + [sym_variable_assignment] = STATE(1173), + [sym_subscript] = STATE(596), + [sym_concatenation] = STATE(1173), + [sym_string] = STATE(595), + [sym_simple_expansion] = STATE(595), + [sym_string_expansion] = STATE(595), + [sym_expansion] = STATE(595), + [sym_command_substitution] = STATE(595), + [sym_process_substitution] = STATE(595), + [aux_sym_declaration_command_repeat1] = STATE(1173), + [sym__simple_heredoc_body] = ACTIONS(2149), + [sym__heredoc_body_beginning] = ACTIONS(2149), + [sym_file_descriptor] = ACTIONS(2149), + [sym_variable_name] = ACTIONS(4154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_SEMI_SEMI] = ACTIONS(2149), + [anon_sym_PIPE_AMP] = ACTIONS(2149), + [anon_sym_AMP_AMP] = ACTIONS(2149), + [anon_sym_PIPE_PIPE] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_GT] = ACTIONS(2154), + [anon_sym_GT_GT] = ACTIONS(2149), + [anon_sym_AMP_GT] = ACTIONS(2154), + [anon_sym_AMP_GT_GT] = ACTIONS(2149), + [anon_sym_LT_AMP] = ACTIONS(2149), + [anon_sym_GT_AMP] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2154), + [anon_sym_LT_LT_DASH] = ACTIONS(2149), + [anon_sym_LT_LT_LT] = ACTIONS(2149), + [sym__special_characters] = ACTIONS(4157), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_DOLLAR] = ACTIONS(2162), + [sym_raw_string] = ACTIONS(4160), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2168), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2171), + [anon_sym_BQUOTE] = ACTIONS(2174), + [anon_sym_LT_LPAREN] = ACTIONS(2177), + [anon_sym_GT_LPAREN] = ACTIONS(2177), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4163), + [sym_word] = ACTIONS(4166), + [anon_sym_LF] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2154), + }, + [1174] = { + [aux_sym_concatenation_repeat1] = STATE(1808), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1045), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [1175] = { + [sym_concatenation] = STATE(1175), + [sym_string] = STATE(599), + [sym_simple_expansion] = STATE(599), + [sym_string_expansion] = STATE(599), + [sym_expansion] = STATE(599), + [sym_command_substitution] = STATE(599), + [sym_process_substitution] = STATE(599), + [aux_sym_unset_command_repeat1] = STATE(1175), + [sym__simple_heredoc_body] = ACTIONS(2222), + [sym__heredoc_body_beginning] = ACTIONS(2222), + [sym_file_descriptor] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_SEMI_SEMI] = ACTIONS(2222), + [anon_sym_PIPE_AMP] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2222), + [anon_sym_AMP_GT] = ACTIONS(2224), + [anon_sym_AMP_GT_GT] = ACTIONS(2222), + [anon_sym_LT_AMP] = ACTIONS(2222), + [anon_sym_GT_AMP] = ACTIONS(2222), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_LT_LT_DASH] = ACTIONS(2222), + [anon_sym_LT_LT_LT] = ACTIONS(2222), + [sym__special_characters] = ACTIONS(4169), + [anon_sym_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2232), + [sym_raw_string] = ACTIONS(4172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2241), + [anon_sym_BQUOTE] = ACTIONS(2244), + [anon_sym_LT_LPAREN] = ACTIONS(2247), + [anon_sym_GT_LPAREN] = ACTIONS(2247), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4175), + [sym_word] = ACTIONS(4178), + [anon_sym_LF] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2224), + }, + [1176] = { + [aux_sym_concatenation_repeat1] = STATE(1176), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1177] = { + [sym_concatenation] = STATE(1207), + [sym_string] = STATE(1810), + [sym_simple_expansion] = STATE(1810), + [sym_string_expansion] = STATE(1810), + [sym_expansion] = STATE(1810), + [sym_command_substitution] = STATE(1810), + [sym_process_substitution] = STATE(1810), + [sym__special_characters] = ACTIONS(4181), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(4183), + [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(4183), + }, + [1178] = { + [sym_file_redirect] = STATE(609), + [sym_heredoc_redirect] = STATE(609), + [sym_herestring_redirect] = STATE(609), + [aux_sym_redirected_statement_repeat1] = STATE(609), + [sym__simple_heredoc_body] = ACTIONS(2516), + [sym__heredoc_body_beginning] = ACTIONS(2516), + [sym_file_descriptor] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), + [anon_sym_BQUOTE] = ACTIONS(2516), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), + }, + [1179] = { + [sym_file_redirect] = STATE(609), + [sym_heredoc_redirect] = STATE(609), + [sym_herestring_redirect] = STATE(609), + [aux_sym_redirected_statement_repeat1] = STATE(609), + [sym__simple_heredoc_body] = ACTIONS(2516), + [sym__heredoc_body_beginning] = ACTIONS(2516), + [sym_file_descriptor] = ACTIONS(2516), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(2516), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), + }, + [1180] = { + [sym_file_redirect] = STATE(609), + [sym_heredoc_redirect] = STATE(609), + [sym_herestring_redirect] = STATE(609), + [aux_sym_redirected_statement_repeat1] = STATE(609), + [sym__simple_heredoc_body] = ACTIONS(2520), + [sym__heredoc_body_beginning] = ACTIONS(2520), + [sym_file_descriptor] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(1165), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2520), + [anon_sym_AMP_GT] = ACTIONS(2522), + [anon_sym_AMP_GT_GT] = ACTIONS(2520), + [anon_sym_LT_AMP] = ACTIONS(2520), + [anon_sym_GT_AMP] = ACTIONS(2520), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + }, + [1181] = { + [sym_file_redirect] = STATE(609), + [sym_heredoc_redirect] = STATE(609), + [sym_herestring_redirect] = STATE(609), + [aux_sym_redirected_statement_repeat1] = STATE(609), + [sym__simple_heredoc_body] = ACTIONS(2520), + [sym__heredoc_body_beginning] = ACTIONS(2520), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(1165), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + }, + [1182] = { + [aux_sym_concatenation_repeat1] = STATE(1811), + [sym__simple_heredoc_body] = ACTIONS(1009), + [sym__heredoc_body_beginning] = ACTIONS(1009), + [sym_file_descriptor] = ACTIONS(1009), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_SEMI_SEMI] = ACTIONS(1009), + [anon_sym_PIPE_AMP] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1009), + [anon_sym_PIPE_PIPE] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_GT] = ACTIONS(1013), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(1013), + [anon_sym_AMP_GT_GT] = ACTIONS(1009), + [anon_sym_LT_AMP] = ACTIONS(1009), + [anon_sym_GT_AMP] = ACTIONS(1009), + [anon_sym_LT_LT] = ACTIONS(1013), + [anon_sym_LT_LT_DASH] = ACTIONS(1009), + [anon_sym_LT_LT_LT] = ACTIONS(1009), + [anon_sym_BQUOTE] = ACTIONS(1009), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1013), + }, + [1183] = { + [aux_sym_concatenation_repeat1] = STATE(1811), + [sym__simple_heredoc_body] = ACTIONS(1027), + [sym__heredoc_body_beginning] = ACTIONS(1027), + [sym_file_descriptor] = ACTIONS(1027), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_SEMI_SEMI] = ACTIONS(1027), + [anon_sym_PIPE_AMP] = ACTIONS(1027), + [anon_sym_AMP_AMP] = ACTIONS(1027), + [anon_sym_PIPE_PIPE] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_AMP_GT] = ACTIONS(1029), + [anon_sym_AMP_GT_GT] = ACTIONS(1027), + [anon_sym_LT_AMP] = ACTIONS(1027), + [anon_sym_GT_AMP] = ACTIONS(1027), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_LT_LT_DASH] = ACTIONS(1027), + [anon_sym_LT_LT_LT] = ACTIONS(1027), + [anon_sym_BQUOTE] = ACTIONS(1027), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + }, + [1184] = { + [aux_sym_concatenation_repeat1] = STATE(1811), + [sym__simple_heredoc_body] = ACTIONS(2528), + [sym__heredoc_body_beginning] = ACTIONS(2528), + [sym_file_descriptor] = ACTIONS(2528), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_PIPE] = ACTIONS(2530), + [anon_sym_SEMI_SEMI] = ACTIONS(2528), + [anon_sym_PIPE_AMP] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_GT] = ACTIONS(2530), + [anon_sym_GT_GT] = ACTIONS(2528), + [anon_sym_AMP_GT] = ACTIONS(2530), + [anon_sym_AMP_GT_GT] = ACTIONS(2528), + [anon_sym_LT_AMP] = ACTIONS(2528), + [anon_sym_GT_AMP] = ACTIONS(2528), + [anon_sym_LT_LT] = ACTIONS(2530), + [anon_sym_LT_LT_DASH] = ACTIONS(2528), + [anon_sym_LT_LT_LT] = ACTIONS(2528), + [anon_sym_BQUOTE] = ACTIONS(2528), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2530), + }, + [1185] = { + [aux_sym_concatenation_repeat1] = STATE(1811), + [sym__simple_heredoc_body] = ACTIONS(2532), + [sym__heredoc_body_beginning] = ACTIONS(2532), + [sym_file_descriptor] = ACTIONS(2532), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_SEMI_SEMI] = ACTIONS(2532), + [anon_sym_PIPE_AMP] = ACTIONS(2532), + [anon_sym_AMP_AMP] = ACTIONS(2532), + [anon_sym_PIPE_PIPE] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_AMP_GT] = ACTIONS(2534), + [anon_sym_AMP_GT_GT] = ACTIONS(2532), + [anon_sym_LT_AMP] = ACTIONS(2532), + [anon_sym_GT_AMP] = ACTIONS(2532), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_LT_LT_DASH] = ACTIONS(2532), + [anon_sym_LT_LT_LT] = ACTIONS(2532), + [anon_sym_BQUOTE] = ACTIONS(2532), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2534), + }, + [1186] = { + [sym_file_descriptor] = ACTIONS(2536), + [sym_variable_name] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_LPAREN_LPAREN] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2540), + [anon_sym_typeset] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_readonly] = ACTIONS(2540), + [anon_sym_local] = ACTIONS(2540), + [anon_sym_unset] = ACTIONS(2540), + [anon_sym_unsetenv] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_GT] = ACTIONS(2540), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_AMP_GT] = ACTIONS(2540), + [anon_sym_AMP_GT_GT] = ACTIONS(2536), + [anon_sym_LT_AMP] = ACTIONS(2536), + [anon_sym_GT_AMP] = ACTIONS(2536), + [sym__special_characters] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2536), + [anon_sym_DOLLAR] = ACTIONS(2540), + [sym_raw_string] = ACTIONS(2536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2536), + [anon_sym_BQUOTE] = ACTIONS(2538), + [anon_sym_LT_LPAREN] = ACTIONS(2536), + [anon_sym_GT_LPAREN] = ACTIONS(2536), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2540), + }, + [1187] = { + [sym_file_redirect] = STATE(1187), + [sym_heredoc_redirect] = STATE(1187), + [sym_herestring_redirect] = STATE(1187), + [aux_sym_redirected_statement_repeat1] = STATE(1187), + [sym__simple_heredoc_body] = ACTIONS(2542), + [sym__heredoc_body_beginning] = ACTIONS(2542), + [sym_file_descriptor] = ACTIONS(4185), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_SEMI_SEMI] = ACTIONS(2542), + [anon_sym_PIPE_AMP] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(4188), + [anon_sym_GT] = ACTIONS(4188), + [anon_sym_GT_GT] = ACTIONS(4191), + [anon_sym_AMP_GT] = ACTIONS(4188), + [anon_sym_AMP_GT_GT] = ACTIONS(4191), + [anon_sym_LT_AMP] = ACTIONS(4191), + [anon_sym_GT_AMP] = ACTIONS(4191), + [anon_sym_LT_LT] = ACTIONS(2555), + [anon_sym_LT_LT_DASH] = ACTIONS(2558), + [anon_sym_LT_LT_LT] = ACTIONS(4194), + [anon_sym_BQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2547), + }, + [1188] = { + [aux_sym_concatenation_repeat1] = STATE(601), + [sym__simple_heredoc_body] = ACTIONS(2568), + [sym__heredoc_body_beginning] = ACTIONS(2568), + [sym_file_descriptor] = ACTIONS(2568), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_SEMI_SEMI] = ACTIONS(2568), + [anon_sym_PIPE_AMP] = ACTIONS(2568), + [anon_sym_AMP_AMP] = ACTIONS(2568), + [anon_sym_PIPE_PIPE] = ACTIONS(2568), + [anon_sym_EQ_TILDE] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_AMP_GT] = ACTIONS(2570), + [anon_sym_AMP_GT_GT] = ACTIONS(2568), + [anon_sym_LT_AMP] = ACTIONS(2568), + [anon_sym_GT_AMP] = ACTIONS(2568), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_LT_LT_DASH] = ACTIONS(2568), + [anon_sym_LT_LT_LT] = ACTIONS(2568), + [sym__special_characters] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2568), + [anon_sym_DOLLAR] = ACTIONS(2570), + [sym_raw_string] = ACTIONS(2568), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2568), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2568), + [anon_sym_BQUOTE] = ACTIONS(2568), + [anon_sym_LT_LPAREN] = ACTIONS(2568), + [anon_sym_GT_LPAREN] = ACTIONS(2568), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2570), + [anon_sym_LF] = ACTIONS(2568), + [anon_sym_AMP] = ACTIONS(2570), + }, + [1189] = { + [aux_sym_concatenation_repeat1] = STATE(601), + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(2566), + [anon_sym_EQ_EQ] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2566), + [sym_raw_string] = ACTIONS(2564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2564), + [anon_sym_LT_LPAREN] = ACTIONS(2564), + [anon_sym_GT_LPAREN] = ACTIONS(2564), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2566), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [1190] = { + [sym_concatenation] = STATE(1190), + [sym_string] = STATE(612), + [sym_simple_expansion] = STATE(612), + [sym_string_expansion] = STATE(612), + [sym_expansion] = STATE(612), + [sym_command_substitution] = STATE(612), + [sym_process_substitution] = STATE(612), + [aux_sym_command_repeat2] = STATE(1190), + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(4197), + [anon_sym_EQ_EQ] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(4200), + [anon_sym_DQUOTE] = ACTIONS(2578), + [anon_sym_DOLLAR] = ACTIONS(2581), + [sym_raw_string] = ACTIONS(4203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2587), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2590), + [anon_sym_BQUOTE] = ACTIONS(2593), + [anon_sym_LT_LPAREN] = ACTIONS(2596), + [anon_sym_GT_LPAREN] = ACTIONS(2596), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4206), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [1191] = { + [sym_file_descriptor] = ACTIONS(1213), + [sym_variable_name] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_function] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_typeset] = ACTIONS(1217), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_local] = ACTIONS(1217), + [anon_sym_unset] = ACTIONS(1217), + [anon_sym_unsetenv] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_GT] = ACTIONS(1213), + [anon_sym_AMP_GT] = ACTIONS(1217), + [anon_sym_AMP_GT_GT] = ACTIONS(1213), + [anon_sym_LT_AMP] = ACTIONS(1213), + [anon_sym_GT_AMP] = ACTIONS(1213), + [sym__special_characters] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1217), + [sym_raw_string] = ACTIONS(1213), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1213), + [anon_sym_BQUOTE] = ACTIONS(2538), + [anon_sym_LT_LPAREN] = ACTIONS(1213), + [anon_sym_GT_LPAREN] = ACTIONS(1213), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1217), + }, + [1192] = { + [anon_sym_SEMI] = ACTIONS(4209), + [anon_sym_SEMI_SEMI] = ACTIONS(4211), + [anon_sym_BQUOTE] = ACTIONS(2538), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4211), + [anon_sym_AMP] = ACTIONS(4211), + }, + [1193] = { + [sym_concatenation] = STATE(1190), + [sym_string] = STATE(612), + [sym_simple_expansion] = STATE(612), + [sym_string_expansion] = STATE(612), + [sym_expansion] = STATE(612), + [sym_command_substitution] = STATE(612), + [sym_process_substitution] = STATE(612), + [aux_sym_command_repeat2] = STATE(1190), + [sym__simple_heredoc_body] = ACTIONS(2628), + [sym__heredoc_body_beginning] = ACTIONS(2628), + [sym_file_descriptor] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym_PIPE] = ACTIONS(2630), + [anon_sym_SEMI_SEMI] = ACTIONS(2628), + [anon_sym_PIPE_AMP] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_GT] = ACTIONS(2630), + [anon_sym_GT_GT] = ACTIONS(2628), + [anon_sym_AMP_GT] = ACTIONS(2630), + [anon_sym_AMP_GT_GT] = ACTIONS(2628), + [anon_sym_LT_AMP] = ACTIONS(2628), + [anon_sym_GT_AMP] = ACTIONS(2628), + [anon_sym_LT_LT] = ACTIONS(2630), + [anon_sym_LT_LT_DASH] = ACTIONS(2628), + [anon_sym_LT_LT_LT] = ACTIONS(2628), + [sym__special_characters] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(2628), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1185), + [anon_sym_LF] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2630), + }, + [1194] = { + [sym__simple_heredoc_body] = ACTIONS(4213), + [sym__heredoc_body_beginning] = ACTIONS(4213), + [sym_file_descriptor] = ACTIONS(4213), + [ts_builtin_sym_end] = ACTIONS(4213), + [anon_sym_SEMI] = ACTIONS(4215), + [anon_sym_done] = ACTIONS(4213), + [anon_sym_fi] = ACTIONS(4213), + [anon_sym_elif] = ACTIONS(4213), + [anon_sym_else] = ACTIONS(4213), + [anon_sym_esac] = ACTIONS(4213), + [anon_sym_PIPE] = ACTIONS(4215), + [anon_sym_RPAREN] = ACTIONS(4213), + [anon_sym_SEMI_SEMI] = ACTIONS(4213), + [anon_sym_PIPE_AMP] = ACTIONS(4213), + [anon_sym_AMP_AMP] = ACTIONS(4213), + [anon_sym_PIPE_PIPE] = ACTIONS(4213), + [anon_sym_LT] = ACTIONS(4215), + [anon_sym_GT] = ACTIONS(4215), + [anon_sym_GT_GT] = ACTIONS(4213), + [anon_sym_AMP_GT] = ACTIONS(4215), + [anon_sym_AMP_GT_GT] = ACTIONS(4213), + [anon_sym_LT_AMP] = ACTIONS(4213), + [anon_sym_GT_AMP] = ACTIONS(4213), + [anon_sym_LT_LT] = ACTIONS(4215), + [anon_sym_LT_LT_DASH] = ACTIONS(4213), + [anon_sym_LT_LT_LT] = ACTIONS(4213), + [anon_sym_BQUOTE] = ACTIONS(4213), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4213), + [anon_sym_AMP] = ACTIONS(4215), + }, + [1195] = { + [sym__heredoc_body_middle] = ACTIONS(1081), + [sym__heredoc_body_end] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + }, + [1196] = { + [sym__heredoc_body_middle] = ACTIONS(1089), + [sym__heredoc_body_end] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + }, + [1197] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(4217), + [sym_comment] = ACTIONS(57), + }, + [1198] = { + [sym_subscript] = STATE(1816), + [sym_variable_name] = ACTIONS(4219), + [anon_sym_DASH] = ACTIONS(4221), + [anon_sym_DOLLAR] = ACTIONS(4221), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(4225), + [anon_sym_AT] = ACTIONS(4225), + [anon_sym_QMARK] = ACTIONS(4225), + [anon_sym_0] = ACTIONS(4223), + [anon_sym__] = ACTIONS(4223), + }, + [1199] = { + [sym_concatenation] = STATE(1819), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1819), + [anon_sym_RBRACE] = ACTIONS(4227), + [anon_sym_EQ] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4233), + [anon_sym_COLON] = ACTIONS(4229), + [anon_sym_COLON_QMARK] = ACTIONS(4229), + [anon_sym_COLON_DASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4229), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1200] = { + [sym_concatenation] = STATE(1822), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1822), + [anon_sym_RBRACE] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_COLON] = ACTIONS(4237), + [anon_sym_COLON_QMARK] = ACTIONS(4237), + [anon_sym_COLON_DASH] = ACTIONS(4237), + [anon_sym_PERCENT] = ACTIONS(4237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1201] = { + [anon_sym_RPAREN] = ACTIONS(4243), + [sym_comment] = ACTIONS(57), + }, + [1202] = { + [anon_sym_BQUOTE] = ACTIONS(4243), + [sym_comment] = ACTIONS(57), + }, + [1203] = { + [ts_builtin_sym_end] = ACTIONS(4245), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_done] = ACTIONS(4245), + [anon_sym_fi] = ACTIONS(4245), + [anon_sym_elif] = ACTIONS(4245), + [anon_sym_else] = ACTIONS(4245), + [anon_sym_esac] = ACTIONS(4245), + [anon_sym_RPAREN] = ACTIONS(4245), + [anon_sym_SEMI_SEMI] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4245), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4245), + }, + [1204] = { + [sym_simple_expansion] = STATE(1204), + [sym_expansion] = STATE(1204), + [sym_command_substitution] = STATE(1204), + [aux_sym_heredoc_body_repeat1] = STATE(1204), + [sym__heredoc_body_middle] = ACTIONS(4249), + [sym__heredoc_body_end] = ACTIONS(4252), + [anon_sym_DOLLAR] = ACTIONS(4254), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4257), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4260), + [anon_sym_BQUOTE] = ACTIONS(4263), + [sym_comment] = ACTIONS(57), + }, + [1205] = { + [aux_sym_concatenation_repeat1] = STATE(1208), + [sym__simple_heredoc_body] = ACTIONS(1353), + [sym__heredoc_body_beginning] = ACTIONS(1353), + [sym_file_descriptor] = ACTIONS(1353), + [sym__concat] = ACTIONS(327), + [ts_builtin_sym_end] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_SEMI_SEMI] = ACTIONS(1353), + [anon_sym_PIPE_AMP] = ACTIONS(1353), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_GT] = ACTIONS(1355), + [anon_sym_GT_GT] = ACTIONS(1353), + [anon_sym_AMP_GT] = ACTIONS(1355), + [anon_sym_AMP_GT_GT] = ACTIONS(1353), + [anon_sym_LT_AMP] = ACTIONS(1353), + [anon_sym_GT_AMP] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(1355), + [anon_sym_LT_LT_DASH] = ACTIONS(1353), + [anon_sym_LT_LT_LT] = ACTIONS(1353), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1355), + }, + [1206] = { + [aux_sym_concatenation_repeat1] = STATE(1208), + [sym__simple_heredoc_body] = ACTIONS(1357), + [sym__heredoc_body_beginning] = ACTIONS(1357), + [sym_file_descriptor] = ACTIONS(1357), + [sym__concat] = ACTIONS(327), + [ts_builtin_sym_end] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_SEMI_SEMI] = ACTIONS(1357), + [anon_sym_PIPE_AMP] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1357), + [anon_sym_AMP_GT] = ACTIONS(1359), + [anon_sym_AMP_GT_GT] = ACTIONS(1357), + [anon_sym_LT_AMP] = ACTIONS(1357), + [anon_sym_GT_AMP] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_LT_LT_DASH] = ACTIONS(1357), + [anon_sym_LT_LT_LT] = ACTIONS(1357), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), + }, + [1207] = { + [sym__simple_heredoc_body] = ACTIONS(1357), + [sym__heredoc_body_beginning] = ACTIONS(1357), + [sym_file_descriptor] = ACTIONS(1357), + [ts_builtin_sym_end] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_done] = ACTIONS(1357), + [anon_sym_fi] = ACTIONS(1357), + [anon_sym_elif] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1357), + [anon_sym_esac] = ACTIONS(1357), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_RPAREN] = ACTIONS(1357), + [anon_sym_SEMI_SEMI] = ACTIONS(1357), + [anon_sym_PIPE_AMP] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1357), + [anon_sym_AMP_GT] = ACTIONS(1359), + [anon_sym_AMP_GT_GT] = ACTIONS(1357), + [anon_sym_LT_AMP] = ACTIONS(1357), + [anon_sym_GT_AMP] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_LT_LT_DASH] = ACTIONS(1357), + [anon_sym_LT_LT_LT] = ACTIONS(1357), + [anon_sym_BQUOTE] = ACTIONS(1357), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), + }, + [1208] = { + [aux_sym_concatenation_repeat1] = STATE(1824), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(327), + [ts_builtin_sym_end] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [1209] = { + [sym_file_descriptor] = ACTIONS(2536), + [sym_variable_name] = ACTIONS(2536), + [ts_builtin_sym_end] = ACTIONS(4266), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_LPAREN_LPAREN] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_RPAREN] = ACTIONS(4266), + [anon_sym_SEMI_SEMI] = ACTIONS(4266), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2540), + [anon_sym_typeset] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_readonly] = ACTIONS(2540), + [anon_sym_local] = ACTIONS(2540), + [anon_sym_unset] = ACTIONS(2540), + [anon_sym_unsetenv] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_GT] = ACTIONS(2540), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_AMP_GT] = ACTIONS(2540), + [anon_sym_AMP_GT_GT] = ACTIONS(2536), + [anon_sym_LT_AMP] = ACTIONS(2536), + [anon_sym_GT_AMP] = ACTIONS(2536), + [sym__special_characters] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2536), + [anon_sym_DOLLAR] = ACTIONS(2540), + [sym_raw_string] = ACTIONS(2536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2536), + [anon_sym_BQUOTE] = ACTIONS(2536), + [anon_sym_LT_LPAREN] = ACTIONS(2536), + [anon_sym_GT_LPAREN] = ACTIONS(2536), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2540), + }, + [1210] = { + [sym_variable_assignment] = STATE(1173), + [sym_subscript] = STATE(596), + [sym_concatenation] = STATE(1173), + [sym_string] = STATE(595), + [sym_simple_expansion] = STATE(595), + [sym_string_expansion] = STATE(595), + [sym_expansion] = STATE(595), + [sym_command_substitution] = STATE(595), + [sym_process_substitution] = STATE(595), + [aux_sym_declaration_command_repeat1] = STATE(1173), + [sym__simple_heredoc_body] = ACTIONS(965), + [sym__heredoc_body_beginning] = ACTIONS(965), + [sym_file_descriptor] = ACTIONS(965), + [sym_variable_name] = ACTIONS(1143), + [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_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(1145), + [anon_sym_DQUOTE] = ACTIONS(267), + [anon_sym_DOLLAR] = ACTIONS(269), + [sym_raw_string] = ACTIONS(1147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(273), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(277), + [anon_sym_LT_LPAREN] = ACTIONS(279), + [anon_sym_GT_LPAREN] = ACTIONS(279), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2456), + [sym_word] = ACTIONS(1151), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + }, + [1211] = { + [sym_concatenation] = STATE(1175), + [sym_string] = STATE(599), + [sym_simple_expansion] = STATE(599), + [sym_string_expansion] = STATE(599), + [sym_expansion] = STATE(599), + [sym_command_substitution] = STATE(599), + [sym_process_substitution] = STATE(599), + [aux_sym_unset_command_repeat1] = STATE(1175), + [sym__simple_heredoc_body] = ACTIONS(1003), + [sym__heredoc_body_beginning] = ACTIONS(1003), + [sym_file_descriptor] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_SEMI_SEMI] = ACTIONS(1003), + [anon_sym_PIPE_AMP] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_AMP_GT] = ACTIONS(1005), + [anon_sym_AMP_GT_GT] = ACTIONS(1003), + [anon_sym_LT_AMP] = ACTIONS(1003), + [anon_sym_GT_AMP] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_LT_LT_DASH] = ACTIONS(1003), + [anon_sym_LT_LT_LT] = ACTIONS(1003), + [sym__special_characters] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(1155), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(299), + [anon_sym_BQUOTE] = ACTIONS(301), + [anon_sym_LT_LPAREN] = ACTIONS(303), + [anon_sym_GT_LPAREN] = ACTIONS(303), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2458), + [sym_word] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1005), + }, + [1212] = { + [anon_sym_LT] = ACTIONS(4268), + [anon_sym_GT] = ACTIONS(4268), + [anon_sym_GT_GT] = ACTIONS(4270), + [anon_sym_AMP_GT] = ACTIONS(4268), + [anon_sym_AMP_GT_GT] = ACTIONS(4270), + [anon_sym_LT_AMP] = ACTIONS(4270), + [anon_sym_GT_AMP] = ACTIONS(4270), + [sym_comment] = ACTIONS(57), + }, + [1213] = { + [sym_file_descriptor] = ACTIONS(1213), + [sym_variable_name] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_function] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_typeset] = ACTIONS(1217), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_local] = ACTIONS(1217), + [anon_sym_unset] = ACTIONS(1217), + [anon_sym_unsetenv] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_GT] = ACTIONS(1213), + [anon_sym_AMP_GT] = ACTIONS(1217), + [anon_sym_AMP_GT_GT] = ACTIONS(1213), + [anon_sym_LT_AMP] = ACTIONS(1213), + [anon_sym_GT_AMP] = ACTIONS(1213), + [sym__special_characters] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1217), + [sym_raw_string] = ACTIONS(1213), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1213), + [anon_sym_BQUOTE] = ACTIONS(1213), + [anon_sym_LT_LPAREN] = ACTIONS(1213), + [anon_sym_GT_LPAREN] = ACTIONS(1213), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1217), + }, + [1214] = { + [sym_redirected_statement] = STATE(1826), + [sym_for_statement] = STATE(1826), + [sym_c_style_for_statement] = STATE(1826), + [sym_while_statement] = STATE(1826), + [sym_if_statement] = STATE(1826), + [sym_case_statement] = STATE(1826), + [sym_function_definition] = STATE(1826), + [sym_compound_statement] = STATE(1826), + [sym_subshell] = STATE(1826), + [sym_pipeline] = STATE(1826), + [sym_list] = STATE(1826), + [sym_negated_command] = STATE(1826), + [sym_test_command] = STATE(1826), + [sym_declaration_command] = STATE(1826), + [sym_unset_command] = STATE(1826), + [sym_command] = STATE(1826), + [sym_command_name] = STATE(649), + [sym_variable_assignment] = STATE(1827), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(651), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym_command_repeat1] = STATE(651), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(4272), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(4274), + [anon_sym_typeset] = ACTIONS(4274), + [anon_sym_export] = ACTIONS(4274), + [anon_sym_readonly] = ACTIONS(4274), + [anon_sym_local] = ACTIONS(4274), + [anon_sym_unset] = ACTIONS(4276), + [anon_sym_unsetenv] = ACTIONS(4276), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [1215] = { + [sym_redirected_statement] = STATE(1828), + [sym_for_statement] = STATE(1828), + [sym_c_style_for_statement] = STATE(1828), + [sym_while_statement] = STATE(1828), + [sym_if_statement] = STATE(1828), + [sym_case_statement] = STATE(1828), + [sym_function_definition] = STATE(1828), + [sym_compound_statement] = STATE(1828), + [sym_subshell] = STATE(1828), + [sym_pipeline] = STATE(1828), + [sym_list] = STATE(1828), + [sym_negated_command] = STATE(1828), + [sym_test_command] = STATE(1828), + [sym_declaration_command] = STATE(1828), + [sym_unset_command] = STATE(1828), + [sym_command] = STATE(1828), + [sym_command_name] = STATE(649), + [sym_variable_assignment] = STATE(1829), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(651), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym_command_repeat1] = STATE(651), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(4272), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(4274), + [anon_sym_typeset] = ACTIONS(4274), + [anon_sym_export] = ACTIONS(4274), + [anon_sym_readonly] = ACTIONS(4274), + [anon_sym_local] = ACTIONS(4274), + [anon_sym_unset] = ACTIONS(4276), + [anon_sym_unsetenv] = ACTIONS(4276), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [1216] = { + [sym_concatenation] = STATE(632), + [sym_string] = STATE(1831), + [sym_simple_expansion] = STATE(1831), + [sym_string_expansion] = STATE(1831), + [sym_expansion] = STATE(1831), + [sym_command_substitution] = STATE(1831), + [sym_process_substitution] = STATE(1831), + [sym__special_characters] = ACTIONS(4278), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(4280), + [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(4280), + }, + [1217] = { + [sym_concatenation] = STATE(636), + [sym_string] = STATE(1833), + [sym_simple_expansion] = STATE(1833), + [sym_string_expansion] = STATE(1833), + [sym_expansion] = STATE(1833), + [sym_command_substitution] = STATE(1833), + [sym_process_substitution] = STATE(1833), + [sym__special_characters] = ACTIONS(4282), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(4284), + [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(4284), + }, + [1218] = { + [anon_sym_SEMI] = ACTIONS(4286), + [anon_sym_SEMI_SEMI] = ACTIONS(4288), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(4288), + }, + [1219] = { + [sym_file_redirect] = STATE(1835), + [sym_heredoc_redirect] = STATE(1835), + [sym_herestring_redirect] = STATE(1835), + [aux_sym_redirected_statement_repeat1] = STATE(1835), + [sym__simple_heredoc_body] = ACTIONS(1233), + [sym__heredoc_body_beginning] = ACTIONS(1233), + [sym_file_descriptor] = ACTIONS(2610), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1233), + [anon_sym_PIPE_AMP] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(2622), + [anon_sym_GT] = ACTIONS(2622), + [anon_sym_GT_GT] = ACTIONS(2624), + [anon_sym_AMP_GT] = ACTIONS(2622), + [anon_sym_AMP_GT_GT] = ACTIONS(2624), + [anon_sym_LT_AMP] = ACTIONS(2624), + [anon_sym_GT_AMP] = ACTIONS(2624), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(2626), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1235), + }, + [1220] = { + [sym_concatenation] = STATE(1190), + [sym_string] = STATE(612), + [sym_simple_expansion] = STATE(612), + [sym_string_expansion] = STATE(612), + [sym_expansion] = STATE(612), + [sym_command_substitution] = STATE(612), + [sym_process_substitution] = STATE(612), + [aux_sym_command_repeat2] = STATE(1190), + [sym__simple_heredoc_body] = ACTIONS(1251), + [sym__heredoc_body_beginning] = ACTIONS(1251), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1183), + [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(1185), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + }, + [1221] = { + [sym_concatenation] = STATE(1836), + [sym_string] = STATE(612), + [sym_simple_expansion] = STATE(612), + [sym_string_expansion] = STATE(612), + [sym_expansion] = STATE(612), + [sym_command_substitution] = STATE(612), + [sym_process_substitution] = STATE(612), + [aux_sym_command_repeat2] = STATE(1836), + [sym__simple_heredoc_body] = ACTIONS(1251), + [sym__heredoc_body_beginning] = ACTIONS(1251), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1183), + [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(1185), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + }, + [1222] = { + [sym__concat] = ACTIONS(4290), + [anon_sym_EQ] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [sym_comment] = ACTIONS(57), + }, + [1223] = { + [anon_sym_EQ] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [sym_comment] = ACTIONS(57), + }, + [1224] = { + [aux_sym_concatenation_repeat1] = STATE(1224), + [sym__concat] = ACTIONS(3815), + [anon_sym_RBRACK] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + }, + [1225] = { + [sym__concat] = ACTIONS(4294), + [anon_sym_EQ] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [sym_comment] = ACTIONS(57), + }, + [1226] = { + [anon_sym_EQ] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [sym_comment] = ACTIONS(57), + }, + [1227] = { + [sym_string] = STATE(1839), + [sym_simple_expansion] = STATE(1839), + [sym_string_expansion] = STATE(1839), + [sym_expansion] = STATE(1839), + [sym_command_substitution] = STATE(1839), + [sym_process_substitution] = STATE(1839), + [sym__special_characters] = ACTIONS(4298), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(4298), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4298), + }, + [1228] = { + [aux_sym_concatenation_repeat1] = STATE(1840), + [sym__concat] = ACTIONS(2650), + [anon_sym_RPAREN] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1043), + }, + [1229] = { + [sym__concat] = ACTIONS(1047), + [anon_sym_RPAREN] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1047), + }, + [1230] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(4300), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1231] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(4300), + [anon_sym_DOLLAR] = ACTIONS(4302), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [1232] = { + [sym__concat] = ACTIONS(1081), + [anon_sym_RPAREN] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1081), + }, + [1233] = { + [sym__concat] = ACTIONS(1085), + [anon_sym_RPAREN] = 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), + }, + [1234] = { + [sym__concat] = ACTIONS(1089), + [anon_sym_RPAREN] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1089), + }, + [1235] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(4304), + [sym_comment] = ACTIONS(57), + }, + [1236] = { + [sym_subscript] = STATE(1846), + [sym_variable_name] = ACTIONS(4306), + [anon_sym_DASH] = ACTIONS(4308), + [anon_sym_DOLLAR] = ACTIONS(4308), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4310), + [anon_sym_STAR] = ACTIONS(4312), + [anon_sym_AT] = ACTIONS(4312), + [anon_sym_QMARK] = ACTIONS(4312), + [anon_sym_0] = ACTIONS(4310), + [anon_sym__] = ACTIONS(4310), + }, + [1237] = { + [sym_concatenation] = STATE(1849), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1849), + [anon_sym_RBRACE] = ACTIONS(4314), + [anon_sym_EQ] = ACTIONS(4316), + [anon_sym_DASH] = ACTIONS(4316), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4320), + [anon_sym_COLON] = ACTIONS(4316), + [anon_sym_COLON_QMARK] = ACTIONS(4316), + [anon_sym_COLON_DASH] = ACTIONS(4316), + [anon_sym_PERCENT] = ACTIONS(4316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1238] = { + [sym_concatenation] = STATE(1852), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1852), + [anon_sym_RBRACE] = ACTIONS(4322), + [anon_sym_EQ] = ACTIONS(4324), + [anon_sym_DASH] = ACTIONS(4324), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4328), + [anon_sym_COLON] = ACTIONS(4324), + [anon_sym_COLON_QMARK] = ACTIONS(4324), + [anon_sym_COLON_DASH] = ACTIONS(4324), + [anon_sym_PERCENT] = ACTIONS(4324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1239] = { + [anon_sym_RPAREN] = ACTIONS(4330), + [sym_comment] = ACTIONS(57), + }, + [1240] = { + [anon_sym_BQUOTE] = ACTIONS(4330), + [sym_comment] = ACTIONS(57), + }, + [1241] = { + [anon_sym_RPAREN] = ACTIONS(4332), + [sym_comment] = ACTIONS(57), + }, + [1242] = { + [sym__simple_heredoc_body] = ACTIONS(4334), + [sym__heredoc_body_beginning] = ACTIONS(4334), + [sym_file_descriptor] = ACTIONS(4334), + [sym_variable_name] = ACTIONS(4334), + [ts_builtin_sym_end] = ACTIONS(4334), + [anon_sym_SEMI] = ACTIONS(4336), + [anon_sym_PIPE] = ACTIONS(4336), + [anon_sym_RPAREN] = ACTIONS(4334), + [anon_sym_SEMI_SEMI] = ACTIONS(4334), + [anon_sym_PIPE_AMP] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4336), + [anon_sym_GT] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4334), + [anon_sym_AMP_GT] = ACTIONS(4336), + [anon_sym_AMP_GT_GT] = ACTIONS(4334), + [anon_sym_LT_AMP] = ACTIONS(4334), + [anon_sym_GT_AMP] = ACTIONS(4334), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_LT_LT_DASH] = ACTIONS(4334), + [anon_sym_LT_LT_LT] = ACTIONS(4334), + [sym__special_characters] = ACTIONS(4334), + [anon_sym_DQUOTE] = ACTIONS(4334), + [anon_sym_DOLLAR] = ACTIONS(4336), + [sym_raw_string] = ACTIONS(4334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4334), + [anon_sym_BQUOTE] = ACTIONS(4334), + [anon_sym_LT_LPAREN] = ACTIONS(4334), + [anon_sym_GT_LPAREN] = ACTIONS(4334), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4336), + [anon_sym_LF] = ACTIONS(4334), + [anon_sym_AMP] = ACTIONS(4336), + }, + [1243] = { + [sym_concatenation] = STATE(1243), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1243), + [anon_sym_RPAREN] = ACTIONS(4338), + [sym__special_characters] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4343), + [anon_sym_DOLLAR] = ACTIONS(4346), + [sym_raw_string] = ACTIONS(4349), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4355), + [anon_sym_BQUOTE] = ACTIONS(4358), + [anon_sym_LT_LPAREN] = ACTIONS(4361), + [anon_sym_GT_LPAREN] = ACTIONS(4361), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4349), + }, + [1244] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [sym_variable_name] = ACTIONS(2292), + [ts_builtin_sym_end] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1245] = { + [aux_sym_concatenation_repeat1] = STATE(1245), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(4364), + [sym_variable_name] = ACTIONS(2292), + [ts_builtin_sym_end] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1246] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [sym_variable_name] = ACTIONS(2299), + [ts_builtin_sym_end] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_RPAREN] = ACTIONS(2299), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [1247] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1248] = { + [sym_concatenation] = STATE(1859), + [sym_string] = STATE(1858), + [sym_simple_expansion] = STATE(1858), + [sym_string_expansion] = STATE(1858), + [sym_expansion] = STATE(1858), + [sym_command_substitution] = STATE(1858), + [sym_process_substitution] = STATE(1858), + [anon_sym_RBRACE] = ACTIONS(4369), + [sym__special_characters] = ACTIONS(4371), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(4373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4373), + }, + [1249] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(4375), + [sym_comment] = ACTIONS(57), + }, + [1250] = { + [sym_concatenation] = STATE(1863), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1863), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4379), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4383), + [anon_sym_COLON] = ACTIONS(4379), + [anon_sym_COLON_QMARK] = ACTIONS(4379), + [anon_sym_COLON_DASH] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1251] = { + [sym_concatenation] = STATE(1865), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1865), + [anon_sym_RBRACE] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4385), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4387), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_COLON] = ACTIONS(4385), + [anon_sym_COLON_QMARK] = ACTIONS(4385), + [anon_sym_COLON_DASH] = ACTIONS(4385), + [anon_sym_PERCENT] = ACTIONS(4385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1252] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [sym_variable_name] = ACTIONS(2392), + [ts_builtin_sym_end] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_RPAREN] = ACTIONS(2392), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [1253] = { + [sym_concatenation] = STATE(1868), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1868), + [sym_regex] = ACTIONS(4391), + [anon_sym_RBRACE] = ACTIONS(4393), + [anon_sym_EQ] = ACTIONS(4395), + [anon_sym_DASH] = ACTIONS(4395), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4397), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(4395), + [anon_sym_COLON_QMARK] = ACTIONS(4395), + [anon_sym_COLON_DASH] = ACTIONS(4395), + [anon_sym_PERCENT] = ACTIONS(4395), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1254] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4393), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1255] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [sym_variable_name] = ACTIONS(2440), + [ts_builtin_sym_end] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [1256] = { + [sym_concatenation] = STATE(1865), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1865), + [sym_regex] = ACTIONS(4399), + [anon_sym_RBRACE] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4385), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4387), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(4385), + [anon_sym_COLON_QMARK] = ACTIONS(4385), + [anon_sym_COLON_DASH] = ACTIONS(4385), + [anon_sym_PERCENT] = ACTIONS(4385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1257] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1258] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [sym_variable_name] = ACTIONS(2446), + [ts_builtin_sym_end] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [1259] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [sym_variable_name] = ACTIONS(2484), + [ts_builtin_sym_end] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [1260] = { + [sym_do_group] = STATE(1871), + [sym_compound_statement] = STATE(1871), + [anon_sym_SEMI] = ACTIONS(4401), + [anon_sym_do] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), + }, + [1261] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(553), + [anon_sym_PIPE_PIPE] = ACTIONS(553), + [anon_sym_EQ_TILDE] = ACTIONS(555), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_PLUS_EQ] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_DASH_EQ] = ACTIONS(553), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(553), + }, + [1262] = { + [sym__expression] = STATE(1873), + [sym_binary_expression] = STATE(1873), + [sym_unary_expression] = STATE(1873), + [sym_postfix_expression] = STATE(1873), + [sym_parenthesized_expression] = STATE(1873), + [sym_concatenation] = STATE(1873), + [sym_string] = STATE(46), + [sym_simple_expansion] = STATE(46), + [sym_string_expansion] = STATE(46), + [sym_expansion] = STATE(46), + [sym_command_substitution] = STATE(46), + [sym_process_substitution] = STATE(46), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4403), + [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), + }, + [1263] = { + [anon_sym_SEMI] = ACTIONS(2842), + [anon_sym_SEMI_SEMI] = ACTIONS(2840), + [anon_sym_AMP_AMP] = ACTIONS(2840), + [anon_sym_PIPE_PIPE] = ACTIONS(2840), + [anon_sym_EQ_TILDE] = ACTIONS(2840), + [anon_sym_EQ_EQ] = ACTIONS(2840), + [anon_sym_EQ] = ACTIONS(2842), + [anon_sym_PLUS_EQ] = ACTIONS(2840), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_GT] = ACTIONS(2842), + [anon_sym_BANG_EQ] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2842), + [anon_sym_DASH_EQ] = ACTIONS(2840), + [anon_sym_LT_EQ] = ACTIONS(2840), + [anon_sym_GT_EQ] = ACTIONS(2840), + [anon_sym_PLUS_PLUS] = ACTIONS(2840), + [anon_sym_DASH_DASH] = ACTIONS(2840), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2840), + [anon_sym_LF] = ACTIONS(2840), + [anon_sym_AMP] = ACTIONS(2842), + }, + [1264] = { + [sym__concat] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2292), + [anon_sym_EQ_EQ] = ACTIONS(2292), + [anon_sym_EQ] = ACTIONS(2294), + [anon_sym_PLUS_EQ] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_BANG_EQ] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_DASH_EQ] = ACTIONS(2292), + [anon_sym_LT_EQ] = ACTIONS(2292), + [anon_sym_GT_EQ] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2292), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1265] = { + [aux_sym_concatenation_repeat1] = STATE(1265), + [sym__concat] = ACTIONS(4405), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2292), + [anon_sym_EQ_EQ] = ACTIONS(2292), + [anon_sym_EQ] = ACTIONS(2294), + [anon_sym_PLUS_EQ] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_BANG_EQ] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_DASH_EQ] = ACTIONS(2292), + [anon_sym_LT_EQ] = ACTIONS(2292), + [anon_sym_GT_EQ] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2292), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1266] = { + [sym__concat] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_EQ_TILDE] = ACTIONS(2299), + [anon_sym_EQ_EQ] = ACTIONS(2299), + [anon_sym_EQ] = ACTIONS(2301), + [anon_sym_PLUS_EQ] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_BANG_EQ] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_DASH_EQ] = ACTIONS(2299), + [anon_sym_LT_EQ] = ACTIONS(2299), + [anon_sym_GT_EQ] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2299), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [1267] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(4408), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1268] = { + [sym_concatenation] = STATE(1878), + [sym_string] = STATE(1877), + [sym_simple_expansion] = STATE(1877), + [sym_string_expansion] = STATE(1877), + [sym_expansion] = STATE(1877), + [sym_command_substitution] = STATE(1877), + [sym_process_substitution] = STATE(1877), + [anon_sym_RBRACE] = ACTIONS(4410), + [sym__special_characters] = ACTIONS(4412), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(4414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4414), + }, + [1269] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(4416), + [sym_comment] = ACTIONS(57), + }, + [1270] = { + [sym_concatenation] = STATE(1882), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1882), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_EQ] = ACTIONS(4420), + [anon_sym_DASH] = ACTIONS(4420), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4424), + [anon_sym_COLON] = ACTIONS(4420), + [anon_sym_COLON_QMARK] = ACTIONS(4420), + [anon_sym_COLON_DASH] = ACTIONS(4420), + [anon_sym_PERCENT] = ACTIONS(4420), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1271] = { + [sym_concatenation] = STATE(1884), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1884), + [anon_sym_RBRACE] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4426), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4430), + [anon_sym_COLON] = ACTIONS(4426), + [anon_sym_COLON_QMARK] = ACTIONS(4426), + [anon_sym_COLON_DASH] = ACTIONS(4426), + [anon_sym_PERCENT] = ACTIONS(4426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1272] = { + [sym__concat] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_EQ_TILDE] = ACTIONS(2392), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_EQ] = ACTIONS(2394), + [anon_sym_PLUS_EQ] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2394), + [anon_sym_DASH] = ACTIONS(2394), + [anon_sym_DASH_EQ] = ACTIONS(2392), + [anon_sym_LT_EQ] = ACTIONS(2392), + [anon_sym_GT_EQ] = ACTIONS(2392), + [anon_sym_PLUS_PLUS] = ACTIONS(2392), + [anon_sym_DASH_DASH] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2392), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [1273] = { + [sym_concatenation] = STATE(1887), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1887), + [sym_regex] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4434), + [anon_sym_EQ] = ACTIONS(4436), + [anon_sym_DASH] = ACTIONS(4436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(4436), + [anon_sym_COLON_QMARK] = ACTIONS(4436), + [anon_sym_COLON_DASH] = ACTIONS(4436), + [anon_sym_PERCENT] = ACTIONS(4436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1274] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4434), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1275] = { + [sym__concat] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_EQ_TILDE] = ACTIONS(2440), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ] = ACTIONS(2442), + [anon_sym_PLUS_EQ] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_DASH_EQ] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2440), + [anon_sym_GT_EQ] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2440), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [1276] = { + [sym_concatenation] = STATE(1884), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1884), + [sym_regex] = ACTIONS(4440), + [anon_sym_RBRACE] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4426), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(4426), + [anon_sym_COLON_QMARK] = ACTIONS(4426), + [anon_sym_COLON_DASH] = ACTIONS(4426), + [anon_sym_PERCENT] = ACTIONS(4426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1277] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1278] = { + [sym__concat] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_SEMI_SEMI] = ACTIONS(2446), + [anon_sym_AMP_AMP] = ACTIONS(2446), + [anon_sym_PIPE_PIPE] = ACTIONS(2446), + [anon_sym_EQ_TILDE] = ACTIONS(2446), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ] = ACTIONS(2448), + [anon_sym_PLUS_EQ] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_DASH_EQ] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2446), + [anon_sym_GT_EQ] = ACTIONS(2446), + [anon_sym_PLUS_PLUS] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2446), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [1279] = { + [sym__concat] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_EQ_TILDE] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2484), + [anon_sym_EQ] = ACTIONS(2486), + [anon_sym_PLUS_EQ] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_BANG_EQ] = ACTIONS(2484), + [anon_sym_PLUS] = ACTIONS(2486), + [anon_sym_DASH] = ACTIONS(2486), + [anon_sym_DASH_EQ] = ACTIONS(2484), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(2484), + [anon_sym_DASH_DASH] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2484), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [1280] = { + [anon_sym_SEMI] = ACTIONS(4442), + [anon_sym_SEMI_SEMI] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_PLUS_EQ] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1453), + [anon_sym_LF] = ACTIONS(4444), + [anon_sym_AMP] = ACTIONS(4442), + }, + [1281] = { + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym_SEMI_SEMI] = ACTIONS(2883), + [anon_sym_AMP_AMP] = ACTIONS(2883), + [anon_sym_PIPE_PIPE] = ACTIONS(2883), + [anon_sym_EQ_TILDE] = ACTIONS(2883), + [anon_sym_EQ_EQ] = ACTIONS(2883), + [anon_sym_EQ] = ACTIONS(2885), + [anon_sym_PLUS_EQ] = ACTIONS(2883), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_GT] = ACTIONS(2885), + [anon_sym_BANG_EQ] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_DASH_EQ] = ACTIONS(2883), + [anon_sym_LT_EQ] = ACTIONS(2883), + [anon_sym_GT_EQ] = ACTIONS(2883), + [anon_sym_PLUS_PLUS] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2883), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2883), + [anon_sym_LF] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2885), + }, + [1282] = { + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym_SEMI_SEMI] = ACTIONS(2883), + [anon_sym_AMP_AMP] = ACTIONS(2883), + [anon_sym_PIPE_PIPE] = ACTIONS(2883), + [anon_sym_EQ_TILDE] = ACTIONS(2883), + [anon_sym_EQ_EQ] = ACTIONS(2883), + [anon_sym_EQ] = ACTIONS(2885), + [anon_sym_PLUS_EQ] = ACTIONS(2883), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_GT] = ACTIONS(2885), + [anon_sym_BANG_EQ] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_DASH_EQ] = ACTIONS(2883), + [anon_sym_LT_EQ] = ACTIONS(2883), + [anon_sym_GT_EQ] = ACTIONS(2883), + [anon_sym_PLUS_PLUS] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2883), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2883), + [anon_sym_LF] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2885), + }, + [1283] = { + [sym_string] = STATE(1890), + [sym_simple_expansion] = STATE(1890), + [sym_string_expansion] = STATE(1890), + [sym_expansion] = STATE(1890), + [sym_command_substitution] = STATE(1890), + [sym_process_substitution] = STATE(1890), + [sym__special_characters] = ACTIONS(4446), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_DOLLAR] = ACTIONS(1465), + [sym_raw_string] = ACTIONS(4446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1469), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1473), + [anon_sym_LT_LPAREN] = ACTIONS(1475), + [anon_sym_GT_LPAREN] = ACTIONS(1475), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4446), + }, + [1284] = { + [aux_sym_concatenation_repeat1] = STATE(1891), + [sym__concat] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1043), + }, + [1285] = { + [sym__concat] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1047), + }, + [1286] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(4448), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1287] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(4448), + [anon_sym_DOLLAR] = ACTIONS(4450), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [1288] = { + [sym__concat] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1081), + }, + [1289] = { + [sym__concat] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_SEMI_SEMI] = 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(1085), + }, + [1290] = { + [sym__concat] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1089), + }, + [1291] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(4452), + [sym_comment] = ACTIONS(57), + }, + [1292] = { + [sym_subscript] = STATE(1897), + [sym_variable_name] = ACTIONS(4454), + [anon_sym_DASH] = ACTIONS(4456), + [anon_sym_DOLLAR] = ACTIONS(4456), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4458), + [anon_sym_STAR] = ACTIONS(4460), + [anon_sym_AT] = ACTIONS(4460), + [anon_sym_QMARK] = ACTIONS(4460), + [anon_sym_0] = ACTIONS(4458), + [anon_sym__] = ACTIONS(4458), + }, + [1293] = { + [sym_concatenation] = STATE(1900), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1900), + [anon_sym_RBRACE] = ACTIONS(4462), + [anon_sym_EQ] = ACTIONS(4464), + [anon_sym_DASH] = ACTIONS(4464), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4468), + [anon_sym_COLON] = ACTIONS(4464), + [anon_sym_COLON_QMARK] = ACTIONS(4464), + [anon_sym_COLON_DASH] = ACTIONS(4464), + [anon_sym_PERCENT] = ACTIONS(4464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1294] = { + [sym_concatenation] = STATE(1903), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1903), + [anon_sym_RBRACE] = ACTIONS(4470), + [anon_sym_EQ] = ACTIONS(4472), + [anon_sym_DASH] = ACTIONS(4472), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_COLON] = ACTIONS(4472), + [anon_sym_COLON_QMARK] = ACTIONS(4472), + [anon_sym_COLON_DASH] = ACTIONS(4472), + [anon_sym_PERCENT] = ACTIONS(4472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1295] = { + [anon_sym_RPAREN] = ACTIONS(4478), + [sym_comment] = ACTIONS(57), + }, + [1296] = { + [anon_sym_BQUOTE] = ACTIONS(4478), + [sym_comment] = ACTIONS(57), + }, + [1297] = { + [anon_sym_RPAREN] = ACTIONS(4480), + [sym_comment] = ACTIONS(57), + }, + [1298] = { + [sym_do_group] = STATE(1906), + [anon_sym_do] = ACTIONS(643), + [sym_comment] = ACTIONS(57), + }, + [1299] = { + [sym_concatenation] = STATE(1299), + [sym_string] = STATE(710), + [sym_simple_expansion] = STATE(710), + [sym_string_expansion] = STATE(710), + [sym_expansion] = STATE(710), + [sym_command_substitution] = STATE(710), + [sym_process_substitution] = STATE(710), + [aux_sym_for_statement_repeat1] = STATE(1299), + [anon_sym_SEMI] = ACTIONS(4482), + [anon_sym_SEMI_SEMI] = ACTIONS(4338), + [sym__special_characters] = ACTIONS(4484), + [anon_sym_DQUOTE] = ACTIONS(4487), + [anon_sym_DOLLAR] = ACTIONS(4490), + [sym_raw_string] = ACTIONS(4493), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4496), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4499), + [anon_sym_BQUOTE] = ACTIONS(4502), + [anon_sym_LT_LPAREN] = ACTIONS(4505), + [anon_sym_GT_LPAREN] = ACTIONS(4505), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4508), + [anon_sym_LF] = ACTIONS(4338), + [anon_sym_AMP] = ACTIONS(4338), + }, + [1300] = { + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_AMP_AMP] = ACTIONS(2840), + [anon_sym_PIPE_PIPE] = ACTIONS(2840), + [anon_sym_EQ_TILDE] = ACTIONS(2840), + [anon_sym_EQ_EQ] = ACTIONS(2840), + [anon_sym_EQ] = ACTIONS(2842), + [anon_sym_PLUS_EQ] = ACTIONS(2840), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_GT] = ACTIONS(2842), + [anon_sym_BANG_EQ] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2842), + [anon_sym_DASH_EQ] = ACTIONS(2840), + [anon_sym_LT_EQ] = ACTIONS(2840), + [anon_sym_GT_EQ] = ACTIONS(2840), + [anon_sym_PLUS_PLUS] = ACTIONS(2840), + [anon_sym_DASH_DASH] = ACTIONS(2840), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2840), + }, + [1301] = { + [sym__concat] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2292), + [anon_sym_EQ_EQ] = ACTIONS(2292), + [anon_sym_EQ] = ACTIONS(2294), + [anon_sym_PLUS_EQ] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_BANG_EQ] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_DASH_EQ] = ACTIONS(2292), + [anon_sym_LT_EQ] = ACTIONS(2292), + [anon_sym_GT_EQ] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2292), + }, + [1302] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(4511), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2292), + [anon_sym_EQ_EQ] = ACTIONS(2292), + [anon_sym_EQ] = ACTIONS(2294), + [anon_sym_PLUS_EQ] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_BANG_EQ] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_DASH_EQ] = ACTIONS(2292), + [anon_sym_LT_EQ] = ACTIONS(2292), + [anon_sym_GT_EQ] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2292), + }, + [1303] = { + [sym__concat] = ACTIONS(2299), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_RPAREN] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_EQ_TILDE] = ACTIONS(2299), + [anon_sym_EQ_EQ] = ACTIONS(2299), + [anon_sym_EQ] = ACTIONS(2301), + [anon_sym_PLUS_EQ] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_BANG_EQ] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_DASH_EQ] = ACTIONS(2299), + [anon_sym_LT_EQ] = ACTIONS(2299), + [anon_sym_GT_EQ] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2299), + }, + [1304] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(4514), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1305] = { + [sym_concatenation] = STATE(1911), + [sym_string] = STATE(1910), + [sym_simple_expansion] = STATE(1910), + [sym_string_expansion] = STATE(1910), + [sym_expansion] = STATE(1910), + [sym_command_substitution] = STATE(1910), + [sym_process_substitution] = STATE(1910), + [anon_sym_RBRACE] = ACTIONS(4516), + [sym__special_characters] = ACTIONS(4518), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(4520), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4520), + }, + [1306] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(4522), + [sym_comment] = ACTIONS(57), + }, + [1307] = { + [sym_concatenation] = STATE(1915), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1915), + [anon_sym_RBRACE] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4528), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4530), + [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(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1308] = { + [sym_concatenation] = STATE(1917), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1917), + [anon_sym_RBRACE] = ACTIONS(4516), + [anon_sym_EQ] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4532), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4532), + [anon_sym_COLON_QMARK] = ACTIONS(4532), + [anon_sym_COLON_DASH] = ACTIONS(4532), + [anon_sym_PERCENT] = ACTIONS(4532), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1309] = { + [sym__concat] = ACTIONS(2392), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_RPAREN] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_EQ_TILDE] = ACTIONS(2392), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_EQ] = ACTIONS(2394), + [anon_sym_PLUS_EQ] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2394), + [anon_sym_DASH] = ACTIONS(2394), + [anon_sym_DASH_EQ] = ACTIONS(2392), + [anon_sym_LT_EQ] = ACTIONS(2392), + [anon_sym_GT_EQ] = ACTIONS(2392), + [anon_sym_PLUS_PLUS] = ACTIONS(2392), + [anon_sym_DASH_DASH] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2392), + }, + [1310] = { + [sym_concatenation] = STATE(1920), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1920), + [sym_regex] = ACTIONS(4538), + [anon_sym_RBRACE] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4542), + [anon_sym_DASH] = ACTIONS(4542), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4544), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [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(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1311] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1312] = { + [sym__concat] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_EQ_TILDE] = ACTIONS(2440), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ] = ACTIONS(2442), + [anon_sym_PLUS_EQ] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_DASH_EQ] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2440), + [anon_sym_GT_EQ] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2440), + }, + [1313] = { + [sym_concatenation] = STATE(1917), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1917), + [sym_regex] = ACTIONS(4546), + [anon_sym_RBRACE] = ACTIONS(4516), + [anon_sym_EQ] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4532), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(4532), + [anon_sym_COLON_QMARK] = ACTIONS(4532), + [anon_sym_COLON_DASH] = ACTIONS(4532), + [anon_sym_PERCENT] = ACTIONS(4532), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1314] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4516), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1315] = { + [sym__concat] = ACTIONS(2446), + [anon_sym_PIPE] = ACTIONS(2448), + [anon_sym_RPAREN] = ACTIONS(2446), + [anon_sym_AMP_AMP] = ACTIONS(2446), + [anon_sym_PIPE_PIPE] = ACTIONS(2446), + [anon_sym_EQ_TILDE] = ACTIONS(2446), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ] = ACTIONS(2448), + [anon_sym_PLUS_EQ] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_DASH_EQ] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2446), + [anon_sym_GT_EQ] = ACTIONS(2446), + [anon_sym_PLUS_PLUS] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2446), + }, + [1316] = { + [sym__concat] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_EQ_TILDE] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2484), + [anon_sym_EQ] = ACTIONS(2486), + [anon_sym_PLUS_EQ] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_BANG_EQ] = ACTIONS(2484), + [anon_sym_PLUS] = ACTIONS(2486), + [anon_sym_DASH] = ACTIONS(2486), + [anon_sym_DASH_EQ] = ACTIONS(2484), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(2484), + [anon_sym_DASH_DASH] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2484), + }, + [1317] = { + [anon_sym_RPAREN] = ACTIONS(2883), + [anon_sym_AMP_AMP] = ACTIONS(2883), + [anon_sym_PIPE_PIPE] = ACTIONS(2883), + [anon_sym_EQ_TILDE] = ACTIONS(2883), + [anon_sym_EQ_EQ] = ACTIONS(2883), + [anon_sym_EQ] = ACTIONS(2885), + [anon_sym_PLUS_EQ] = ACTIONS(2883), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_GT] = ACTIONS(2885), + [anon_sym_BANG_EQ] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_DASH_EQ] = ACTIONS(2883), + [anon_sym_LT_EQ] = ACTIONS(2883), + [anon_sym_GT_EQ] = ACTIONS(2883), + [anon_sym_PLUS_PLUS] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2883), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2883), + }, + [1318] = { + [anon_sym_RPAREN] = ACTIONS(2883), + [anon_sym_AMP_AMP] = ACTIONS(2883), + [anon_sym_PIPE_PIPE] = ACTIONS(2883), + [anon_sym_EQ_TILDE] = ACTIONS(2883), + [anon_sym_EQ_EQ] = ACTIONS(2883), + [anon_sym_EQ] = ACTIONS(2885), + [anon_sym_PLUS_EQ] = ACTIONS(2883), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_GT] = ACTIONS(2885), + [anon_sym_BANG_EQ] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_DASH_EQ] = ACTIONS(2883), + [anon_sym_LT_EQ] = ACTIONS(2883), + [anon_sym_GT_EQ] = ACTIONS(2883), + [anon_sym_PLUS_PLUS] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2883), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2883), + }, + [1319] = { + [sym__concat] = ACTIONS(4001), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4001), + [anon_sym_EQ_TILDE] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_EQ] = ACTIONS(4003), + [anon_sym_PLUS_EQ] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_DASH_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4001), + }, + [1320] = { + [sym__concat] = ACTIONS(4015), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4015), + [anon_sym_EQ_TILDE] = ACTIONS(4015), + [anon_sym_EQ_EQ] = ACTIONS(4015), + [anon_sym_EQ] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_BANG_EQ] = ACTIONS(4015), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [anon_sym_DASH_EQ] = ACTIONS(4015), + [anon_sym_LT_EQ] = ACTIONS(4015), + [anon_sym_GT_EQ] = ACTIONS(4015), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4015), + }, + [1321] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(4548), + [sym_comment] = ACTIONS(57), + }, + [1322] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(4550), + [sym_comment] = ACTIONS(57), + }, + [1323] = { + [anon_sym_RBRACE] = ACTIONS(4550), + [sym_comment] = ACTIONS(57), + }, + [1324] = { + [sym_concatenation] = STATE(1926), + [sym_string] = STATE(1925), + [sym_simple_expansion] = STATE(1925), + [sym_string_expansion] = STATE(1925), + [sym_expansion] = STATE(1925), + [sym_command_substitution] = STATE(1925), + [sym_process_substitution] = STATE(1925), + [anon_sym_RBRACE] = ACTIONS(4550), + [sym__special_characters] = ACTIONS(4552), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(4554), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4554), + }, + [1325] = { + [sym__concat] = ACTIONS(4051), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4051), + [anon_sym_EQ_TILDE] = ACTIONS(4051), + [anon_sym_EQ_EQ] = ACTIONS(4051), + [anon_sym_EQ] = ACTIONS(4053), + [anon_sym_PLUS_EQ] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_BANG_EQ] = ACTIONS(4051), + [anon_sym_PLUS] = ACTIONS(4053), + [anon_sym_DASH] = ACTIONS(4053), + [anon_sym_DASH_EQ] = ACTIONS(4051), + [anon_sym_LT_EQ] = ACTIONS(4051), + [anon_sym_GT_EQ] = ACTIONS(4051), + [anon_sym_PLUS_PLUS] = ACTIONS(4051), + [anon_sym_DASH_DASH] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4051), + }, + [1326] = { + [sym_concatenation] = STATE(1929), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1929), + [sym_regex] = ACTIONS(4556), + [anon_sym_RBRACE] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_DASH] = ACTIONS(4560), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(4560), + [anon_sym_COLON_QMARK] = ACTIONS(4560), + [anon_sym_COLON_DASH] = ACTIONS(4560), + [anon_sym_PERCENT] = ACTIONS(4560), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1327] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1328] = { + [sym_concatenation] = STATE(1931), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1931), + [sym_regex] = ACTIONS(4564), + [anon_sym_RBRACE] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4566), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4568), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [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(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1329] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1330] = { + [sym_concatenation] = STATE(1933), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1933), + [anon_sym_RBRACE] = ACTIONS(4570), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4572), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4574), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_COLON_QMARK] = ACTIONS(4572), + [anon_sym_COLON_DASH] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1331] = { + [sym__concat] = ACTIONS(4107), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4107), + [anon_sym_EQ_TILDE] = ACTIONS(4107), + [anon_sym_EQ_EQ] = ACTIONS(4107), + [anon_sym_EQ] = ACTIONS(4109), + [anon_sym_PLUS_EQ] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_BANG_EQ] = ACTIONS(4107), + [anon_sym_PLUS] = ACTIONS(4109), + [anon_sym_DASH] = ACTIONS(4109), + [anon_sym_DASH_EQ] = ACTIONS(4107), + [anon_sym_LT_EQ] = ACTIONS(4107), + [anon_sym_GT_EQ] = ACTIONS(4107), + [anon_sym_PLUS_PLUS] = ACTIONS(4107), + [anon_sym_DASH_DASH] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4107), + }, + [1332] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4570), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1333] = { + [sym_concatenation] = STATE(1931), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1931), + [anon_sym_RBRACE] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4566), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4568), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [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(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1334] = { + [sym_file_descriptor] = ACTIONS(2646), + [sym_variable_name] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_SEMI_SEMI] = ACTIONS(2646), + [anon_sym_PIPE_AMP] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_PIPE_PIPE] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_GT] = ACTIONS(2648), + [anon_sym_GT_GT] = ACTIONS(2646), + [anon_sym_AMP_GT] = ACTIONS(2648), + [anon_sym_AMP_GT_GT] = ACTIONS(2646), + [anon_sym_LT_AMP] = ACTIONS(2646), + [anon_sym_GT_AMP] = ACTIONS(2646), + [anon_sym_LT_LT] = ACTIONS(2648), + [anon_sym_LT_LT_DASH] = ACTIONS(2646), + [anon_sym_LT_LT_LT] = ACTIONS(2646), + [sym__special_characters] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2648), + [sym_raw_string] = ACTIONS(2646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2646), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2646), + [anon_sym_BQUOTE] = ACTIONS(2646), + [anon_sym_LT_LPAREN] = ACTIONS(2646), + [anon_sym_GT_LPAREN] = ACTIONS(2646), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2648), + [anon_sym_LF] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2648), + }, + [1335] = { + [sym_concatenation] = STATE(1243), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1243), + [anon_sym_RPAREN] = ACTIONS(4576), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [1336] = { + [sym_string] = STATE(1935), + [sym_simple_expansion] = STATE(1935), + [sym_string_expansion] = STATE(1935), + [sym_expansion] = STATE(1935), + [sym_command_substitution] = STATE(1935), + [sym_process_substitution] = STATE(1935), + [sym__special_characters] = ACTIONS(4578), + [anon_sym_DQUOTE] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1567), + [sym_raw_string] = ACTIONS(4578), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1571), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1573), + [anon_sym_BQUOTE] = ACTIONS(1575), + [anon_sym_LT_LPAREN] = ACTIONS(1577), + [anon_sym_GT_LPAREN] = ACTIONS(1577), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4578), + }, + [1337] = { + [aux_sym_concatenation_repeat1] = STATE(1936), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(2889), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [1338] = { + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [sym_variable_name] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [1339] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(4580), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1340] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(4580), + [anon_sym_DOLLAR] = ACTIONS(4582), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [1341] = { + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [sym_variable_name] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [1342] = { + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1085), + [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), + }, + [1343] = { + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), [sym_variable_name] = ACTIONS(1089), [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_esac] = ACTIONS(1091), [anon_sym_PIPE] = ACTIONS(1091), [anon_sym_SEMI_SEMI] = ACTIONS(1089), [anon_sym_PIPE_AMP] = ACTIONS(1089), @@ -72551,54 +48294,2001 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1089), [anon_sym_AMP] = ACTIONS(1091), }, - [2293] = { - [sym_subscript] = STATE(2442), - [sym_variable_name] = ACTIONS(5572), - [anon_sym_BANG] = ACTIONS(5574), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_DOLLAR] = ACTIONS(5576), - [anon_sym_POUND] = ACTIONS(5574), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5578), - [anon_sym_STAR] = ACTIONS(5580), - [anon_sym_AT] = ACTIONS(5580), - [anon_sym_QMARK] = ACTIONS(5580), - [anon_sym_0] = ACTIONS(5578), - [anon_sym__] = ACTIONS(5578), + [1344] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(4584), + [sym_comment] = ACTIONS(57), }, - [2294] = { - [sym__terminated_statement] = STATE(2445), - [sym_redirected_statement] = STATE(2443), - [sym_for_statement] = STATE(2443), - [sym_c_style_for_statement] = STATE(2443), - [sym_while_statement] = STATE(2443), - [sym_if_statement] = STATE(2443), - [sym_case_statement] = STATE(2443), - [sym_function_definition] = STATE(2443), - [sym_compound_statement] = STATE(2443), - [sym_subshell] = STATE(2443), - [sym_pipeline] = STATE(2443), - [sym_list] = STATE(2443), - [sym_negated_command] = STATE(2443), - [sym_test_command] = STATE(2443), - [sym_declaration_command] = STATE(2443), - [sym_unset_command] = STATE(2443), - [sym_command] = STATE(2443), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(2444), - [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(2445), - [aux_sym_command_repeat1] = STATE(87), + [1345] = { + [sym_subscript] = STATE(1942), + [sym_variable_name] = ACTIONS(4586), + [anon_sym_DASH] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4590), + [anon_sym_STAR] = ACTIONS(4592), + [anon_sym_AT] = ACTIONS(4592), + [anon_sym_QMARK] = ACTIONS(4592), + [anon_sym_0] = ACTIONS(4590), + [anon_sym__] = ACTIONS(4590), + }, + [1346] = { + [sym_concatenation] = STATE(1945), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1945), + [anon_sym_RBRACE] = ACTIONS(4594), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4596), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4598), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4600), + [anon_sym_COLON] = ACTIONS(4596), + [anon_sym_COLON_QMARK] = ACTIONS(4596), + [anon_sym_COLON_DASH] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1347] = { + [sym_concatenation] = STATE(1948), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1948), + [anon_sym_RBRACE] = ACTIONS(4602), + [anon_sym_EQ] = ACTIONS(4604), + [anon_sym_DASH] = ACTIONS(4604), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4606), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4608), + [anon_sym_COLON] = ACTIONS(4604), + [anon_sym_COLON_QMARK] = ACTIONS(4604), + [anon_sym_COLON_DASH] = ACTIONS(4604), + [anon_sym_PERCENT] = ACTIONS(4604), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1348] = { + [anon_sym_RPAREN] = ACTIONS(4610), + [sym_comment] = ACTIONS(57), + }, + [1349] = { + [anon_sym_BQUOTE] = ACTIONS(4610), + [sym_comment] = ACTIONS(57), + }, + [1350] = { + [anon_sym_RPAREN] = ACTIONS(4612), + [sym_comment] = ACTIONS(57), + }, + [1351] = { + [sym__expression] = STATE(1952), + [sym_binary_expression] = STATE(1952), + [sym_unary_expression] = STATE(1952), + [sym_postfix_expression] = STATE(1952), + [sym_parenthesized_expression] = STATE(1952), + [sym_concatenation] = STATE(1952), + [sym_string] = STATE(46), + [sym_simple_expansion] = STATE(46), + [sym_string_expansion] = STATE(46), + [sym_expansion] = STATE(46), + [sym_command_substitution] = STATE(46), + [sym_process_substitution] = STATE(46), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4614), + [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), + }, + [1352] = { + [anon_sym_SEMI] = ACTIONS(4616), + [anon_sym_SEMI_SEMI] = ACTIONS(4618), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_PLUS_EQ] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1453), + [anon_sym_LF] = ACTIONS(4618), + [anon_sym_AMP] = ACTIONS(4616), + }, + [1353] = { + [sym__expression] = STATE(1954), + [sym_binary_expression] = STATE(1954), + [sym_unary_expression] = STATE(1954), + [sym_postfix_expression] = STATE(1954), + [sym_parenthesized_expression] = STATE(1954), + [sym_concatenation] = STATE(1954), + [sym_string] = STATE(261), + [sym_simple_expansion] = STATE(261), + [sym_string_expansion] = STATE(261), + [sym_expansion] = STATE(261), + [sym_command_substitution] = STATE(261), + [sym_process_substitution] = STATE(261), + [anon_sym_SEMI] = ACTIONS(4616), + [anon_sym_SEMI_SEMI] = ACTIONS(4618), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(467), + [sym__special_characters] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(473), + [sym_raw_string] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_LT_LPAREN] = ACTIONS(483), + [anon_sym_GT_LPAREN] = ACTIONS(483), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(485), + [sym_test_operator] = ACTIONS(487), + [anon_sym_LF] = ACTIONS(4618), + [anon_sym_AMP] = ACTIONS(4618), + }, + [1354] = { + [sym_concatenation] = STATE(1299), + [sym_string] = STATE(710), + [sym_simple_expansion] = STATE(710), + [sym_string_expansion] = STATE(710), + [sym_expansion] = STATE(710), + [sym_command_substitution] = STATE(710), + [sym_process_substitution] = STATE(710), + [aux_sym_for_statement_repeat1] = STATE(1299), + [anon_sym_SEMI] = ACTIONS(4620), + [anon_sym_SEMI_SEMI] = ACTIONS(4622), + [sym__special_characters] = ACTIONS(1461), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_DOLLAR] = ACTIONS(1465), + [sym_raw_string] = ACTIONS(1467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1469), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1473), + [anon_sym_LT_LPAREN] = ACTIONS(1475), + [anon_sym_GT_LPAREN] = ACTIONS(1475), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2796), + [anon_sym_LF] = ACTIONS(4622), + [anon_sym_AMP] = ACTIONS(4622), + }, + [1355] = { + [sym_file_descriptor] = ACTIONS(2798), + [anon_sym_SEMI] = ACTIONS(2800), + [anon_sym_PIPE] = ACTIONS(2800), + [anon_sym_SEMI_SEMI] = ACTIONS(2798), + [anon_sym_PIPE_AMP] = ACTIONS(2798), + [anon_sym_AMP_AMP] = ACTIONS(2798), + [anon_sym_PIPE_PIPE] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2800), + [anon_sym_GT] = ACTIONS(2800), + [anon_sym_GT_GT] = ACTIONS(2798), + [anon_sym_AMP_GT] = ACTIONS(2800), + [anon_sym_AMP_GT_GT] = ACTIONS(2798), + [anon_sym_LT_AMP] = ACTIONS(2798), + [anon_sym_GT_AMP] = ACTIONS(2798), + [anon_sym_LT_LT] = ACTIONS(2800), + [anon_sym_LT_LT_DASH] = ACTIONS(2798), + [anon_sym_LT_LT_LT] = ACTIONS(2798), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2800), + }, + [1356] = { + [sym_file_descriptor] = ACTIONS(3121), + [anon_sym_SEMI] = 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_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), + }, + [1357] = { + [anon_sym_done] = ACTIONS(4624), + [sym_comment] = ACTIONS(57), + }, + [1358] = { + [sym_file_descriptor] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_PIPE] = ACTIONS(3279), + [anon_sym_SEMI_SEMI] = ACTIONS(3277), + [anon_sym_PIPE_AMP] = ACTIONS(3277), + [anon_sym_AMP_AMP] = ACTIONS(3277), + [anon_sym_PIPE_PIPE] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3279), + [anon_sym_GT_GT] = ACTIONS(3277), + [anon_sym_AMP_GT] = ACTIONS(3279), + [anon_sym_AMP_GT_GT] = ACTIONS(3277), + [anon_sym_LT_AMP] = ACTIONS(3277), + [anon_sym_GT_AMP] = ACTIONS(3277), + [anon_sym_LT_LT] = ACTIONS(3279), + [anon_sym_LT_LT_DASH] = ACTIONS(3277), + [anon_sym_LT_LT_LT] = ACTIONS(3277), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3277), + [anon_sym_AMP] = ACTIONS(3279), + }, + [1359] = { + [sym_elif_clause] = STATE(1959), + [sym_else_clause] = STATE(1958), + [aux_sym_if_statement_repeat1] = STATE(1959), + [anon_sym_fi] = ACTIONS(4626), + [anon_sym_elif] = ACTIONS(3377), + [anon_sym_else] = ACTIONS(3379), + [sym_comment] = ACTIONS(57), + }, + [1360] = { + [anon_sym_fi] = ACTIONS(4626), + [sym_comment] = ACTIONS(57), + }, + [1361] = { + [sym_elif_clause] = STATE(1550), + [sym_else_clause] = STATE(1958), + [aux_sym_if_statement_repeat1] = STATE(1550), + [anon_sym_fi] = ACTIONS(4626), + [anon_sym_elif] = ACTIONS(3377), + [anon_sym_else] = ACTIONS(3379), + [sym_comment] = ACTIONS(57), + }, + [1362] = { + [sym_case_item] = STATE(1962), + [sym_last_case_item] = STATE(1961), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(1962), + [anon_sym_esac] = ACTIONS(4628), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3415), + }, + [1363] = { + [anon_sym_SEMI] = ACTIONS(4630), + [anon_sym_SEMI_SEMI] = ACTIONS(4632), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + }, + [1364] = { + [sym_case_item] = STATE(1966), + [sym_last_case_item] = STATE(1965), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(1966), + [anon_sym_esac] = ACTIONS(4634), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3415), + }, + [1365] = { + [anon_sym_SEMI] = ACTIONS(4636), + [anon_sym_SEMI_SEMI] = ACTIONS(4638), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4638), + [anon_sym_AMP] = ACTIONS(4638), + }, + [1366] = { + [sym_compound_statement] = STATE(1968), + [anon_sym_LBRACE] = ACTIONS(113), + [sym_comment] = ACTIONS(57), + }, + [1367] = { + [sym_file_descriptor] = ACTIONS(1371), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1373), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [1368] = { + [sym_concatenation] = STATE(1970), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1970), + [anon_sym_RPAREN] = ACTIONS(4640), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [1369] = { + [aux_sym_concatenation_repeat1] = STATE(784), + [sym_file_descriptor] = ACTIONS(1393), + [sym__concat] = ACTIONS(1615), + [sym_variable_name] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_SEMI_SEMI] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_AMP_GT] = ACTIONS(1397), + [anon_sym_AMP_GT_GT] = ACTIONS(1393), + [anon_sym_LT_AMP] = ACTIONS(1393), + [anon_sym_GT_AMP] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_LT_LT_DASH] = ACTIONS(1393), + [anon_sym_LT_LT_LT] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1397), + [sym_raw_string] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1393), + [anon_sym_GT_LPAREN] = ACTIONS(1393), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1397), + [sym_word] = ACTIONS(1397), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1397), + }, + [1370] = { + [aux_sym_concatenation_repeat1] = STATE(784), + [sym_file_descriptor] = ACTIONS(1371), + [sym__concat] = ACTIONS(1615), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1373), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [1371] = { + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1372] = { + [aux_sym_concatenation_repeat1] = STATE(1372), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(4642), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1373] = { + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [sym_variable_name] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2301), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [1374] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(4645), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1375] = { + [sym_concatenation] = STATE(1975), + [sym_string] = STATE(1974), + [sym_simple_expansion] = STATE(1974), + [sym_string_expansion] = STATE(1974), + [sym_expansion] = STATE(1974), + [sym_command_substitution] = STATE(1974), + [sym_process_substitution] = STATE(1974), + [anon_sym_RBRACE] = ACTIONS(4647), + [sym__special_characters] = ACTIONS(4649), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(4651), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4651), + }, + [1376] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(4653), + [sym_comment] = ACTIONS(57), + }, + [1377] = { + [sym_concatenation] = STATE(1979), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1979), + [anon_sym_RBRACE] = ACTIONS(4655), + [anon_sym_EQ] = ACTIONS(4657), + [anon_sym_DASH] = ACTIONS(4657), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4661), + [anon_sym_COLON] = ACTIONS(4657), + [anon_sym_COLON_QMARK] = ACTIONS(4657), + [anon_sym_COLON_DASH] = ACTIONS(4657), + [anon_sym_PERCENT] = ACTIONS(4657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1378] = { + [sym_concatenation] = STATE(1981), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1981), + [anon_sym_RBRACE] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4663), + [anon_sym_DASH] = ACTIONS(4663), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4667), + [anon_sym_COLON] = ACTIONS(4663), + [anon_sym_COLON_QMARK] = ACTIONS(4663), + [anon_sym_COLON_DASH] = ACTIONS(4663), + [anon_sym_PERCENT] = ACTIONS(4663), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1379] = { + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [sym_variable_name] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2394), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [1380] = { + [sym_concatenation] = STATE(1984), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1984), + [sym_regex] = ACTIONS(4669), + [anon_sym_RBRACE] = ACTIONS(4671), + [anon_sym_EQ] = ACTIONS(4673), + [anon_sym_DASH] = ACTIONS(4673), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4675), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(4673), + [anon_sym_COLON_QMARK] = ACTIONS(4673), + [anon_sym_COLON_DASH] = ACTIONS(4673), + [anon_sym_PERCENT] = ACTIONS(4673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1381] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4671), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1382] = { + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [sym_variable_name] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2442), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [1383] = { + [sym_concatenation] = STATE(1981), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1981), + [sym_regex] = ACTIONS(4677), + [anon_sym_RBRACE] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4663), + [anon_sym_DASH] = ACTIONS(4663), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(4663), + [anon_sym_COLON_QMARK] = ACTIONS(4663), + [anon_sym_COLON_DASH] = ACTIONS(4663), + [anon_sym_PERCENT] = ACTIONS(4663), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1384] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1385] = { + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [sym_variable_name] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2448), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [1386] = { + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [sym_variable_name] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2486), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [1387] = { + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1388] = { + [aux_sym_concatenation_repeat1] = STATE(1388), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(4679), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1389] = { + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2301), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [1390] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(4682), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1391] = { + [sym_concatenation] = STATE(1990), + [sym_string] = STATE(1989), + [sym_simple_expansion] = STATE(1989), + [sym_string_expansion] = STATE(1989), + [sym_expansion] = STATE(1989), + [sym_command_substitution] = STATE(1989), + [sym_process_substitution] = STATE(1989), + [anon_sym_RBRACE] = ACTIONS(4684), + [sym__special_characters] = ACTIONS(4686), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(4688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4688), + }, + [1392] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(4690), + [sym_comment] = ACTIONS(57), + }, + [1393] = { + [sym_concatenation] = STATE(1994), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1994), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_EQ] = ACTIONS(4694), + [anon_sym_DASH] = ACTIONS(4694), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4696), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_COLON] = ACTIONS(4694), + [anon_sym_COLON_QMARK] = ACTIONS(4694), + [anon_sym_COLON_DASH] = ACTIONS(4694), + [anon_sym_PERCENT] = ACTIONS(4694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1394] = { + [sym_concatenation] = STATE(1996), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1996), + [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_EQ] = ACTIONS(4700), + [anon_sym_DASH] = ACTIONS(4700), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4704), + [anon_sym_COLON] = ACTIONS(4700), + [anon_sym_COLON_QMARK] = ACTIONS(4700), + [anon_sym_COLON_DASH] = ACTIONS(4700), + [anon_sym_PERCENT] = ACTIONS(4700), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1395] = { + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2394), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [1396] = { + [sym_concatenation] = STATE(1999), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1999), + [sym_regex] = ACTIONS(4706), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(4710), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(4710), + [anon_sym_COLON_QMARK] = ACTIONS(4710), + [anon_sym_COLON_DASH] = ACTIONS(4710), + [anon_sym_PERCENT] = ACTIONS(4710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1397] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1398] = { + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2442), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [1399] = { + [sym_concatenation] = STATE(1996), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1996), + [sym_regex] = ACTIONS(4714), + [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_EQ] = ACTIONS(4700), + [anon_sym_DASH] = ACTIONS(4700), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(4700), + [anon_sym_COLON_QMARK] = ACTIONS(4700), + [anon_sym_COLON_DASH] = ACTIONS(4700), + [anon_sym_PERCENT] = ACTIONS(4700), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1400] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1401] = { + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2448), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [1402] = { + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2486), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [1403] = { + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_EQ_TILDE] = ACTIONS(4003), + [anon_sym_EQ_EQ] = ACTIONS(4003), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [1404] = { + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_EQ_TILDE] = ACTIONS(4017), + [anon_sym_EQ_EQ] = ACTIONS(4017), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [1405] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(4716), + [sym_comment] = ACTIONS(57), + }, + [1406] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(4718), + [sym_comment] = ACTIONS(57), + }, + [1407] = { + [anon_sym_RBRACE] = ACTIONS(4718), + [sym_comment] = ACTIONS(57), + }, + [1408] = { + [sym_concatenation] = STATE(2005), + [sym_string] = STATE(2004), + [sym_simple_expansion] = STATE(2004), + [sym_string_expansion] = STATE(2004), + [sym_expansion] = STATE(2004), + [sym_command_substitution] = STATE(2004), + [sym_process_substitution] = STATE(2004), + [anon_sym_RBRACE] = ACTIONS(4718), + [sym__special_characters] = ACTIONS(4720), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(4722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4722), + }, + [1409] = { + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_EQ_TILDE] = ACTIONS(4053), + [anon_sym_EQ_EQ] = ACTIONS(4053), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [1410] = { + [sym_concatenation] = STATE(2008), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2008), + [sym_regex] = ACTIONS(4724), + [anon_sym_RBRACE] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4728), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(4728), + [anon_sym_COLON_QMARK] = ACTIONS(4728), + [anon_sym_COLON_DASH] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1411] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1412] = { + [sym_concatenation] = STATE(2010), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2010), + [sym_regex] = ACTIONS(4732), + [anon_sym_RBRACE] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4734), + [anon_sym_DASH] = ACTIONS(4734), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(4734), + [anon_sym_COLON_QMARK] = ACTIONS(4734), + [anon_sym_COLON_DASH] = ACTIONS(4734), + [anon_sym_PERCENT] = ACTIONS(4734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1413] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1414] = { + [sym_concatenation] = STATE(2012), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2012), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_EQ] = ACTIONS(4740), + [anon_sym_DASH] = ACTIONS(4740), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(4740), + [anon_sym_COLON_QMARK] = ACTIONS(4740), + [anon_sym_COLON_DASH] = ACTIONS(4740), + [anon_sym_PERCENT] = ACTIONS(4740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1415] = { + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_EQ_TILDE] = ACTIONS(4109), + [anon_sym_EQ_EQ] = ACTIONS(4109), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [1416] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1417] = { + [sym_concatenation] = STATE(2010), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2010), + [anon_sym_RBRACE] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4734), + [anon_sym_DASH] = ACTIONS(4734), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(4734), + [anon_sym_COLON_QMARK] = ACTIONS(4734), + [anon_sym_COLON_DASH] = ACTIONS(4734), + [anon_sym_PERCENT] = ACTIONS(4734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1418] = { + [sym_file_descriptor] = ACTIONS(4213), + [anon_sym_SEMI] = ACTIONS(4215), + [anon_sym_PIPE] = ACTIONS(4215), + [anon_sym_SEMI_SEMI] = ACTIONS(4213), + [anon_sym_PIPE_AMP] = ACTIONS(4213), + [anon_sym_AMP_AMP] = ACTIONS(4213), + [anon_sym_PIPE_PIPE] = ACTIONS(4213), + [anon_sym_LT] = ACTIONS(4215), + [anon_sym_GT] = ACTIONS(4215), + [anon_sym_GT_GT] = ACTIONS(4213), + [anon_sym_AMP_GT] = ACTIONS(4215), + [anon_sym_AMP_GT_GT] = ACTIONS(4213), + [anon_sym_LT_AMP] = ACTIONS(4213), + [anon_sym_GT_AMP] = ACTIONS(4213), + [anon_sym_LT_LT] = ACTIONS(4215), + [anon_sym_LT_LT_DASH] = ACTIONS(4213), + [anon_sym_LT_LT_LT] = ACTIONS(4213), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4213), + [anon_sym_AMP] = ACTIONS(4215), + }, + [1419] = { + [sym_concatenation] = STATE(2013), + [sym_string] = STATE(2018), + [sym_array] = STATE(2013), + [sym_simple_expansion] = STATE(2018), + [sym_string_expansion] = STATE(2018), + [sym_expansion] = STATE(2018), + [sym_command_substitution] = STATE(2018), + [sym_process_substitution] = STATE(2018), + [sym__empty_value] = ACTIONS(4744), + [anon_sym_LPAREN] = ACTIONS(4746), + [sym__special_characters] = ACTIONS(4748), + [anon_sym_DQUOTE] = ACTIONS(4750), + [anon_sym_DOLLAR] = ACTIONS(4752), + [sym_raw_string] = ACTIONS(4754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4758), + [anon_sym_BQUOTE] = ACTIONS(4760), + [anon_sym_LT_LPAREN] = ACTIONS(4762), + [anon_sym_GT_LPAREN] = ACTIONS(4762), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4754), + }, + [1420] = { + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(4764), + [anon_sym_PLUS_EQ] = ACTIONS(4764), + [sym_comment] = ACTIONS(57), + }, + [1421] = { + [aux_sym_concatenation_repeat1] = STATE(2025), + [sym__simple_heredoc_body] = ACTIONS(933), + [sym__heredoc_body_beginning] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(933), + [sym__concat] = ACTIONS(4766), + [sym_variable_name] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_done] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(937), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(937), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(937), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [sym__special_characters] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(937), + [sym_raw_string] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(937), + [sym_word] = ACTIONS(937), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(937), + }, + [1422] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(2028), + [anon_sym_DQUOTE] = ACTIONS(4768), + [anon_sym_DOLLAR] = ACTIONS(4770), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [1423] = { + [sym_string] = STATE(2030), + [anon_sym_DASH] = ACTIONS(4772), + [anon_sym_DQUOTE] = ACTIONS(3129), + [anon_sym_DOLLAR] = ACTIONS(4772), + [sym_raw_string] = ACTIONS(4774), + [anon_sym_POUND] = ACTIONS(4772), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4776), + [anon_sym_STAR] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4778), + [anon_sym_QMARK] = ACTIONS(4778), + [anon_sym_0] = ACTIONS(4776), + [anon_sym__] = ACTIONS(4776), + }, + [1424] = { + [aux_sym_concatenation_repeat1] = STATE(2025), + [sym__simple_heredoc_body] = ACTIONS(951), + [sym__heredoc_body_beginning] = ACTIONS(951), + [sym_file_descriptor] = ACTIONS(951), + [sym__concat] = ACTIONS(4766), + [sym_variable_name] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_done] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_SEMI_SEMI] = ACTIONS(951), + [anon_sym_PIPE_AMP] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_LT] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(953), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_AMP_GT] = ACTIONS(953), + [anon_sym_AMP_GT_GT] = ACTIONS(951), + [anon_sym_LT_AMP] = ACTIONS(951), + [anon_sym_GT_AMP] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(953), + [anon_sym_LT_LT_DASH] = ACTIONS(951), + [anon_sym_LT_LT_LT] = ACTIONS(951), + [sym__special_characters] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(953), + [sym_raw_string] = ACTIONS(951), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(951), + [anon_sym_BQUOTE] = ACTIONS(951), + [anon_sym_LT_LPAREN] = ACTIONS(951), + [anon_sym_GT_LPAREN] = ACTIONS(951), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(953), + [sym_word] = ACTIONS(953), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_AMP] = ACTIONS(953), + }, + [1425] = { + [sym_subscript] = STATE(2035), + [sym_variable_name] = ACTIONS(4780), + [anon_sym_BANG] = ACTIONS(4782), + [anon_sym_DASH] = ACTIONS(4784), + [anon_sym_DOLLAR] = ACTIONS(4784), + [anon_sym_POUND] = ACTIONS(4782), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4786), + [anon_sym_STAR] = ACTIONS(4788), + [anon_sym_AT] = ACTIONS(4788), + [anon_sym_QMARK] = ACTIONS(4788), + [anon_sym_0] = ACTIONS(4786), + [anon_sym__] = ACTIONS(4786), + }, + [1426] = { + [sym__statements] = STATE(2036), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(129), + [sym_variable_name] = ACTIONS(161), [anon_sym_for] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_while] = ACTIONS(15), @@ -72607,16 +50297,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(163), [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_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -72624,51 +50314,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(39), [anon_sym_LT_AMP] = ACTIONS(39), [anon_sym_GT_AMP] = ACTIONS(39), - [sym__special_characters] = ACTIONS(137), + [sym__special_characters] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(139), + [sym_raw_string] = ACTIONS(171), [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), + [sym_word] = ACTIONS(173), }, - [2295] = { - [sym__terminated_statement] = STATE(2448), - [sym_redirected_statement] = STATE(2446), - [sym_for_statement] = STATE(2446), - [sym_c_style_for_statement] = STATE(2446), - [sym_while_statement] = STATE(2446), - [sym_if_statement] = STATE(2446), - [sym_case_statement] = STATE(2446), - [sym_function_definition] = STATE(2446), - [sym_compound_statement] = STATE(2446), - [sym_subshell] = STATE(2446), - [sym_pipeline] = STATE(2446), - [sym_list] = STATE(2446), - [sym_negated_command] = STATE(2446), - [sym_test_command] = STATE(2446), - [sym_declaration_command] = STATE(2446), - [sym_unset_command] = STATE(2446), - [sym_command] = STATE(2446), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(2447), - [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(2448), - [aux_sym_command_repeat1] = STATE(165), + [1427] = { + [sym__statements] = STATE(2037), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(97), + [sym_variable_name] = ACTIONS(367), [anon_sym_for] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_while] = ACTIONS(15), @@ -72677,16 +50367,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(289), + [anon_sym_BANG] = ACTIONS(369), [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_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -72694,51 +50384,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(39), [anon_sym_LT_AMP] = ACTIONS(39), [anon_sym_GT_AMP] = ACTIONS(39), - [sym__special_characters] = ACTIONS(105), + [sym__special_characters] = ACTIONS(375), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(107), + [sym_raw_string] = ACTIONS(377), [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), + [sym_word] = ACTIONS(379), }, - [2296] = { - [sym__terminated_statement] = STATE(2451), - [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(83), - [sym_variable_assignment] = STATE(2450), - [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(2451), - [aux_sym_command_repeat1] = STATE(87), + [1428] = { + [sym__statements] = STATE(2038), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(129), + [sym_variable_name] = ACTIONS(161), [anon_sym_for] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_while] = ACTIONS(15), @@ -72747,16 +50437,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(163), [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_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -72764,5151 +50454,15409 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(39), [anon_sym_LT_AMP] = ACTIONS(39), [anon_sym_GT_AMP] = ACTIONS(39), - [sym__special_characters] = ACTIONS(137), + [sym__special_characters] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(139), + [sym_raw_string] = ACTIONS(171), [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), + [sym_word] = ACTIONS(173), }, - [2297] = { + [1429] = { + [anon_sym_EQ] = ACTIONS(4764), + [anon_sym_PLUS_EQ] = ACTIONS(4764), + [sym_comment] = ACTIONS(57), + }, + [1430] = { + [sym_variable_assignment] = STATE(2039), + [sym_subscript] = STATE(1429), + [sym_concatenation] = STATE(2039), + [sym_string] = STATE(1424), + [sym_simple_expansion] = STATE(1424), + [sym_string_expansion] = STATE(1424), + [sym_expansion] = STATE(1424), + [sym_command_substitution] = STATE(1424), + [sym_process_substitution] = STATE(1424), + [aux_sym_declaration_command_repeat1] = STATE(2039), + [sym__simple_heredoc_body] = ACTIONS(965), + [sym__heredoc_body_beginning] = ACTIONS(965), + [sym_file_descriptor] = ACTIONS(965), + [sym_variable_name] = ACTIONS(3125), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_done] = 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_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(3127), + [anon_sym_DQUOTE] = ACTIONS(3129), + [anon_sym_DOLLAR] = ACTIONS(3131), + [sym_raw_string] = ACTIONS(3133), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3135), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3137), + [anon_sym_BQUOTE] = ACTIONS(3139), + [anon_sym_LT_LPAREN] = ACTIONS(3141), + [anon_sym_GT_LPAREN] = ACTIONS(3141), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4790), + [sym_word] = ACTIONS(3145), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + }, + [1431] = { + [aux_sym_concatenation_repeat1] = STATE(2041), + [sym__simple_heredoc_body] = ACTIONS(971), + [sym__heredoc_body_beginning] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(971), + [sym__concat] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_done] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [sym__special_characters] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(975), + [sym_word] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(975), + }, + [1432] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(2044), + [anon_sym_DQUOTE] = ACTIONS(4794), + [anon_sym_DOLLAR] = ACTIONS(4796), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [1433] = { + [sym_string] = STATE(2046), + [anon_sym_DASH] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(3149), + [anon_sym_DOLLAR] = ACTIONS(4798), + [sym_raw_string] = ACTIONS(4800), + [anon_sym_POUND] = ACTIONS(4798), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4802), + [anon_sym_STAR] = ACTIONS(4804), + [anon_sym_AT] = ACTIONS(4804), + [anon_sym_QMARK] = ACTIONS(4804), + [anon_sym_0] = ACTIONS(4802), + [anon_sym__] = ACTIONS(4802), + }, + [1434] = { + [aux_sym_concatenation_repeat1] = STATE(2041), + [sym__simple_heredoc_body] = ACTIONS(989), + [sym__heredoc_body_beginning] = ACTIONS(989), + [sym_file_descriptor] = ACTIONS(989), + [sym__concat] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_done] = 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(991), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_AMP_GT] = ACTIONS(991), + [anon_sym_AMP_GT_GT] = ACTIONS(989), + [anon_sym_LT_AMP] = ACTIONS(989), + [anon_sym_GT_AMP] = ACTIONS(989), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_LT_LT_DASH] = ACTIONS(989), + [anon_sym_LT_LT_LT] = ACTIONS(989), + [sym__special_characters] = ACTIONS(989), + [anon_sym_DQUOTE] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(991), + [sym_raw_string] = ACTIONS(989), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(989), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(989), + [anon_sym_LT_LPAREN] = ACTIONS(989), + [anon_sym_GT_LPAREN] = ACTIONS(989), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(991), + [sym_word] = ACTIONS(991), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [1435] = { + [sym_subscript] = STATE(2051), + [sym_variable_name] = ACTIONS(4806), + [anon_sym_BANG] = ACTIONS(4808), + [anon_sym_DASH] = ACTIONS(4810), + [anon_sym_DOLLAR] = ACTIONS(4810), + [anon_sym_POUND] = ACTIONS(4808), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4814), + [anon_sym_AT] = ACTIONS(4814), + [anon_sym_QMARK] = ACTIONS(4814), + [anon_sym_0] = ACTIONS(4812), + [anon_sym__] = ACTIONS(4812), + }, + [1436] = { + [sym__statements] = STATE(2052), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [1437] = { + [sym__statements] = STATE(2053), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [1438] = { + [sym__statements] = STATE(2054), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [1439] = { + [sym_concatenation] = STATE(2055), + [sym_string] = STATE(1434), + [sym_simple_expansion] = STATE(1434), + [sym_string_expansion] = STATE(1434), + [sym_expansion] = STATE(1434), + [sym_command_substitution] = STATE(1434), + [sym_process_substitution] = STATE(1434), + [aux_sym_unset_command_repeat1] = STATE(2055), + [sym__simple_heredoc_body] = ACTIONS(1003), + [sym__heredoc_body_beginning] = ACTIONS(1003), + [sym_file_descriptor] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_done] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_SEMI_SEMI] = ACTIONS(1003), + [anon_sym_PIPE_AMP] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_AMP_GT] = ACTIONS(1005), + [anon_sym_AMP_GT_GT] = ACTIONS(1003), + [anon_sym_LT_AMP] = ACTIONS(1003), + [anon_sym_GT_AMP] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_LT_LT_DASH] = ACTIONS(1003), + [anon_sym_LT_LT_LT] = ACTIONS(1003), + [sym__special_characters] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3149), + [anon_sym_DOLLAR] = ACTIONS(3151), + [sym_raw_string] = ACTIONS(3153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3157), + [anon_sym_BQUOTE] = ACTIONS(3159), + [anon_sym_LT_LPAREN] = ACTIONS(3161), + [anon_sym_GT_LPAREN] = ACTIONS(3161), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4816), + [sym_word] = ACTIONS(3165), + [anon_sym_LF] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1005), + }, + [1440] = { + [sym_string] = STATE(2056), + [sym_simple_expansion] = STATE(2056), + [sym_string_expansion] = STATE(2056), + [sym_expansion] = STATE(2056), + [sym_command_substitution] = STATE(2056), + [sym_process_substitution] = STATE(2056), + [sym__special_characters] = ACTIONS(4818), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(4818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1727), + [anon_sym_LT_LPAREN] = ACTIONS(1729), + [anon_sym_GT_LPAREN] = ACTIONS(1729), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4818), + }, + [1441] = { + [aux_sym_concatenation_repeat1] = STATE(2057), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_done] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_EQ_TILDE] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [1442] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_done] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1049), + [anon_sym_EQ_EQ] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [1443] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(4820), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1444] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(4820), + [anon_sym_DOLLAR] = ACTIONS(4822), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [1445] = { + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_done] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1083), + [anon_sym_EQ_EQ] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [1446] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_done] = 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_EQ_TILDE] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1087), + [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), + }, + [1447] = { + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_done] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1091), + [anon_sym_EQ_EQ] = ACTIONS(1091), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + }, + [1448] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(4824), + [sym_comment] = ACTIONS(57), + }, + [1449] = { + [sym_subscript] = STATE(2063), + [sym_variable_name] = ACTIONS(4826), + [anon_sym_DASH] = ACTIONS(4828), + [anon_sym_DOLLAR] = ACTIONS(4828), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4830), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_AT] = ACTIONS(4832), + [anon_sym_QMARK] = ACTIONS(4832), + [anon_sym_0] = ACTIONS(4830), + [anon_sym__] = ACTIONS(4830), + }, + [1450] = { + [sym_concatenation] = STATE(2066), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2066), + [anon_sym_RBRACE] = ACTIONS(4834), + [anon_sym_EQ] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4836), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_COLON] = ACTIONS(4836), + [anon_sym_COLON_QMARK] = ACTIONS(4836), + [anon_sym_COLON_DASH] = ACTIONS(4836), + [anon_sym_PERCENT] = ACTIONS(4836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1451] = { + [sym_concatenation] = STATE(2069), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2069), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_EQ] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4844), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(4846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(4848), + [anon_sym_COLON] = ACTIONS(4844), + [anon_sym_COLON_QMARK] = ACTIONS(4844), + [anon_sym_COLON_DASH] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1452] = { + [anon_sym_RPAREN] = ACTIONS(4850), + [sym_comment] = ACTIONS(57), + }, + [1453] = { + [anon_sym_BQUOTE] = ACTIONS(4850), + [sym_comment] = ACTIONS(57), + }, + [1454] = { + [anon_sym_RPAREN] = ACTIONS(4852), + [sym_comment] = ACTIONS(57), + }, + [1455] = { + [sym__simple_heredoc_body] = ACTIONS(4854), + [sym__heredoc_body_beginning] = ACTIONS(4854), + [sym_file_descriptor] = ACTIONS(4854), + [ts_builtin_sym_end] = ACTIONS(4854), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_done] = ACTIONS(4854), + [anon_sym_fi] = ACTIONS(4854), + [anon_sym_elif] = ACTIONS(4854), + [anon_sym_else] = ACTIONS(4854), + [anon_sym_esac] = ACTIONS(4854), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_RPAREN] = ACTIONS(4854), + [anon_sym_SEMI_SEMI] = ACTIONS(4854), + [anon_sym_PIPE_AMP] = ACTIONS(4854), + [anon_sym_AMP_AMP] = ACTIONS(4854), + [anon_sym_PIPE_PIPE] = ACTIONS(4854), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_GT_GT] = ACTIONS(4854), + [anon_sym_AMP_GT] = ACTIONS(4856), + [anon_sym_AMP_GT_GT] = ACTIONS(4854), + [anon_sym_LT_AMP] = ACTIONS(4854), + [anon_sym_GT_AMP] = ACTIONS(4854), + [anon_sym_LT_LT] = ACTIONS(4856), + [anon_sym_LT_LT_DASH] = ACTIONS(4854), + [anon_sym_LT_LT_LT] = ACTIONS(4854), + [anon_sym_BQUOTE] = ACTIONS(4854), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4854), + [anon_sym_AMP] = ACTIONS(4856), + }, + [1456] = { + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_GT] = ACTIONS(4858), + [anon_sym_GT_GT] = ACTIONS(4860), + [anon_sym_AMP_GT] = ACTIONS(4858), + [anon_sym_AMP_GT_GT] = ACTIONS(4860), + [anon_sym_LT_AMP] = ACTIONS(4860), + [anon_sym_GT_AMP] = ACTIONS(4860), + [sym_comment] = ACTIONS(57), + }, + [1457] = { + [sym_file_descriptor] = ACTIONS(1213), + [sym_variable_name] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_done] = ACTIONS(4862), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_function] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_typeset] = ACTIONS(1217), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_local] = ACTIONS(1217), + [anon_sym_unset] = ACTIONS(1217), + [anon_sym_unsetenv] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_GT] = ACTIONS(1213), + [anon_sym_AMP_GT] = ACTIONS(1217), + [anon_sym_AMP_GT_GT] = ACTIONS(1213), + [anon_sym_LT_AMP] = ACTIONS(1213), + [anon_sym_GT_AMP] = ACTIONS(1213), + [sym__special_characters] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1217), + [sym_raw_string] = ACTIONS(1213), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1213), + [anon_sym_BQUOTE] = ACTIONS(1213), + [anon_sym_LT_LPAREN] = ACTIONS(1213), + [anon_sym_GT_LPAREN] = ACTIONS(1213), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1217), + }, + [1458] = { + [sym_redirected_statement] = STATE(2073), + [sym_for_statement] = STATE(2073), + [sym_c_style_for_statement] = STATE(2073), + [sym_while_statement] = STATE(2073), + [sym_if_statement] = STATE(2073), + [sym_case_statement] = STATE(2073), + [sym_function_definition] = STATE(2073), + [sym_compound_statement] = STATE(2073), + [sym_subshell] = STATE(2073), + [sym_pipeline] = STATE(2073), + [sym_list] = STATE(2073), + [sym_negated_command] = STATE(2073), + [sym_test_command] = STATE(2073), + [sym_declaration_command] = STATE(2073), + [sym_unset_command] = STATE(2073), + [sym_command] = STATE(2073), + [sym_command_name] = STATE(848), + [sym_variable_assignment] = STATE(2074), + [sym_subscript] = STATE(850), + [sym_file_redirect] = STATE(853), + [sym_concatenation] = STATE(851), + [sym_string] = STATE(840), + [sym_simple_expansion] = STATE(840), + [sym_string_expansion] = STATE(840), + [sym_expansion] = STATE(840), + [sym_command_substitution] = STATE(840), + [sym_process_substitution] = STATE(840), + [aux_sym_command_repeat1] = STATE(853), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(1705), + [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(1709), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(1711), + [anon_sym_typeset] = ACTIONS(1711), + [anon_sym_export] = ACTIONS(1711), + [anon_sym_readonly] = ACTIONS(1711), + [anon_sym_local] = ACTIONS(1711), + [anon_sym_unset] = ACTIONS(1713), + [anon_sym_unsetenv] = ACTIONS(1713), + [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(1715), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1727), + [anon_sym_LT_LPAREN] = ACTIONS(1729), + [anon_sym_GT_LPAREN] = ACTIONS(1729), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1731), + }, + [1459] = { + [sym_redirected_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_c_style_for_statement] = STATE(2075), + [sym_while_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_case_statement] = STATE(2075), + [sym_function_definition] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_subshell] = STATE(2075), + [sym_pipeline] = STATE(2075), + [sym_list] = STATE(2075), + [sym_negated_command] = STATE(2075), + [sym_test_command] = STATE(2075), + [sym_declaration_command] = STATE(2075), + [sym_unset_command] = STATE(2075), + [sym_command] = STATE(2075), + [sym_command_name] = STATE(848), + [sym_variable_assignment] = STATE(2076), + [sym_subscript] = STATE(850), + [sym_file_redirect] = STATE(853), + [sym_concatenation] = STATE(851), + [sym_string] = STATE(840), + [sym_simple_expansion] = STATE(840), + [sym_string_expansion] = STATE(840), + [sym_expansion] = STATE(840), + [sym_command_substitution] = STATE(840), + [sym_process_substitution] = STATE(840), + [aux_sym_command_repeat1] = STATE(853), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(1705), + [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(1709), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(1711), + [anon_sym_typeset] = ACTIONS(1711), + [anon_sym_export] = ACTIONS(1711), + [anon_sym_readonly] = ACTIONS(1711), + [anon_sym_local] = ACTIONS(1711), + [anon_sym_unset] = ACTIONS(1713), + [anon_sym_unsetenv] = ACTIONS(1713), + [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(1715), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1727), + [anon_sym_LT_LPAREN] = ACTIONS(1729), + [anon_sym_GT_LPAREN] = ACTIONS(1729), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1731), + }, + [1460] = { + [sym_concatenation] = STATE(632), + [sym_string] = STATE(2080), + [sym_simple_expansion] = STATE(2080), + [sym_string_expansion] = STATE(2080), + [sym_expansion] = STATE(2080), + [sym_command_substitution] = STATE(2080), + [sym_process_substitution] = STATE(2080), + [sym__special_characters] = ACTIONS(4864), + [anon_sym_DQUOTE] = ACTIONS(4866), + [anon_sym_DOLLAR] = ACTIONS(4868), + [sym_raw_string] = ACTIONS(4870), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4872), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4874), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LT_LPAREN] = ACTIONS(4878), + [anon_sym_GT_LPAREN] = ACTIONS(4878), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4870), + }, + [1461] = { + [sym_concatenation] = STATE(636), + [sym_string] = STATE(2086), + [sym_simple_expansion] = STATE(2086), + [sym_string_expansion] = STATE(2086), + [sym_expansion] = STATE(2086), + [sym_command_substitution] = STATE(2086), + [sym_process_substitution] = STATE(2086), + [sym__special_characters] = ACTIONS(4880), + [anon_sym_DQUOTE] = ACTIONS(4866), + [anon_sym_DOLLAR] = ACTIONS(4868), + [sym_raw_string] = ACTIONS(4882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4872), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4874), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LT_LPAREN] = ACTIONS(4878), + [anon_sym_GT_LPAREN] = ACTIONS(4878), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4882), + }, + [1462] = { + [anon_sym_SEMI] = ACTIONS(4884), + [anon_sym_done] = ACTIONS(1215), + [anon_sym_SEMI_SEMI] = ACTIONS(4886), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4886), + [anon_sym_AMP] = ACTIONS(4886), + }, + [1463] = { + [sym_file_redirect] = STATE(2088), + [sym_heredoc_redirect] = STATE(2088), + [sym_herestring_redirect] = STATE(2088), + [aux_sym_redirected_statement_repeat1] = STATE(2088), + [sym__simple_heredoc_body] = ACTIONS(1233), + [sym__heredoc_body_beginning] = ACTIONS(1233), + [sym_file_descriptor] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_done] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1233), + [anon_sym_PIPE_AMP] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(3205), + [anon_sym_GT] = ACTIONS(3205), + [anon_sym_GT_GT] = ACTIONS(3207), + [anon_sym_AMP_GT] = ACTIONS(3205), + [anon_sym_AMP_GT_GT] = ACTIONS(3207), + [anon_sym_LT_AMP] = ACTIONS(3207), + [anon_sym_GT_AMP] = ACTIONS(3207), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(3209), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1235), + }, + [1464] = { + [sym_concatenation] = STATE(2089), + [sym_string] = STATE(2091), + [sym_simple_expansion] = STATE(2091), + [sym_string_expansion] = STATE(2091), + [sym_expansion] = STATE(2091), + [sym_command_substitution] = STATE(2091), + [sym_process_substitution] = STATE(2091), + [sym_regex] = ACTIONS(4888), + [sym__special_characters] = ACTIONS(4890), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(4892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1727), + [anon_sym_LT_LPAREN] = ACTIONS(1729), + [anon_sym_GT_LPAREN] = ACTIONS(1729), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4892), + }, + [1465] = { + [aux_sym_concatenation_repeat1] = STATE(1441), + [sym__simple_heredoc_body] = ACTIONS(1243), + [sym__heredoc_body_beginning] = ACTIONS(1243), + [sym_file_descriptor] = ACTIONS(1243), + [sym__concat] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_done] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1245), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_LT_LT_DASH] = ACTIONS(1243), + [anon_sym_LT_LT_LT] = ACTIONS(1243), + [sym__special_characters] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1245), + [sym_raw_string] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [anon_sym_LT_LPAREN] = ACTIONS(1243), + [anon_sym_GT_LPAREN] = ACTIONS(1243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1245), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1245), + }, + [1466] = { + [aux_sym_concatenation_repeat1] = STATE(1441), + [sym__simple_heredoc_body] = ACTIONS(1247), + [sym__heredoc_body_beginning] = ACTIONS(1247), + [sym_file_descriptor] = ACTIONS(1247), + [sym__concat] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_done] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_SEMI_SEMI] = ACTIONS(1247), + [anon_sym_PIPE_AMP] = ACTIONS(1247), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_AMP_GT] = ACTIONS(1249), + [anon_sym_AMP_GT_GT] = ACTIONS(1247), + [anon_sym_LT_AMP] = ACTIONS(1247), + [anon_sym_GT_AMP] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_LT_LT_DASH] = ACTIONS(1247), + [anon_sym_LT_LT_LT] = ACTIONS(1247), + [sym__special_characters] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1247), + [anon_sym_DOLLAR] = ACTIONS(1249), + [sym_raw_string] = ACTIONS(1247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1247), + [anon_sym_BQUOTE] = ACTIONS(1247), + [anon_sym_LT_LPAREN] = ACTIONS(1247), + [anon_sym_GT_LPAREN] = ACTIONS(1247), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1249), + [anon_sym_LF] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1249), + }, + [1467] = { + [sym_concatenation] = STATE(2092), + [sym_string] = STATE(1466), + [sym_simple_expansion] = STATE(1466), + [sym_string_expansion] = STATE(1466), + [sym_expansion] = STATE(1466), + [sym_command_substitution] = STATE(1466), + [sym_process_substitution] = STATE(1466), + [aux_sym_command_repeat2] = STATE(2092), + [sym__simple_heredoc_body] = ACTIONS(1251), + [sym__heredoc_body_beginning] = ACTIONS(1251), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_done] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(3211), + [anon_sym_EQ_EQ] = ACTIONS(3211), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(3215), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1727), + [anon_sym_LT_LPAREN] = ACTIONS(1729), + [anon_sym_GT_LPAREN] = ACTIONS(1729), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3217), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + }, + [1468] = { + [sym_file_redirect] = STATE(1463), + [sym_heredoc_redirect] = STATE(1463), + [sym_heredoc_body] = STATE(2094), + [sym_herestring_redirect] = STATE(1463), + [aux_sym_redirected_statement_repeat1] = STATE(1463), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_done] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(3197), + [anon_sym_SEMI_SEMI] = ACTIONS(4896), + [anon_sym_PIPE_AMP] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3203), + [anon_sym_PIPE_PIPE] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(3205), + [anon_sym_GT] = ACTIONS(3205), + [anon_sym_GT_GT] = ACTIONS(3207), + [anon_sym_AMP_GT] = ACTIONS(3205), + [anon_sym_AMP_GT_GT] = ACTIONS(3207), + [anon_sym_LT_AMP] = ACTIONS(3207), + [anon_sym_GT_AMP] = ACTIONS(3207), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(3209), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(4894), + }, + [1469] = { + [sym_file_redirect] = STATE(1463), + [sym_heredoc_redirect] = STATE(1463), + [sym_heredoc_body] = STATE(2094), + [sym_herestring_redirect] = STATE(1463), + [aux_sym_redirected_statement_repeat1] = STATE(1463), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_done] = ACTIONS(4862), + [anon_sym_PIPE] = ACTIONS(3197), + [anon_sym_SEMI_SEMI] = ACTIONS(4896), + [anon_sym_PIPE_AMP] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3203), + [anon_sym_PIPE_PIPE] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(3209), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(4894), + }, + [1470] = { + [sym_concatenation] = STATE(2095), + [sym_string] = STATE(1466), + [sym_simple_expansion] = STATE(1466), + [sym_string_expansion] = STATE(1466), + [sym_expansion] = STATE(1466), + [sym_command_substitution] = STATE(1466), + [sym_process_substitution] = STATE(1466), + [aux_sym_command_repeat2] = STATE(2095), + [sym__simple_heredoc_body] = ACTIONS(1251), + [sym__heredoc_body_beginning] = ACTIONS(1251), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_done] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(3211), + [anon_sym_EQ_EQ] = ACTIONS(3211), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(3215), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1727), + [anon_sym_LT_LPAREN] = ACTIONS(1729), + [anon_sym_GT_LPAREN] = ACTIONS(1729), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3217), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + }, + [1471] = { + [aux_sym_concatenation_repeat1] = STATE(1474), + [sym_file_descriptor] = ACTIONS(1353), + [sym__concat] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_SEMI_SEMI] = ACTIONS(1353), + [anon_sym_PIPE_AMP] = ACTIONS(1353), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_GT] = ACTIONS(1355), + [anon_sym_GT_GT] = ACTIONS(1353), + [anon_sym_AMP_GT] = ACTIONS(1355), + [anon_sym_AMP_GT_GT] = ACTIONS(1353), + [anon_sym_LT_AMP] = ACTIONS(1353), + [anon_sym_GT_AMP] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(1355), + [anon_sym_LT_LT_DASH] = ACTIONS(1353), + [anon_sym_LT_LT_LT] = ACTIONS(1353), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1355), + }, + [1472] = { + [aux_sym_concatenation_repeat1] = STATE(1474), + [sym_file_descriptor] = ACTIONS(1357), + [sym__concat] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_SEMI_SEMI] = ACTIONS(1357), + [anon_sym_PIPE_AMP] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1357), + [anon_sym_AMP_GT] = ACTIONS(1359), + [anon_sym_AMP_GT_GT] = ACTIONS(1357), + [anon_sym_LT_AMP] = ACTIONS(1357), + [anon_sym_GT_AMP] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_LT_LT_DASH] = ACTIONS(1357), + [anon_sym_LT_LT_LT] = ACTIONS(1357), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), + }, + [1473] = { + [sym_file_descriptor] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_SEMI_SEMI] = ACTIONS(1357), + [anon_sym_PIPE_AMP] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1357), + [anon_sym_AMP_GT] = ACTIONS(1359), + [anon_sym_AMP_GT_GT] = ACTIONS(1357), + [anon_sym_LT_AMP] = ACTIONS(1357), + [anon_sym_GT_AMP] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_LT_LT_DASH] = ACTIONS(1357), + [anon_sym_LT_LT_LT] = ACTIONS(1357), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), + }, + [1474] = { + [aux_sym_concatenation_repeat1] = STATE(2096), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [1475] = { + [sym_concatenation] = STATE(2097), + [sym_string] = STATE(2102), + [sym_array] = STATE(2097), + [sym_simple_expansion] = STATE(2102), + [sym_string_expansion] = STATE(2102), + [sym_expansion] = STATE(2102), + [sym_command_substitution] = STATE(2102), + [sym_process_substitution] = STATE(2102), + [sym__empty_value] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4900), + [sym__special_characters] = ACTIONS(4902), + [anon_sym_DQUOTE] = ACTIONS(4904), + [anon_sym_DOLLAR] = ACTIONS(4906), + [sym_raw_string] = ACTIONS(4908), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4910), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4912), + [anon_sym_BQUOTE] = ACTIONS(4914), + [anon_sym_LT_LPAREN] = ACTIONS(4916), + [anon_sym_GT_LPAREN] = ACTIONS(4916), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4908), + }, + [1476] = { + [anon_sym_then] = ACTIONS(4918), + [sym_comment] = ACTIONS(57), + }, + [1477] = { + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_PLUS_EQ] = ACTIONS(4920), + [sym_comment] = ACTIONS(57), + }, + [1478] = { + [sym_subshell] = STATE(140), + [sym_test_command] = STATE(140), + [sym_command] = STATE(140), + [sym_command_name] = STATE(1492), + [sym_variable_assignment] = STATE(1497), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(1497), + [sym_concatenation] = STATE(1495), + [sym_string] = STATE(1484), + [sym_simple_expansion] = STATE(1484), + [sym_string_expansion] = STATE(1484), + [sym_expansion] = STATE(1484), + [sym_command_substitution] = STATE(1484), + [sym_process_substitution] = STATE(1484), + [aux_sym_command_repeat1] = STATE(1497), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(223), + [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(3291), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(3297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3301), + [anon_sym_BQUOTE] = ACTIONS(3303), + [anon_sym_LT_LPAREN] = ACTIONS(3305), + [anon_sym_GT_LPAREN] = ACTIONS(3305), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3297), + }, + [1479] = { + [sym_variable_assignment] = STATE(2119), + [sym_subscript] = STATE(2118), + [sym_concatenation] = STATE(2119), + [sym_string] = STATE(2113), + [sym_simple_expansion] = STATE(2113), + [sym_string_expansion] = STATE(2113), + [sym_expansion] = STATE(2113), + [sym_command_substitution] = STATE(2113), + [sym_process_substitution] = STATE(2113), + [aux_sym_declaration_command_repeat1] = STATE(2119), + [sym__simple_heredoc_body] = ACTIONS(259), + [sym__heredoc_body_beginning] = ACTIONS(259), + [sym_file_descriptor] = ACTIONS(259), + [sym_variable_name] = ACTIONS(4922), + [anon_sym_SEMI] = ACTIONS(263), + [anon_sym_fi] = ACTIONS(263), + [anon_sym_PIPE] = ACTIONS(263), + [anon_sym_SEMI_SEMI] = ACTIONS(259), + [anon_sym_PIPE_AMP] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(259), + [anon_sym_PIPE_PIPE] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(263), + [anon_sym_GT] = ACTIONS(263), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_AMP_GT] = ACTIONS(263), + [anon_sym_AMP_GT_GT] = ACTIONS(259), + [anon_sym_LT_AMP] = ACTIONS(259), + [anon_sym_GT_AMP] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(263), + [anon_sym_LT_LT_DASH] = ACTIONS(259), + [anon_sym_LT_LT_LT] = ACTIONS(259), + [sym__special_characters] = ACTIONS(4924), + [anon_sym_DQUOTE] = ACTIONS(4926), + [anon_sym_DOLLAR] = ACTIONS(4928), + [sym_raw_string] = ACTIONS(4930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4932), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4934), + [anon_sym_BQUOTE] = ACTIONS(4936), + [anon_sym_LT_LPAREN] = ACTIONS(4938), + [anon_sym_GT_LPAREN] = ACTIONS(4938), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4940), + [sym_word] = ACTIONS(4942), + [anon_sym_LF] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(263), + }, + [1480] = { + [sym_concatenation] = STATE(2128), + [sym_string] = STATE(2123), + [sym_simple_expansion] = STATE(2123), + [sym_string_expansion] = STATE(2123), + [sym_expansion] = STATE(2123), + [sym_command_substitution] = STATE(2123), + [sym_process_substitution] = STATE(2123), + [aux_sym_unset_command_repeat1] = STATE(2128), + [sym__simple_heredoc_body] = ACTIONS(285), + [sym__heredoc_body_beginning] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_fi] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(287), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(287), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [sym__special_characters] = ACTIONS(4944), + [anon_sym_DQUOTE] = ACTIONS(4946), + [anon_sym_DOLLAR] = ACTIONS(4948), + [sym_raw_string] = ACTIONS(4950), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4952), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4954), + [anon_sym_BQUOTE] = ACTIONS(4956), + [anon_sym_LT_LPAREN] = ACTIONS(4958), + [anon_sym_GT_LPAREN] = ACTIONS(4958), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4960), + [sym_word] = ACTIONS(4962), + [anon_sym_LF] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(287), + }, + [1481] = { + [aux_sym_concatenation_repeat1] = STATE(2130), + [sym__simple_heredoc_body] = ACTIONS(325), + [sym__heredoc_body_beginning] = ACTIONS(325), + [sym_file_descriptor] = ACTIONS(325), + [sym__concat] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(329), + [anon_sym_fi] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(325), + [anon_sym_PIPE_AMP] = ACTIONS(325), + [anon_sym_AMP_AMP] = ACTIONS(325), + [anon_sym_PIPE_PIPE] = ACTIONS(325), + [anon_sym_EQ_TILDE] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(329), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_LT_LT_DASH] = ACTIONS(325), + [anon_sym_LT_LT_LT] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(329), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(329), + [anon_sym_LF] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(329), + }, + [1482] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(2133), + [anon_sym_DQUOTE] = ACTIONS(4966), + [anon_sym_DOLLAR] = ACTIONS(4968), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [1483] = { + [sym_string] = STATE(2135), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(4970), + [sym_raw_string] = ACTIONS(4972), + [anon_sym_POUND] = ACTIONS(4970), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4976), + [anon_sym_0] = ACTIONS(4974), + [anon_sym__] = ACTIONS(4974), + }, + [1484] = { + [aux_sym_concatenation_repeat1] = STATE(2130), + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [sym__concat] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_fi] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), + }, + [1485] = { + [sym_subscript] = STATE(2140), + [sym_variable_name] = ACTIONS(4978), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4982), + [anon_sym_DOLLAR] = ACTIONS(4982), + [anon_sym_POUND] = ACTIONS(4980), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4986), + [anon_sym_AT] = ACTIONS(4986), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_0] = ACTIONS(4984), + [anon_sym__] = ACTIONS(4984), + }, + [1486] = { + [sym__statements] = STATE(2141), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [1487] = { + [sym__statements] = STATE(2142), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [1488] = { + [sym__statements] = STATE(2143), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [1489] = { + [aux_sym_concatenation_repeat1] = STATE(2130), + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [sym__concat] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_fi] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), + }, + [1490] = { + [anon_sym_fi] = ACTIONS(4988), + [sym_comment] = ACTIONS(57), + }, + [1491] = { + [sym_file_redirect] = STATE(2151), + [sym_heredoc_redirect] = STATE(2151), + [sym_heredoc_body] = STATE(2150), + [sym_herestring_redirect] = STATE(2151), + [aux_sym_redirected_statement_repeat1] = STATE(2151), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(4990), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_fi] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(4994), + [anon_sym_SEMI_SEMI] = ACTIONS(4996), + [anon_sym_PIPE_AMP] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(5000), + [anon_sym_PIPE_PIPE] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5002), + [anon_sym_GT_GT] = ACTIONS(5004), + [anon_sym_AMP_GT] = ACTIONS(5002), + [anon_sym_AMP_GT_GT] = ACTIONS(5004), + [anon_sym_LT_AMP] = ACTIONS(5004), + [anon_sym_GT_AMP] = ACTIONS(5004), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(5006), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4992), + }, + [1492] = { + [sym_concatenation] = STATE(2155), + [sym_string] = STATE(2154), + [sym_simple_expansion] = STATE(2154), + [sym_string_expansion] = STATE(2154), + [sym_expansion] = STATE(2154), + [sym_command_substitution] = STATE(2154), + [sym_process_substitution] = STATE(2154), + [aux_sym_command_repeat2] = STATE(2155), + [sym__simple_heredoc_body] = ACTIONS(415), + [sym__heredoc_body_beginning] = ACTIONS(415), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_fi] = ACTIONS(417), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(415), + [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(5008), + [anon_sym_EQ_EQ] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(415), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(415), + [anon_sym_LT_AMP] = ACTIONS(415), + [anon_sym_GT_AMP] = ACTIONS(415), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(415), + [anon_sym_LT_LT_LT] = ACTIONS(415), + [sym__special_characters] = ACTIONS(5010), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(5012), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3301), + [anon_sym_BQUOTE] = ACTIONS(3303), + [anon_sym_LT_LPAREN] = ACTIONS(3305), + [anon_sym_GT_LPAREN] = ACTIONS(3305), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5014), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), + }, + [1493] = { + [sym_file_redirect] = STATE(2151), + [sym_heredoc_redirect] = STATE(2151), + [sym_heredoc_body] = STATE(2150), + [sym_herestring_redirect] = STATE(2151), + [aux_sym_redirected_statement_repeat1] = STATE(2151), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_fi] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(4994), + [anon_sym_SEMI_SEMI] = ACTIONS(4996), + [anon_sym_PIPE_AMP] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(5000), + [anon_sym_PIPE_PIPE] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(5006), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4992), + }, + [1494] = { + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_PLUS_EQ] = ACTIONS(4920), + [sym_comment] = ACTIONS(57), + }, + [1495] = { + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_fi] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), + }, + [1496] = { + [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(1492), + [sym_variable_assignment] = STATE(2157), + [sym_subscript] = STATE(1494), + [sym_file_redirect] = STATE(1497), + [sym_concatenation] = STATE(1495), + [sym_string] = STATE(1484), + [sym_simple_expansion] = STATE(1484), + [sym_string_expansion] = STATE(1484), + [sym_expansion] = STATE(1484), + [sym_command_substitution] = STATE(1484), + [sym_process_substitution] = STATE(1484), + [aux_sym__statements_repeat1] = STATE(236), + [aux_sym_command_repeat1] = STATE(1497), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(3281), + [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(3285), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(3287), + [anon_sym_typeset] = ACTIONS(3287), + [anon_sym_export] = ACTIONS(3287), + [anon_sym_readonly] = ACTIONS(3287), + [anon_sym_local] = ACTIONS(3287), + [anon_sym_unset] = ACTIONS(3289), + [anon_sym_unsetenv] = ACTIONS(3289), + [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(3291), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(3297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3301), + [anon_sym_BQUOTE] = ACTIONS(3303), + [anon_sym_LT_LPAREN] = ACTIONS(3305), + [anon_sym_GT_LPAREN] = ACTIONS(3305), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3307), + }, + [1497] = { + [sym_command_name] = STATE(2158), + [sym_variable_assignment] = STATE(238), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(238), + [sym_concatenation] = STATE(1495), + [sym_string] = STATE(1484), + [sym_simple_expansion] = STATE(1484), + [sym_string_expansion] = STATE(1484), + [sym_expansion] = STATE(1484), + [sym_command_substitution] = STATE(1484), + [sym_process_substitution] = STATE(1484), + [aux_sym_command_repeat1] = STATE(238), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(223), + [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(5016), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(3297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3301), + [anon_sym_BQUOTE] = ACTIONS(3303), + [anon_sym_LT_LPAREN] = ACTIONS(3305), + [anon_sym_GT_LPAREN] = ACTIONS(3305), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3297), + }, + [1498] = { + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(5018), + [anon_sym_PLUS_EQ] = ACTIONS(5018), + [sym_comment] = ACTIONS(57), + }, + [1499] = { + [aux_sym_concatenation_repeat1] = STATE(2161), + [sym__simple_heredoc_body] = ACTIONS(933), + [sym__heredoc_body_beginning] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(933), + [sym__concat] = ACTIONS(5020), + [sym_variable_name] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_fi] = ACTIONS(937), + [anon_sym_elif] = ACTIONS(937), + [anon_sym_else] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(937), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(937), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(937), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [sym__special_characters] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(937), + [sym_raw_string] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(937), + [sym_word] = ACTIONS(937), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(937), + }, + [1500] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(2164), + [anon_sym_DQUOTE] = ACTIONS(5022), + [anon_sym_DOLLAR] = ACTIONS(5024), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [1501] = { + [sym_string] = STATE(2166), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_DQUOTE] = ACTIONS(3313), + [anon_sym_DOLLAR] = ACTIONS(5026), + [sym_raw_string] = ACTIONS(5028), + [anon_sym_POUND] = ACTIONS(5026), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_AT] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(5032), + [anon_sym_0] = ACTIONS(5030), + [anon_sym__] = ACTIONS(5030), + }, + [1502] = { + [aux_sym_concatenation_repeat1] = STATE(2161), + [sym__simple_heredoc_body] = ACTIONS(951), + [sym__heredoc_body_beginning] = ACTIONS(951), + [sym_file_descriptor] = ACTIONS(951), + [sym__concat] = ACTIONS(5020), + [sym_variable_name] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_fi] = ACTIONS(953), + [anon_sym_elif] = ACTIONS(953), + [anon_sym_else] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_SEMI_SEMI] = ACTIONS(951), + [anon_sym_PIPE_AMP] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_LT] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(953), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_AMP_GT] = ACTIONS(953), + [anon_sym_AMP_GT_GT] = ACTIONS(951), + [anon_sym_LT_AMP] = ACTIONS(951), + [anon_sym_GT_AMP] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(953), + [anon_sym_LT_LT_DASH] = ACTIONS(951), + [anon_sym_LT_LT_LT] = ACTIONS(951), + [sym__special_characters] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(953), + [sym_raw_string] = ACTIONS(951), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(951), + [anon_sym_BQUOTE] = ACTIONS(951), + [anon_sym_LT_LPAREN] = ACTIONS(951), + [anon_sym_GT_LPAREN] = ACTIONS(951), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(953), + [sym_word] = ACTIONS(953), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_AMP] = ACTIONS(953), + }, + [1503] = { + [sym_subscript] = STATE(2171), + [sym_variable_name] = ACTIONS(5034), + [anon_sym_BANG] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_DOLLAR] = ACTIONS(5038), + [anon_sym_POUND] = ACTIONS(5036), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5040), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AT] = ACTIONS(5042), + [anon_sym_QMARK] = ACTIONS(5042), + [anon_sym_0] = ACTIONS(5040), + [anon_sym__] = ACTIONS(5040), + }, + [1504] = { + [sym__statements] = STATE(2172), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [1505] = { + [sym__statements] = STATE(2173), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [1506] = { + [sym__statements] = STATE(2174), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [1507] = { + [anon_sym_EQ] = ACTIONS(5018), + [anon_sym_PLUS_EQ] = ACTIONS(5018), + [sym_comment] = ACTIONS(57), + }, + [1508] = { + [sym_variable_assignment] = STATE(2175), + [sym_subscript] = STATE(1507), + [sym_concatenation] = STATE(2175), + [sym_string] = STATE(1502), + [sym_simple_expansion] = STATE(1502), + [sym_string_expansion] = STATE(1502), + [sym_expansion] = STATE(1502), + [sym_command_substitution] = STATE(1502), + [sym_process_substitution] = STATE(1502), + [aux_sym_declaration_command_repeat1] = STATE(2175), + [sym__simple_heredoc_body] = ACTIONS(965), + [sym__heredoc_body_beginning] = ACTIONS(965), + [sym_file_descriptor] = ACTIONS(965), + [sym_variable_name] = ACTIONS(3309), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_fi] = ACTIONS(967), + [anon_sym_elif] = ACTIONS(967), + [anon_sym_else] = 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_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(3311), + [anon_sym_DQUOTE] = ACTIONS(3313), + [anon_sym_DOLLAR] = ACTIONS(3315), + [sym_raw_string] = ACTIONS(3317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3319), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3321), + [anon_sym_BQUOTE] = ACTIONS(3323), + [anon_sym_LT_LPAREN] = ACTIONS(3325), + [anon_sym_GT_LPAREN] = ACTIONS(3325), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5044), + [sym_word] = ACTIONS(3329), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + }, + [1509] = { + [aux_sym_concatenation_repeat1] = STATE(2177), + [sym__simple_heredoc_body] = ACTIONS(971), + [sym__heredoc_body_beginning] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(971), + [sym__concat] = ACTIONS(5046), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_fi] = ACTIONS(975), + [anon_sym_elif] = ACTIONS(975), + [anon_sym_else] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [sym__special_characters] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(975), + [sym_word] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(975), + }, + [1510] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(2180), + [anon_sym_DQUOTE] = ACTIONS(5048), + [anon_sym_DOLLAR] = ACTIONS(5050), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [1511] = { + [sym_string] = STATE(2182), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_DQUOTE] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(5052), + [sym_raw_string] = ACTIONS(5054), + [anon_sym_POUND] = ACTIONS(5052), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5056), + [anon_sym_STAR] = ACTIONS(5058), + [anon_sym_AT] = ACTIONS(5058), + [anon_sym_QMARK] = ACTIONS(5058), + [anon_sym_0] = ACTIONS(5056), + [anon_sym__] = ACTIONS(5056), + }, + [1512] = { + [aux_sym_concatenation_repeat1] = STATE(2177), + [sym__simple_heredoc_body] = ACTIONS(989), + [sym__heredoc_body_beginning] = ACTIONS(989), + [sym_file_descriptor] = ACTIONS(989), + [sym__concat] = ACTIONS(5046), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_fi] = ACTIONS(991), + [anon_sym_elif] = ACTIONS(991), + [anon_sym_else] = 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(991), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_AMP_GT] = ACTIONS(991), + [anon_sym_AMP_GT_GT] = ACTIONS(989), + [anon_sym_LT_AMP] = ACTIONS(989), + [anon_sym_GT_AMP] = ACTIONS(989), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_LT_LT_DASH] = ACTIONS(989), + [anon_sym_LT_LT_LT] = ACTIONS(989), + [sym__special_characters] = ACTIONS(989), + [anon_sym_DQUOTE] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(991), + [sym_raw_string] = ACTIONS(989), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(989), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(989), + [anon_sym_LT_LPAREN] = ACTIONS(989), + [anon_sym_GT_LPAREN] = ACTIONS(989), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(991), + [sym_word] = ACTIONS(991), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [1513] = { + [sym_subscript] = STATE(2187), + [sym_variable_name] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5064), + [anon_sym_POUND] = ACTIONS(5062), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5066), + [anon_sym_STAR] = ACTIONS(5068), + [anon_sym_AT] = ACTIONS(5068), + [anon_sym_QMARK] = ACTIONS(5068), + [anon_sym_0] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5066), + }, + [1514] = { + [sym__statements] = STATE(2188), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [1515] = { + [sym__statements] = STATE(2189), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [1516] = { + [sym__statements] = STATE(2190), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [1517] = { + [sym_concatenation] = STATE(2191), + [sym_string] = STATE(1512), + [sym_simple_expansion] = STATE(1512), + [sym_string_expansion] = STATE(1512), + [sym_expansion] = STATE(1512), + [sym_command_substitution] = STATE(1512), + [sym_process_substitution] = STATE(1512), + [aux_sym_unset_command_repeat1] = STATE(2191), + [sym__simple_heredoc_body] = ACTIONS(1003), + [sym__heredoc_body_beginning] = ACTIONS(1003), + [sym_file_descriptor] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_fi] = ACTIONS(1005), + [anon_sym_elif] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_SEMI_SEMI] = ACTIONS(1003), + [anon_sym_PIPE_AMP] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_AMP_GT] = ACTIONS(1005), + [anon_sym_AMP_GT_GT] = ACTIONS(1003), + [anon_sym_LT_AMP] = ACTIONS(1003), + [anon_sym_GT_AMP] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_LT_LT_DASH] = ACTIONS(1003), + [anon_sym_LT_LT_LT] = ACTIONS(1003), + [sym__special_characters] = ACTIONS(3331), + [anon_sym_DQUOTE] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [sym_raw_string] = ACTIONS(3337), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3341), + [anon_sym_BQUOTE] = ACTIONS(3343), + [anon_sym_LT_LPAREN] = ACTIONS(3345), + [anon_sym_GT_LPAREN] = ACTIONS(3345), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5070), + [sym_word] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1005), + }, + [1518] = { + [sym_string] = STATE(2192), + [sym_simple_expansion] = STATE(2192), + [sym_string_expansion] = STATE(2192), + [sym_expansion] = STATE(2192), + [sym_command_substitution] = STATE(2192), + [sym_process_substitution] = STATE(2192), + [sym__special_characters] = ACTIONS(5072), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_DOLLAR] = ACTIONS(1777), + [sym_raw_string] = ACTIONS(5072), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1783), + [anon_sym_BQUOTE] = ACTIONS(1785), + [anon_sym_LT_LPAREN] = ACTIONS(1787), + [anon_sym_GT_LPAREN] = ACTIONS(1787), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5072), + }, + [1519] = { + [aux_sym_concatenation_repeat1] = STATE(2193), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_fi] = ACTIONS(1045), + [anon_sym_elif] = ACTIONS(1045), + [anon_sym_else] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_EQ_TILDE] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [1520] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_fi] = ACTIONS(1049), + [anon_sym_elif] = ACTIONS(1049), + [anon_sym_else] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1049), + [anon_sym_EQ_EQ] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [1521] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(5074), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1522] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(5074), + [anon_sym_DOLLAR] = ACTIONS(5076), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [1523] = { + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_fi] = ACTIONS(1083), + [anon_sym_elif] = ACTIONS(1083), + [anon_sym_else] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1083), + [anon_sym_EQ_EQ] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [1524] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_fi] = ACTIONS(1087), + [anon_sym_elif] = ACTIONS(1087), + [anon_sym_else] = 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_EQ_TILDE] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1087), + [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), + }, + [1525] = { + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_fi] = ACTIONS(1091), + [anon_sym_elif] = ACTIONS(1091), + [anon_sym_else] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1091), + [anon_sym_EQ_EQ] = ACTIONS(1091), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + }, + [1526] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(5078), + [sym_comment] = ACTIONS(57), + }, + [1527] = { + [sym_subscript] = STATE(2199), + [sym_variable_name] = ACTIONS(5080), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_DOLLAR] = ACTIONS(5082), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5084), + [anon_sym_STAR] = ACTIONS(5086), + [anon_sym_AT] = ACTIONS(5086), + [anon_sym_QMARK] = ACTIONS(5086), + [anon_sym_0] = ACTIONS(5084), + [anon_sym__] = ACTIONS(5084), + }, + [1528] = { + [sym_concatenation] = STATE(2202), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2202), + [anon_sym_RBRACE] = ACTIONS(5088), + [anon_sym_EQ] = ACTIONS(5090), + [anon_sym_DASH] = ACTIONS(5090), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5092), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5094), + [anon_sym_COLON] = ACTIONS(5090), + [anon_sym_COLON_QMARK] = ACTIONS(5090), + [anon_sym_COLON_DASH] = ACTIONS(5090), + [anon_sym_PERCENT] = ACTIONS(5090), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1529] = { + [sym_concatenation] = STATE(2205), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2205), + [anon_sym_RBRACE] = ACTIONS(5096), + [anon_sym_EQ] = ACTIONS(5098), + [anon_sym_DASH] = ACTIONS(5098), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5102), + [anon_sym_COLON] = ACTIONS(5098), + [anon_sym_COLON_QMARK] = ACTIONS(5098), + [anon_sym_COLON_DASH] = ACTIONS(5098), + [anon_sym_PERCENT] = ACTIONS(5098), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1530] = { + [anon_sym_RPAREN] = ACTIONS(5104), + [sym_comment] = ACTIONS(57), + }, + [1531] = { + [anon_sym_BQUOTE] = ACTIONS(5104), + [sym_comment] = ACTIONS(57), + }, + [1532] = { + [anon_sym_RPAREN] = ACTIONS(5106), + [sym_comment] = ACTIONS(57), + }, + [1533] = { + [sym__simple_heredoc_body] = ACTIONS(5108), + [sym__heredoc_body_beginning] = ACTIONS(5108), + [sym_file_descriptor] = ACTIONS(5108), + [ts_builtin_sym_end] = ACTIONS(5108), + [anon_sym_SEMI] = ACTIONS(5110), + [anon_sym_done] = ACTIONS(5108), + [anon_sym_fi] = ACTIONS(5108), + [anon_sym_elif] = ACTIONS(5108), + [anon_sym_else] = ACTIONS(5108), + [anon_sym_esac] = ACTIONS(5108), + [anon_sym_PIPE] = ACTIONS(5110), + [anon_sym_RPAREN] = ACTIONS(5108), + [anon_sym_SEMI_SEMI] = ACTIONS(5108), + [anon_sym_PIPE_AMP] = ACTIONS(5108), + [anon_sym_AMP_AMP] = ACTIONS(5108), + [anon_sym_PIPE_PIPE] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5110), + [anon_sym_GT] = ACTIONS(5110), + [anon_sym_GT_GT] = ACTIONS(5108), + [anon_sym_AMP_GT] = ACTIONS(5110), + [anon_sym_AMP_GT_GT] = ACTIONS(5108), + [anon_sym_LT_AMP] = ACTIONS(5108), + [anon_sym_GT_AMP] = ACTIONS(5108), + [anon_sym_LT_LT] = ACTIONS(5110), + [anon_sym_LT_LT_DASH] = ACTIONS(5108), + [anon_sym_LT_LT_LT] = ACTIONS(5108), + [anon_sym_BQUOTE] = ACTIONS(5108), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5108), + [anon_sym_AMP] = ACTIONS(5110), + }, + [1534] = { + [anon_sym_fi] = ACTIONS(5112), + [sym_comment] = ACTIONS(57), + }, + [1535] = { + [sym_elif_clause] = STATE(1550), + [sym_else_clause] = STATE(2209), + [aux_sym_if_statement_repeat1] = STATE(1550), + [anon_sym_fi] = ACTIONS(5112), + [anon_sym_elif] = ACTIONS(3377), + [anon_sym_else] = ACTIONS(3379), + [sym_comment] = ACTIONS(57), + }, + [1536] = { + [anon_sym_LT] = ACTIONS(5114), + [anon_sym_GT] = ACTIONS(5114), + [anon_sym_GT_GT] = ACTIONS(5116), + [anon_sym_AMP_GT] = ACTIONS(5114), + [anon_sym_AMP_GT_GT] = ACTIONS(5116), + [anon_sym_LT_AMP] = ACTIONS(5116), + [anon_sym_GT_AMP] = ACTIONS(5116), + [sym_comment] = ACTIONS(57), + }, + [1537] = { + [sym_file_descriptor] = ACTIONS(1213), + [sym_variable_name] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_fi] = ACTIONS(4862), + [anon_sym_elif] = ACTIONS(4862), + [anon_sym_else] = ACTIONS(4862), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_function] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_typeset] = ACTIONS(1217), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_local] = ACTIONS(1217), + [anon_sym_unset] = ACTIONS(1217), + [anon_sym_unsetenv] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_GT] = ACTIONS(1213), + [anon_sym_AMP_GT] = ACTIONS(1217), + [anon_sym_AMP_GT_GT] = ACTIONS(1213), + [anon_sym_LT_AMP] = ACTIONS(1213), + [anon_sym_GT_AMP] = ACTIONS(1213), + [sym__special_characters] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1217), + [sym_raw_string] = ACTIONS(1213), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1213), + [anon_sym_BQUOTE] = ACTIONS(1213), + [anon_sym_LT_LPAREN] = ACTIONS(1213), + [anon_sym_GT_LPAREN] = ACTIONS(1213), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1217), + }, + [1538] = { + [sym_redirected_statement] = STATE(2211), + [sym_for_statement] = STATE(2211), + [sym_c_style_for_statement] = STATE(2211), + [sym_while_statement] = STATE(2211), + [sym_if_statement] = STATE(2211), + [sym_case_statement] = STATE(2211), + [sym_function_definition] = STATE(2211), + [sym_compound_statement] = STATE(2211), + [sym_subshell] = STATE(2211), + [sym_pipeline] = STATE(2211), + [sym_list] = STATE(2211), + [sym_negated_command] = STATE(2211), + [sym_test_command] = STATE(2211), + [sym_declaration_command] = STATE(2211), + [sym_unset_command] = STATE(2211), + [sym_command] = STATE(2211), + [sym_command_name] = STATE(891), + [sym_variable_assignment] = STATE(2212), + [sym_subscript] = STATE(893), + [sym_file_redirect] = STATE(897), + [sym_concatenation] = STATE(894), + [sym_string] = STATE(882), + [sym_simple_expansion] = STATE(882), + [sym_string_expansion] = STATE(882), + [sym_expansion] = STATE(882), + [sym_command_substitution] = STATE(882), + [sym_process_substitution] = STATE(882), + [aux_sym_command_repeat1] = STATE(897), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(1759), + [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(1767), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(1769), + [anon_sym_typeset] = ACTIONS(1769), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_readonly] = ACTIONS(1769), + [anon_sym_local] = ACTIONS(1769), + [anon_sym_unset] = ACTIONS(1771), + [anon_sym_unsetenv] = ACTIONS(1771), + [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(1773), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_DOLLAR] = ACTIONS(1777), + [sym_raw_string] = ACTIONS(1779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1783), + [anon_sym_BQUOTE] = ACTIONS(1785), + [anon_sym_LT_LPAREN] = ACTIONS(1787), + [anon_sym_GT_LPAREN] = ACTIONS(1787), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1789), + }, + [1539] = { + [sym_redirected_statement] = STATE(2213), + [sym_for_statement] = STATE(2213), + [sym_c_style_for_statement] = STATE(2213), + [sym_while_statement] = STATE(2213), + [sym_if_statement] = STATE(2213), + [sym_case_statement] = STATE(2213), + [sym_function_definition] = STATE(2213), + [sym_compound_statement] = STATE(2213), + [sym_subshell] = STATE(2213), + [sym_pipeline] = STATE(2213), + [sym_list] = STATE(2213), + [sym_negated_command] = STATE(2213), + [sym_test_command] = STATE(2213), + [sym_declaration_command] = STATE(2213), + [sym_unset_command] = STATE(2213), + [sym_command] = STATE(2213), + [sym_command_name] = STATE(891), + [sym_variable_assignment] = STATE(2214), + [sym_subscript] = STATE(893), + [sym_file_redirect] = STATE(897), + [sym_concatenation] = STATE(894), + [sym_string] = STATE(882), + [sym_simple_expansion] = STATE(882), + [sym_string_expansion] = STATE(882), + [sym_expansion] = STATE(882), + [sym_command_substitution] = STATE(882), + [sym_process_substitution] = STATE(882), + [aux_sym_command_repeat1] = STATE(897), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(1759), + [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(1767), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(1769), + [anon_sym_typeset] = ACTIONS(1769), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_readonly] = ACTIONS(1769), + [anon_sym_local] = ACTIONS(1769), + [anon_sym_unset] = ACTIONS(1771), + [anon_sym_unsetenv] = ACTIONS(1771), + [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(1773), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_DOLLAR] = ACTIONS(1777), + [sym_raw_string] = ACTIONS(1779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1783), + [anon_sym_BQUOTE] = ACTIONS(1785), + [anon_sym_LT_LPAREN] = ACTIONS(1787), + [anon_sym_GT_LPAREN] = ACTIONS(1787), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1789), + }, + [1540] = { + [sym_concatenation] = STATE(632), + [sym_string] = STATE(2216), + [sym_simple_expansion] = STATE(2216), + [sym_string_expansion] = STATE(2216), + [sym_expansion] = STATE(2216), + [sym_command_substitution] = STATE(2216), + [sym_process_substitution] = STATE(2216), + [sym__special_characters] = ACTIONS(5118), + [anon_sym_DQUOTE] = ACTIONS(4866), + [anon_sym_DOLLAR] = ACTIONS(4868), + [sym_raw_string] = ACTIONS(5120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4872), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4874), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LT_LPAREN] = ACTIONS(4878), + [anon_sym_GT_LPAREN] = ACTIONS(4878), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5120), + }, + [1541] = { + [sym_concatenation] = STATE(636), + [sym_string] = STATE(2218), + [sym_simple_expansion] = STATE(2218), + [sym_string_expansion] = STATE(2218), + [sym_expansion] = STATE(2218), + [sym_command_substitution] = STATE(2218), + [sym_process_substitution] = STATE(2218), + [sym__special_characters] = ACTIONS(5122), + [anon_sym_DQUOTE] = ACTIONS(4866), + [anon_sym_DOLLAR] = ACTIONS(4868), + [sym_raw_string] = ACTIONS(5124), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4872), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4874), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LT_LPAREN] = ACTIONS(4878), + [anon_sym_GT_LPAREN] = ACTIONS(4878), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5124), + }, + [1542] = { + [anon_sym_SEMI] = ACTIONS(5126), + [anon_sym_fi] = ACTIONS(1215), + [anon_sym_elif] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(1215), + [anon_sym_SEMI_SEMI] = ACTIONS(5128), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5128), + [anon_sym_AMP] = ACTIONS(5128), + }, + [1543] = { + [sym_file_redirect] = STATE(2220), + [sym_heredoc_redirect] = STATE(2220), + [sym_herestring_redirect] = STATE(2220), + [aux_sym_redirected_statement_repeat1] = STATE(2220), + [sym__simple_heredoc_body] = ACTIONS(1233), + [sym__heredoc_body_beginning] = ACTIONS(1233), + [sym_file_descriptor] = ACTIONS(3381), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_fi] = ACTIONS(1233), + [anon_sym_elif] = ACTIONS(1233), + [anon_sym_else] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1233), + [anon_sym_PIPE_AMP] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_GT] = ACTIONS(3393), + [anon_sym_GT_GT] = ACTIONS(3395), + [anon_sym_AMP_GT] = ACTIONS(3393), + [anon_sym_AMP_GT_GT] = ACTIONS(3395), + [anon_sym_LT_AMP] = ACTIONS(3395), + [anon_sym_GT_AMP] = ACTIONS(3395), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(3397), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1235), + }, + [1544] = { + [sym_concatenation] = STATE(2221), + [sym_string] = STATE(2223), + [sym_simple_expansion] = STATE(2223), + [sym_string_expansion] = STATE(2223), + [sym_expansion] = STATE(2223), + [sym_command_substitution] = STATE(2223), + [sym_process_substitution] = STATE(2223), + [sym_regex] = ACTIONS(5130), + [sym__special_characters] = ACTIONS(5132), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_DOLLAR] = ACTIONS(1777), + [sym_raw_string] = ACTIONS(5134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1783), + [anon_sym_BQUOTE] = ACTIONS(1785), + [anon_sym_LT_LPAREN] = ACTIONS(1787), + [anon_sym_GT_LPAREN] = ACTIONS(1787), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5134), + }, + [1545] = { + [aux_sym_concatenation_repeat1] = STATE(1519), + [sym__simple_heredoc_body] = ACTIONS(1243), + [sym__heredoc_body_beginning] = ACTIONS(1243), + [sym_file_descriptor] = ACTIONS(1243), + [sym__concat] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_fi] = ACTIONS(1245), + [anon_sym_elif] = ACTIONS(1245), + [anon_sym_else] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1245), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_LT_LT_DASH] = ACTIONS(1243), + [anon_sym_LT_LT_LT] = ACTIONS(1243), + [sym__special_characters] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1245), + [sym_raw_string] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [anon_sym_LT_LPAREN] = ACTIONS(1243), + [anon_sym_GT_LPAREN] = ACTIONS(1243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1245), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1245), + }, + [1546] = { + [aux_sym_concatenation_repeat1] = STATE(1519), + [sym__simple_heredoc_body] = ACTIONS(1247), + [sym__heredoc_body_beginning] = ACTIONS(1247), + [sym_file_descriptor] = ACTIONS(1247), + [sym__concat] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_fi] = ACTIONS(1249), + [anon_sym_elif] = ACTIONS(1249), + [anon_sym_else] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_SEMI_SEMI] = ACTIONS(1247), + [anon_sym_PIPE_AMP] = ACTIONS(1247), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_AMP_GT] = ACTIONS(1249), + [anon_sym_AMP_GT_GT] = ACTIONS(1247), + [anon_sym_LT_AMP] = ACTIONS(1247), + [anon_sym_GT_AMP] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_LT_LT_DASH] = ACTIONS(1247), + [anon_sym_LT_LT_LT] = ACTIONS(1247), + [sym__special_characters] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1247), + [anon_sym_DOLLAR] = ACTIONS(1249), + [sym_raw_string] = ACTIONS(1247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1247), + [anon_sym_BQUOTE] = ACTIONS(1247), + [anon_sym_LT_LPAREN] = ACTIONS(1247), + [anon_sym_GT_LPAREN] = ACTIONS(1247), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1249), + [anon_sym_LF] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1249), + }, + [1547] = { + [sym_concatenation] = STATE(2224), + [sym_string] = STATE(1546), + [sym_simple_expansion] = STATE(1546), + [sym_string_expansion] = STATE(1546), + [sym_expansion] = STATE(1546), + [sym_command_substitution] = STATE(1546), + [sym_process_substitution] = STATE(1546), + [aux_sym_command_repeat2] = STATE(2224), + [sym__simple_heredoc_body] = ACTIONS(1251), + [sym__heredoc_body_beginning] = ACTIONS(1251), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_fi] = ACTIONS(1253), + [anon_sym_elif] = ACTIONS(1253), + [anon_sym_else] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(3399), + [anon_sym_EQ_EQ] = ACTIONS(3399), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_DOLLAR] = ACTIONS(1777), + [sym_raw_string] = ACTIONS(3403), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1783), + [anon_sym_BQUOTE] = ACTIONS(1785), + [anon_sym_LT_LPAREN] = ACTIONS(1787), + [anon_sym_GT_LPAREN] = ACTIONS(1787), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3405), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + }, + [1548] = { + [sym_file_redirect] = STATE(1543), + [sym_heredoc_redirect] = STATE(1543), + [sym_heredoc_body] = STATE(2226), + [sym_herestring_redirect] = STATE(1543), + [aux_sym_redirected_statement_repeat1] = STATE(1543), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(3381), + [anon_sym_SEMI] = ACTIONS(5136), + [anon_sym_fi] = ACTIONS(1215), + [anon_sym_elif] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(3385), + [anon_sym_SEMI_SEMI] = ACTIONS(5138), + [anon_sym_PIPE_AMP] = ACTIONS(3389), + [anon_sym_AMP_AMP] = ACTIONS(3391), + [anon_sym_PIPE_PIPE] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_GT] = ACTIONS(3393), + [anon_sym_GT_GT] = ACTIONS(3395), + [anon_sym_AMP_GT] = ACTIONS(3393), + [anon_sym_AMP_GT_GT] = ACTIONS(3395), + [anon_sym_LT_AMP] = ACTIONS(3395), + [anon_sym_GT_AMP] = ACTIONS(3395), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(3397), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5138), + [anon_sym_AMP] = ACTIONS(5136), + }, + [1549] = { + [sym_file_redirect] = STATE(1543), + [sym_heredoc_redirect] = STATE(1543), + [sym_heredoc_body] = STATE(2226), + [sym_herestring_redirect] = STATE(1543), + [aux_sym_redirected_statement_repeat1] = STATE(1543), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(5136), + [anon_sym_fi] = ACTIONS(4862), + [anon_sym_elif] = ACTIONS(4862), + [anon_sym_else] = ACTIONS(4862), + [anon_sym_PIPE] = ACTIONS(3385), + [anon_sym_SEMI_SEMI] = ACTIONS(5138), + [anon_sym_PIPE_AMP] = ACTIONS(3389), + [anon_sym_AMP_AMP] = ACTIONS(3391), + [anon_sym_PIPE_PIPE] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(3397), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(5138), + [anon_sym_AMP] = ACTIONS(5136), + }, + [1550] = { + [sym_elif_clause] = STATE(1550), + [aux_sym_if_statement_repeat1] = STATE(1550), + [anon_sym_fi] = ACTIONS(5140), + [anon_sym_elif] = ACTIONS(5142), + [anon_sym_else] = ACTIONS(5140), + [sym_comment] = ACTIONS(57), + }, + [1551] = { + [sym_concatenation] = STATE(2227), + [sym_string] = STATE(1546), + [sym_simple_expansion] = STATE(1546), + [sym_string_expansion] = STATE(1546), + [sym_expansion] = STATE(1546), + [sym_command_substitution] = STATE(1546), + [sym_process_substitution] = STATE(1546), + [aux_sym_command_repeat2] = STATE(2227), + [sym__simple_heredoc_body] = ACTIONS(1251), + [sym__heredoc_body_beginning] = ACTIONS(1251), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_fi] = ACTIONS(1253), + [anon_sym_elif] = ACTIONS(1253), + [anon_sym_else] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(3399), + [anon_sym_EQ_EQ] = ACTIONS(3399), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_DOLLAR] = ACTIONS(1777), + [sym_raw_string] = ACTIONS(3403), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1783), + [anon_sym_BQUOTE] = ACTIONS(1785), + [anon_sym_LT_LPAREN] = ACTIONS(1787), + [anon_sym_GT_LPAREN] = ACTIONS(1787), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3405), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + }, + [1552] = { + [sym__simple_heredoc_body] = ACTIONS(5145), + [sym__heredoc_body_beginning] = ACTIONS(5145), + [sym_file_descriptor] = ACTIONS(5145), + [ts_builtin_sym_end] = ACTIONS(5145), + [anon_sym_SEMI] = ACTIONS(5147), + [anon_sym_done] = ACTIONS(5145), + [anon_sym_fi] = ACTIONS(5145), + [anon_sym_elif] = ACTIONS(5145), + [anon_sym_else] = ACTIONS(5145), + [anon_sym_esac] = ACTIONS(5145), + [anon_sym_PIPE] = ACTIONS(5147), + [anon_sym_RPAREN] = ACTIONS(5145), + [anon_sym_SEMI_SEMI] = ACTIONS(5145), + [anon_sym_PIPE_AMP] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5147), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_GT_GT] = ACTIONS(5145), + [anon_sym_AMP_GT] = ACTIONS(5147), + [anon_sym_AMP_GT_GT] = ACTIONS(5145), + [anon_sym_LT_AMP] = ACTIONS(5145), + [anon_sym_GT_AMP] = ACTIONS(5145), + [anon_sym_LT_LT] = ACTIONS(5147), + [anon_sym_LT_LT_DASH] = ACTIONS(5145), + [anon_sym_LT_LT_LT] = ACTIONS(5145), + [anon_sym_BQUOTE] = ACTIONS(5145), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5145), + [anon_sym_AMP] = ACTIONS(5147), + }, + [1553] = { + [aux_sym_case_item_repeat1] = STATE(2230), + [aux_sym_concatenation_repeat1] = STATE(2231), + [sym__concat] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(5149), + [anon_sym_RPAREN] = ACTIONS(5151), + [sym_comment] = ACTIONS(57), + }, + [1554] = { + [aux_sym_case_item_repeat1] = STATE(2233), + [aux_sym_concatenation_repeat1] = STATE(2231), + [sym__concat] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(5149), + [anon_sym_RPAREN] = ACTIONS(5153), + [sym_comment] = ACTIONS(57), + }, + [1555] = { + [anon_sym_esac] = ACTIONS(5155), + [sym_comment] = ACTIONS(57), + }, + [1556] = { + [aux_sym_case_item_repeat1] = STATE(2233), + [anon_sym_PIPE] = ACTIONS(5149), + [anon_sym_RPAREN] = ACTIONS(5153), + [sym_comment] = ACTIONS(57), + }, + [1557] = { + [sym_case_item] = STATE(2236), + [sym_last_case_item] = STATE(2235), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2236), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3413), + }, + [1558] = { + [sym_case_item] = STATE(2237), + [sym_last_case_item] = STATE(2235), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2237), + [anon_sym_esac] = ACTIONS(5157), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3415), + }, + [1559] = { + [sym__concat] = ACTIONS(4001), + [anon_sym_in] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4001), + }, + [1560] = { + [sym__simple_heredoc_body] = ACTIONS(5159), + [sym__heredoc_body_beginning] = ACTIONS(5159), + [sym_file_descriptor] = ACTIONS(5159), + [ts_builtin_sym_end] = ACTIONS(5159), + [anon_sym_SEMI] = ACTIONS(5161), + [anon_sym_done] = ACTIONS(5159), + [anon_sym_fi] = ACTIONS(5159), + [anon_sym_elif] = ACTIONS(5159), + [anon_sym_else] = ACTIONS(5159), + [anon_sym_esac] = ACTIONS(5159), + [anon_sym_PIPE] = ACTIONS(5161), + [anon_sym_RPAREN] = ACTIONS(5159), + [anon_sym_SEMI_SEMI] = ACTIONS(5159), + [anon_sym_PIPE_AMP] = ACTIONS(5159), + [anon_sym_AMP_AMP] = ACTIONS(5159), + [anon_sym_PIPE_PIPE] = ACTIONS(5159), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_GT_GT] = ACTIONS(5159), + [anon_sym_AMP_GT] = ACTIONS(5161), + [anon_sym_AMP_GT_GT] = ACTIONS(5159), + [anon_sym_LT_AMP] = ACTIONS(5159), + [anon_sym_GT_AMP] = ACTIONS(5159), + [anon_sym_LT_LT] = ACTIONS(5161), + [anon_sym_LT_LT_DASH] = ACTIONS(5159), + [anon_sym_LT_LT_LT] = ACTIONS(5159), + [anon_sym_BQUOTE] = ACTIONS(5159), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5159), + [anon_sym_AMP] = ACTIONS(5161), + }, + [1561] = { + [anon_sym_esac] = ACTIONS(5163), + [sym_comment] = ACTIONS(57), + }, + [1562] = { + [sym_case_item] = STATE(2236), + [sym_last_case_item] = STATE(2239), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2236), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3413), + }, + [1563] = { + [sym_case_item] = STATE(2240), + [sym_last_case_item] = STATE(2239), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2240), + [anon_sym_esac] = ACTIONS(5165), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3415), + }, + [1564] = { + [sym__concat] = ACTIONS(4015), + [anon_sym_in] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4015), + }, + [1565] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5167), + [sym_comment] = ACTIONS(57), + }, + [1566] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5169), + [sym_comment] = ACTIONS(57), + }, + [1567] = { + [anon_sym_RBRACE] = ACTIONS(5169), + [sym_comment] = ACTIONS(57), + }, + [1568] = { + [sym_concatenation] = STATE(2245), + [sym_string] = STATE(2244), + [sym_simple_expansion] = STATE(2244), + [sym_string_expansion] = STATE(2244), + [sym_expansion] = STATE(2244), + [sym_command_substitution] = STATE(2244), + [sym_process_substitution] = STATE(2244), + [anon_sym_RBRACE] = ACTIONS(5169), + [sym__special_characters] = ACTIONS(5171), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5173), + }, + [1569] = { + [sym__concat] = ACTIONS(4051), + [anon_sym_in] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4051), + }, + [1570] = { + [sym_concatenation] = STATE(2248), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2248), + [sym_regex] = ACTIONS(5175), + [anon_sym_RBRACE] = ACTIONS(5177), + [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_DASH] = ACTIONS(5179), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5181), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5179), + [anon_sym_COLON_QMARK] = ACTIONS(5179), + [anon_sym_COLON_DASH] = ACTIONS(5179), + [anon_sym_PERCENT] = ACTIONS(5179), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1571] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5177), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1572] = { + [sym_concatenation] = STATE(2250), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2250), + [sym_regex] = ACTIONS(5183), + [anon_sym_RBRACE] = ACTIONS(5169), + [anon_sym_EQ] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(5185), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5187), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5185), + [anon_sym_COLON_QMARK] = ACTIONS(5185), + [anon_sym_COLON_DASH] = ACTIONS(5185), + [anon_sym_PERCENT] = ACTIONS(5185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1573] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5169), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1574] = { + [sym_concatenation] = STATE(2252), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2252), + [anon_sym_RBRACE] = ACTIONS(5189), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_DASH] = ACTIONS(5191), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5193), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5191), + [anon_sym_COLON_QMARK] = ACTIONS(5191), + [anon_sym_COLON_DASH] = ACTIONS(5191), + [anon_sym_PERCENT] = ACTIONS(5191), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1575] = { + [sym__concat] = ACTIONS(4107), + [anon_sym_in] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4107), + }, + [1576] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5189), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1577] = { + [sym_concatenation] = STATE(2250), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2250), + [anon_sym_RBRACE] = ACTIONS(5169), + [anon_sym_EQ] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(5185), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5187), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5185), + [anon_sym_COLON_QMARK] = ACTIONS(5185), + [anon_sym_COLON_DASH] = ACTIONS(5185), + [anon_sym_PERCENT] = ACTIONS(5185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1578] = { + [sym__simple_heredoc_body] = ACTIONS(5195), + [sym__heredoc_body_beginning] = ACTIONS(5195), + [sym_file_descriptor] = ACTIONS(5195), + [ts_builtin_sym_end] = ACTIONS(5195), + [anon_sym_SEMI] = ACTIONS(5197), + [anon_sym_done] = ACTIONS(5195), + [anon_sym_fi] = ACTIONS(5195), + [anon_sym_elif] = ACTIONS(5195), + [anon_sym_else] = ACTIONS(5195), + [anon_sym_esac] = ACTIONS(5195), + [anon_sym_PIPE] = ACTIONS(5197), + [anon_sym_RPAREN] = ACTIONS(5195), + [anon_sym_SEMI_SEMI] = ACTIONS(5195), + [anon_sym_PIPE_AMP] = ACTIONS(5195), + [anon_sym_AMP_AMP] = ACTIONS(5195), + [anon_sym_PIPE_PIPE] = ACTIONS(5195), + [anon_sym_LT] = ACTIONS(5197), + [anon_sym_GT] = ACTIONS(5197), + [anon_sym_GT_GT] = ACTIONS(5195), + [anon_sym_AMP_GT] = ACTIONS(5197), + [anon_sym_AMP_GT_GT] = ACTIONS(5195), + [anon_sym_LT_AMP] = ACTIONS(5195), + [anon_sym_GT_AMP] = ACTIONS(5195), + [anon_sym_LT_LT] = ACTIONS(5197), + [anon_sym_LT_LT_DASH] = ACTIONS(5195), + [anon_sym_LT_LT_LT] = ACTIONS(5195), + [anon_sym_BQUOTE] = ACTIONS(5195), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5195), + [anon_sym_AMP] = ACTIONS(5197), + }, + [1579] = { + [aux_sym_concatenation_repeat1] = STATE(2253), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(1395), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_RPAREN] = ACTIONS(1043), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [1580] = { + [aux_sym_concatenation_repeat1] = STATE(922), + [sym__simple_heredoc_body] = ACTIONS(1393), + [sym__heredoc_body_beginning] = ACTIONS(1393), + [sym_file_descriptor] = ACTIONS(1393), + [sym__concat] = ACTIONS(935), + [sym_variable_name] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_RPAREN] = ACTIONS(1393), + [anon_sym_SEMI_SEMI] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_AMP_GT] = ACTIONS(1397), + [anon_sym_AMP_GT_GT] = ACTIONS(1393), + [anon_sym_LT_AMP] = ACTIONS(1393), + [anon_sym_GT_AMP] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_LT_LT_DASH] = ACTIONS(1393), + [anon_sym_LT_LT_LT] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1397), + [sym_raw_string] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1393), + [anon_sym_GT_LPAREN] = ACTIONS(1393), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1397), + [sym_word] = ACTIONS(1397), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1397), + }, + [1581] = { + [aux_sym_concatenation_repeat1] = STATE(922), + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym__concat] = ACTIONS(935), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1373), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [1582] = { + [aux_sym_concatenation_repeat1] = STATE(1582), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(3854), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1583] = { + [aux_sym_concatenation_repeat1] = STATE(1583), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(3891), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1584] = { + [aux_sym_concatenation_repeat1] = STATE(1586), + [sym__simple_heredoc_body] = ACTIONS(1353), + [sym__heredoc_body_beginning] = ACTIONS(1353), + [sym_file_descriptor] = ACTIONS(1353), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_RPAREN] = ACTIONS(1353), + [anon_sym_SEMI_SEMI] = ACTIONS(1353), + [anon_sym_PIPE_AMP] = ACTIONS(1353), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_GT] = ACTIONS(1355), + [anon_sym_GT_GT] = ACTIONS(1353), + [anon_sym_AMP_GT] = ACTIONS(1355), + [anon_sym_AMP_GT_GT] = ACTIONS(1353), + [anon_sym_LT_AMP] = ACTIONS(1353), + [anon_sym_GT_AMP] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(1355), + [anon_sym_LT_LT_DASH] = ACTIONS(1353), + [anon_sym_LT_LT_LT] = ACTIONS(1353), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1355), + }, + [1585] = { + [aux_sym_concatenation_repeat1] = STATE(1586), + [sym__simple_heredoc_body] = ACTIONS(1357), + [sym__heredoc_body_beginning] = ACTIONS(1357), + [sym_file_descriptor] = ACTIONS(1357), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_RPAREN] = ACTIONS(1357), + [anon_sym_SEMI_SEMI] = ACTIONS(1357), + [anon_sym_PIPE_AMP] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1357), + [anon_sym_AMP_GT] = ACTIONS(1359), + [anon_sym_AMP_GT_GT] = ACTIONS(1357), + [anon_sym_LT_AMP] = ACTIONS(1357), + [anon_sym_GT_AMP] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_LT_LT_DASH] = ACTIONS(1357), + [anon_sym_LT_LT_LT] = ACTIONS(1357), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), + }, + [1586] = { + [aux_sym_concatenation_repeat1] = STATE(2254), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_RPAREN] = ACTIONS(1043), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [1587] = { + [sym__simple_heredoc_body] = ACTIONS(2646), + [sym__heredoc_body_beginning] = ACTIONS(2646), + [sym_file_descriptor] = ACTIONS(2646), + [sym_variable_name] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_SEMI_SEMI] = ACTIONS(2646), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_PIPE_AMP] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_PIPE_PIPE] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_GT] = ACTIONS(2648), + [anon_sym_GT_GT] = ACTIONS(2646), + [anon_sym_AMP_GT] = ACTIONS(2648), + [anon_sym_AMP_GT_GT] = ACTIONS(2646), + [anon_sym_LT_AMP] = ACTIONS(2646), + [anon_sym_GT_AMP] = ACTIONS(2646), + [anon_sym_LT_LT] = ACTIONS(2648), + [anon_sym_LT_LT_DASH] = ACTIONS(2646), + [anon_sym_LT_LT_LT] = ACTIONS(2646), + [sym__special_characters] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2648), + [sym_raw_string] = ACTIONS(2646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2646), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2646), + [anon_sym_BQUOTE] = ACTIONS(2646), + [anon_sym_LT_LPAREN] = ACTIONS(2646), + [anon_sym_GT_LPAREN] = ACTIONS(2646), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2648), + [anon_sym_LF] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2648), + }, + [1588] = { + [sym_concatenation] = STATE(1243), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1243), + [anon_sym_RPAREN] = ACTIONS(5199), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [1589] = { + [sym_string] = STATE(2256), + [sym_simple_expansion] = STATE(2256), + [sym_string_expansion] = STATE(2256), + [sym_expansion] = STATE(2256), + [sym_command_substitution] = STATE(2256), + [sym_process_substitution] = STATE(2256), + [sym__special_characters] = ACTIONS(5201), + [anon_sym_DQUOTE] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1883), + [sym_raw_string] = ACTIONS(5201), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1887), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1889), + [anon_sym_BQUOTE] = ACTIONS(1891), + [anon_sym_LT_LPAREN] = ACTIONS(1893), + [anon_sym_GT_LPAREN] = ACTIONS(1893), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5201), + }, + [1590] = { + [aux_sym_concatenation_repeat1] = STATE(2257), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(3525), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [1591] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [sym_variable_name] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [1592] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1593] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [1594] = { + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [sym_variable_name] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_RBRACE] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [1595] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1085), + [sym_variable_name] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_RBRACE] = 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(1087), + [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), + }, + [1596] = { + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [sym_variable_name] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + }, + [1597] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(5207), + [sym_comment] = ACTIONS(57), + }, + [1598] = { + [sym_subscript] = STATE(2263), + [sym_variable_name] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5211), + [anon_sym_DOLLAR] = ACTIONS(5211), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5215), + [anon_sym_AT] = ACTIONS(5215), + [anon_sym_QMARK] = ACTIONS(5215), + [anon_sym_0] = ACTIONS(5213), + [anon_sym__] = ACTIONS(5213), + }, + [1599] = { + [sym_concatenation] = STATE(2266), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2266), + [anon_sym_RBRACE] = ACTIONS(5217), + [anon_sym_EQ] = ACTIONS(5219), + [anon_sym_DASH] = ACTIONS(5219), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5221), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5219), + [anon_sym_COLON_QMARK] = ACTIONS(5219), + [anon_sym_COLON_DASH] = ACTIONS(5219), + [anon_sym_PERCENT] = ACTIONS(5219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1600] = { + [sym_concatenation] = STATE(2269), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2269), + [anon_sym_RBRACE] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5229), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_COLON_QMARK] = ACTIONS(5227), + [anon_sym_COLON_DASH] = ACTIONS(5227), + [anon_sym_PERCENT] = ACTIONS(5227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1601] = { + [anon_sym_RPAREN] = ACTIONS(5233), + [sym_comment] = ACTIONS(57), + }, + [1602] = { + [anon_sym_BQUOTE] = ACTIONS(5233), + [sym_comment] = ACTIONS(57), + }, + [1603] = { + [anon_sym_RPAREN] = ACTIONS(5235), + [sym_comment] = ACTIONS(57), + }, + [1604] = { + [sym__expression] = STATE(2273), + [sym_binary_expression] = STATE(2273), + [sym_unary_expression] = STATE(2273), + [sym_postfix_expression] = STATE(2273), + [sym_parenthesized_expression] = STATE(2273), + [sym_concatenation] = STATE(2273), + [sym_string] = STATE(46), + [sym_simple_expansion] = STATE(46), + [sym_string_expansion] = STATE(46), + [sym_expansion] = STATE(46), + [sym_command_substitution] = STATE(46), + [sym_process_substitution] = STATE(46), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5237), + [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), + }, + [1605] = { + [anon_sym_SEMI] = ACTIONS(5239), + [anon_sym_SEMI_SEMI] = ACTIONS(5241), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_PLUS_EQ] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1453), + [anon_sym_LF] = ACTIONS(5241), + [anon_sym_AMP] = ACTIONS(5239), + }, + [1606] = { + [sym__expression] = STATE(2275), + [sym_binary_expression] = STATE(2275), + [sym_unary_expression] = STATE(2275), + [sym_postfix_expression] = STATE(2275), + [sym_parenthesized_expression] = STATE(2275), + [sym_concatenation] = STATE(2275), + [sym_string] = STATE(261), + [sym_simple_expansion] = STATE(261), + [sym_string_expansion] = STATE(261), + [sym_expansion] = STATE(261), + [sym_command_substitution] = STATE(261), + [sym_process_substitution] = STATE(261), + [anon_sym_SEMI] = ACTIONS(5239), + [anon_sym_SEMI_SEMI] = ACTIONS(5241), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(467), + [sym__special_characters] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(473), + [sym_raw_string] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_LT_LPAREN] = ACTIONS(483), + [anon_sym_GT_LPAREN] = ACTIONS(483), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(485), + [sym_test_operator] = ACTIONS(487), + [anon_sym_LF] = ACTIONS(5241), + [anon_sym_AMP] = ACTIONS(5241), + }, + [1607] = { + [sym_concatenation] = STATE(1299), + [sym_string] = STATE(710), + [sym_simple_expansion] = STATE(710), + [sym_string_expansion] = STATE(710), + [sym_expansion] = STATE(710), + [sym_command_substitution] = STATE(710), + [sym_process_substitution] = STATE(710), + [aux_sym_for_statement_repeat1] = STATE(1299), + [anon_sym_SEMI] = ACTIONS(5243), + [anon_sym_SEMI_SEMI] = ACTIONS(5245), + [sym__special_characters] = ACTIONS(1461), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_DOLLAR] = ACTIONS(1465), + [sym_raw_string] = ACTIONS(1467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1469), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1473), + [anon_sym_LT_LPAREN] = ACTIONS(1475), + [anon_sym_GT_LPAREN] = ACTIONS(1475), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2796), + [anon_sym_LF] = ACTIONS(5245), + [anon_sym_AMP] = ACTIONS(5245), + }, + [1608] = { + [sym__simple_heredoc_body] = ACTIONS(2798), + [sym__heredoc_body_beginning] = ACTIONS(2798), + [sym_file_descriptor] = ACTIONS(2798), + [anon_sym_SEMI] = ACTIONS(2800), + [anon_sym_PIPE] = ACTIONS(2800), + [anon_sym_SEMI_SEMI] = ACTIONS(2798), + [anon_sym_RBRACE] = ACTIONS(2798), + [anon_sym_PIPE_AMP] = ACTIONS(2798), + [anon_sym_AMP_AMP] = ACTIONS(2798), + [anon_sym_PIPE_PIPE] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2800), + [anon_sym_GT] = ACTIONS(2800), + [anon_sym_GT_GT] = ACTIONS(2798), + [anon_sym_AMP_GT] = ACTIONS(2800), + [anon_sym_AMP_GT_GT] = ACTIONS(2798), + [anon_sym_LT_AMP] = ACTIONS(2798), + [anon_sym_GT_AMP] = ACTIONS(2798), + [anon_sym_LT_LT] = ACTIONS(2800), + [anon_sym_LT_LT_DASH] = ACTIONS(2798), + [anon_sym_LT_LT_LT] = ACTIONS(2798), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2800), + }, + [1609] = { + [sym__simple_heredoc_body] = ACTIONS(3121), + [sym__heredoc_body_beginning] = ACTIONS(3121), + [sym_file_descriptor] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_PIPE] = ACTIONS(3123), + [anon_sym_SEMI_SEMI] = ACTIONS(3121), + [anon_sym_RBRACE] = 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), + }, + [1610] = { + [anon_sym_done] = ACTIONS(5247), + [sym_comment] = ACTIONS(57), + }, + [1611] = { + [sym__simple_heredoc_body] = ACTIONS(3277), + [sym__heredoc_body_beginning] = ACTIONS(3277), + [sym_file_descriptor] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_PIPE] = ACTIONS(3279), + [anon_sym_SEMI_SEMI] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_PIPE_AMP] = ACTIONS(3277), + [anon_sym_AMP_AMP] = ACTIONS(3277), + [anon_sym_PIPE_PIPE] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3279), + [anon_sym_GT_GT] = ACTIONS(3277), + [anon_sym_AMP_GT] = ACTIONS(3279), + [anon_sym_AMP_GT_GT] = ACTIONS(3277), + [anon_sym_LT_AMP] = ACTIONS(3277), + [anon_sym_GT_AMP] = ACTIONS(3277), + [anon_sym_LT_LT] = ACTIONS(3279), + [anon_sym_LT_LT_DASH] = ACTIONS(3277), + [anon_sym_LT_LT_LT] = ACTIONS(3277), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3277), + [anon_sym_AMP] = ACTIONS(3279), + }, + [1612] = { + [sym_elif_clause] = STATE(2280), + [sym_else_clause] = STATE(2279), + [aux_sym_if_statement_repeat1] = STATE(2280), + [anon_sym_fi] = ACTIONS(5249), + [anon_sym_elif] = ACTIONS(3377), + [anon_sym_else] = ACTIONS(3379), + [sym_comment] = ACTIONS(57), + }, + [1613] = { + [anon_sym_fi] = ACTIONS(5249), + [sym_comment] = ACTIONS(57), + }, + [1614] = { + [sym_elif_clause] = STATE(1550), + [sym_else_clause] = STATE(2279), + [aux_sym_if_statement_repeat1] = STATE(1550), + [anon_sym_fi] = ACTIONS(5249), + [anon_sym_elif] = ACTIONS(3377), + [anon_sym_else] = ACTIONS(3379), + [sym_comment] = ACTIONS(57), + }, + [1615] = { + [sym_case_item] = STATE(2283), + [sym_last_case_item] = STATE(2282), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2283), + [anon_sym_esac] = ACTIONS(5251), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3415), + }, + [1616] = { + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym_SEMI_SEMI] = ACTIONS(5255), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5255), + [anon_sym_AMP] = ACTIONS(5255), + }, + [1617] = { + [sym_case_item] = STATE(2287), + [sym_last_case_item] = STATE(2286), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2287), + [anon_sym_esac] = ACTIONS(5257), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3415), + }, + [1618] = { + [anon_sym_SEMI] = ACTIONS(5259), + [anon_sym_SEMI_SEMI] = ACTIONS(5261), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5261), + [anon_sym_AMP] = ACTIONS(5261), + }, + [1619] = { + [sym_compound_statement] = STATE(2289), + [anon_sym_LBRACE] = ACTIONS(191), + [sym_comment] = ACTIONS(57), + }, + [1620] = { + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_RBRACE] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1373), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [1621] = { + [sym_concatenation] = STATE(2291), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(2291), + [anon_sym_RPAREN] = ACTIONS(5263), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [1622] = { + [aux_sym_concatenation_repeat1] = STATE(969), + [sym__simple_heredoc_body] = ACTIONS(1393), + [sym__heredoc_body_beginning] = ACTIONS(1393), + [sym_file_descriptor] = ACTIONS(1393), + [sym__concat] = ACTIONS(1931), + [sym_variable_name] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_SEMI_SEMI] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_AMP_GT] = ACTIONS(1397), + [anon_sym_AMP_GT_GT] = ACTIONS(1393), + [anon_sym_LT_AMP] = ACTIONS(1393), + [anon_sym_GT_AMP] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_LT_LT_DASH] = ACTIONS(1393), + [anon_sym_LT_LT_LT] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1397), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1397), + [sym_raw_string] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1393), + [anon_sym_GT_LPAREN] = ACTIONS(1393), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1397), + [sym_word] = ACTIONS(1397), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1397), + }, + [1623] = { + [aux_sym_concatenation_repeat1] = STATE(969), + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym__concat] = ACTIONS(1931), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_RBRACE] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1373), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [1624] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1625] = { + [aux_sym_concatenation_repeat1] = STATE(1625), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(5265), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1626] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [sym_variable_name] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2301), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [1627] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1628] = { + [sym_concatenation] = STATE(2296), + [sym_string] = STATE(2295), + [sym_simple_expansion] = STATE(2295), + [sym_string_expansion] = STATE(2295), + [sym_expansion] = STATE(2295), + [sym_command_substitution] = STATE(2295), + [sym_process_substitution] = STATE(2295), + [anon_sym_RBRACE] = ACTIONS(5270), + [sym__special_characters] = ACTIONS(5272), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5274), + }, + [1629] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(5276), + [sym_comment] = ACTIONS(57), + }, + [1630] = { + [sym_concatenation] = STATE(2300), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2300), + [anon_sym_RBRACE] = ACTIONS(5278), + [anon_sym_EQ] = ACTIONS(5280), + [anon_sym_DASH] = ACTIONS(5280), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5284), + [anon_sym_COLON] = ACTIONS(5280), + [anon_sym_COLON_QMARK] = ACTIONS(5280), + [anon_sym_COLON_DASH] = ACTIONS(5280), + [anon_sym_PERCENT] = ACTIONS(5280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1631] = { + [sym_concatenation] = STATE(2302), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2302), + [anon_sym_RBRACE] = ACTIONS(5270), + [anon_sym_EQ] = ACTIONS(5286), + [anon_sym_DASH] = ACTIONS(5286), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5290), + [anon_sym_COLON] = ACTIONS(5286), + [anon_sym_COLON_QMARK] = ACTIONS(5286), + [anon_sym_COLON_DASH] = ACTIONS(5286), + [anon_sym_PERCENT] = ACTIONS(5286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1632] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [sym_variable_name] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_RBRACE] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2394), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2394), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [1633] = { + [sym_concatenation] = STATE(2305), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2305), + [sym_regex] = ACTIONS(5292), + [anon_sym_RBRACE] = ACTIONS(5294), + [anon_sym_EQ] = ACTIONS(5296), + [anon_sym_DASH] = ACTIONS(5296), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5298), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_COLON_QMARK] = ACTIONS(5296), + [anon_sym_COLON_DASH] = ACTIONS(5296), + [anon_sym_PERCENT] = ACTIONS(5296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1634] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5294), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1635] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [sym_variable_name] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2442), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [1636] = { + [sym_concatenation] = STATE(2302), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2302), + [sym_regex] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5270), + [anon_sym_EQ] = ACTIONS(5286), + [anon_sym_DASH] = ACTIONS(5286), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5286), + [anon_sym_COLON_QMARK] = ACTIONS(5286), + [anon_sym_COLON_DASH] = ACTIONS(5286), + [anon_sym_PERCENT] = ACTIONS(5286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1637] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5270), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1638] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [sym_variable_name] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [anon_sym_SEMI_SEMI] = ACTIONS(2446), + [anon_sym_RBRACE] = 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), + [sym__special_characters] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2448), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [1639] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [sym_variable_name] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2486), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [1640] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1641] = { + [aux_sym_concatenation_repeat1] = STATE(1641), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(5302), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1642] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2301), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [1643] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(5305), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1644] = { + [sym_concatenation] = STATE(2311), + [sym_string] = STATE(2310), + [sym_simple_expansion] = STATE(2310), + [sym_string_expansion] = STATE(2310), + [sym_expansion] = STATE(2310), + [sym_command_substitution] = STATE(2310), + [sym_process_substitution] = STATE(2310), + [anon_sym_RBRACE] = ACTIONS(5307), + [sym__special_characters] = ACTIONS(5309), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5311), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5311), + }, + [1645] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(5313), + [sym_comment] = ACTIONS(57), + }, + [1646] = { + [sym_concatenation] = STATE(2315), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2315), + [anon_sym_RBRACE] = ACTIONS(5315), + [anon_sym_EQ] = ACTIONS(5317), + [anon_sym_DASH] = ACTIONS(5317), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5319), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5321), + [anon_sym_COLON] = ACTIONS(5317), + [anon_sym_COLON_QMARK] = ACTIONS(5317), + [anon_sym_COLON_DASH] = ACTIONS(5317), + [anon_sym_PERCENT] = ACTIONS(5317), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1647] = { + [sym_concatenation] = STATE(2317), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2317), + [anon_sym_RBRACE] = ACTIONS(5307), + [anon_sym_EQ] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5327), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_COLON_QMARK] = ACTIONS(5323), + [anon_sym_COLON_DASH] = ACTIONS(5323), + [anon_sym_PERCENT] = ACTIONS(5323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1648] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_RBRACE] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2394), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2394), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [1649] = { + [sym_concatenation] = STATE(2320), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2320), + [sym_regex] = ACTIONS(5329), + [anon_sym_RBRACE] = ACTIONS(5331), + [anon_sym_EQ] = ACTIONS(5333), + [anon_sym_DASH] = ACTIONS(5333), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5333), + [anon_sym_COLON_QMARK] = ACTIONS(5333), + [anon_sym_COLON_DASH] = ACTIONS(5333), + [anon_sym_PERCENT] = ACTIONS(5333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1650] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5331), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1651] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2442), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [1652] = { + [sym_concatenation] = STATE(2317), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2317), + [sym_regex] = ACTIONS(5337), + [anon_sym_RBRACE] = ACTIONS(5307), + [anon_sym_EQ] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_COLON_QMARK] = ACTIONS(5323), + [anon_sym_COLON_DASH] = ACTIONS(5323), + [anon_sym_PERCENT] = ACTIONS(5323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1653] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5307), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1654] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [anon_sym_SEMI_SEMI] = ACTIONS(2446), + [anon_sym_RBRACE] = 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), + [sym__special_characters] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2448), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [1655] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2486), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [1656] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_RBRACE] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_EQ_TILDE] = ACTIONS(4003), + [anon_sym_EQ_EQ] = ACTIONS(4003), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [1657] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_EQ_TILDE] = ACTIONS(4017), + [anon_sym_EQ_EQ] = ACTIONS(4017), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4017), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [1658] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5339), + [sym_comment] = ACTIONS(57), + }, + [1659] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5341), + [sym_comment] = ACTIONS(57), + }, + [1660] = { + [anon_sym_RBRACE] = ACTIONS(5341), + [sym_comment] = ACTIONS(57), + }, + [1661] = { + [sym_concatenation] = STATE(2326), + [sym_string] = STATE(2325), + [sym_simple_expansion] = STATE(2325), + [sym_string_expansion] = STATE(2325), + [sym_expansion] = STATE(2325), + [sym_command_substitution] = STATE(2325), + [sym_process_substitution] = STATE(2325), + [anon_sym_RBRACE] = ACTIONS(5341), + [sym__special_characters] = ACTIONS(5343), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5345), + }, + [1662] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_RBRACE] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_EQ_TILDE] = ACTIONS(4053), + [anon_sym_EQ_EQ] = ACTIONS(4053), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4053), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [1663] = { + [sym_concatenation] = STATE(2329), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2329), + [sym_regex] = ACTIONS(5347), + [anon_sym_RBRACE] = ACTIONS(5349), + [anon_sym_EQ] = ACTIONS(5351), + [anon_sym_DASH] = ACTIONS(5351), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5351), + [anon_sym_COLON_QMARK] = ACTIONS(5351), + [anon_sym_COLON_DASH] = ACTIONS(5351), + [anon_sym_PERCENT] = ACTIONS(5351), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1664] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5349), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1665] = { + [sym_concatenation] = STATE(2331), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2331), + [sym_regex] = ACTIONS(5355), + [anon_sym_RBRACE] = ACTIONS(5341), + [anon_sym_EQ] = ACTIONS(5357), + [anon_sym_DASH] = ACTIONS(5357), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5357), + [anon_sym_COLON_QMARK] = ACTIONS(5357), + [anon_sym_COLON_DASH] = ACTIONS(5357), + [anon_sym_PERCENT] = ACTIONS(5357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1666] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5341), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1667] = { + [sym_concatenation] = STATE(2333), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2333), + [anon_sym_RBRACE] = ACTIONS(5361), + [anon_sym_EQ] = ACTIONS(5363), + [anon_sym_DASH] = ACTIONS(5363), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5365), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5363), + [anon_sym_COLON_QMARK] = ACTIONS(5363), + [anon_sym_COLON_DASH] = ACTIONS(5363), + [anon_sym_PERCENT] = ACTIONS(5363), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1668] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_RBRACE] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_EQ_TILDE] = ACTIONS(4109), + [anon_sym_EQ_EQ] = ACTIONS(4109), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [1669] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5361), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1670] = { + [sym_concatenation] = STATE(2331), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2331), + [anon_sym_RBRACE] = ACTIONS(5341), + [anon_sym_EQ] = ACTIONS(5357), + [anon_sym_DASH] = ACTIONS(5357), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5357), + [anon_sym_COLON_QMARK] = ACTIONS(5357), + [anon_sym_COLON_DASH] = ACTIONS(5357), + [anon_sym_PERCENT] = ACTIONS(5357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1671] = { + [sym__simple_heredoc_body] = ACTIONS(4213), + [sym__heredoc_body_beginning] = ACTIONS(4213), + [sym_file_descriptor] = ACTIONS(4213), + [anon_sym_SEMI] = ACTIONS(4215), + [anon_sym_PIPE] = ACTIONS(4215), + [anon_sym_SEMI_SEMI] = ACTIONS(4213), + [anon_sym_RBRACE] = ACTIONS(4213), + [anon_sym_PIPE_AMP] = ACTIONS(4213), + [anon_sym_AMP_AMP] = ACTIONS(4213), + [anon_sym_PIPE_PIPE] = ACTIONS(4213), + [anon_sym_LT] = ACTIONS(4215), + [anon_sym_GT] = ACTIONS(4215), + [anon_sym_GT_GT] = ACTIONS(4213), + [anon_sym_AMP_GT] = ACTIONS(4215), + [anon_sym_AMP_GT_GT] = ACTIONS(4213), + [anon_sym_LT_AMP] = ACTIONS(4213), + [anon_sym_GT_AMP] = ACTIONS(4213), + [anon_sym_LT_LT] = ACTIONS(4215), + [anon_sym_LT_LT_DASH] = ACTIONS(4213), + [anon_sym_LT_LT_LT] = ACTIONS(4213), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4213), + [anon_sym_AMP] = ACTIONS(4215), + }, + [1672] = { + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_SEMI_SEMI] = ACTIONS(4245), + [anon_sym_RBRACE] = ACTIONS(4245), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4245), + }, + [1673] = { + [aux_sym_concatenation_repeat1] = STATE(1676), + [sym__simple_heredoc_body] = ACTIONS(1353), + [sym__heredoc_body_beginning] = ACTIONS(1353), + [sym_file_descriptor] = ACTIONS(1353), + [sym__concat] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_SEMI_SEMI] = ACTIONS(1353), + [anon_sym_RBRACE] = ACTIONS(1353), + [anon_sym_PIPE_AMP] = ACTIONS(1353), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_GT] = ACTIONS(1355), + [anon_sym_GT_GT] = ACTIONS(1353), + [anon_sym_AMP_GT] = ACTIONS(1355), + [anon_sym_AMP_GT_GT] = ACTIONS(1353), + [anon_sym_LT_AMP] = ACTIONS(1353), + [anon_sym_GT_AMP] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(1355), + [anon_sym_LT_LT_DASH] = ACTIONS(1353), + [anon_sym_LT_LT_LT] = ACTIONS(1353), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1355), + }, + [1674] = { + [aux_sym_concatenation_repeat1] = STATE(1676), + [sym__simple_heredoc_body] = ACTIONS(1357), + [sym__heredoc_body_beginning] = ACTIONS(1357), + [sym_file_descriptor] = ACTIONS(1357), + [sym__concat] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_SEMI_SEMI] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1357), + [anon_sym_PIPE_AMP] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1357), + [anon_sym_AMP_GT] = ACTIONS(1359), + [anon_sym_AMP_GT_GT] = ACTIONS(1357), + [anon_sym_LT_AMP] = ACTIONS(1357), + [anon_sym_GT_AMP] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_LT_LT_DASH] = ACTIONS(1357), + [anon_sym_LT_LT_LT] = ACTIONS(1357), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), + }, + [1675] = { + [sym__simple_heredoc_body] = ACTIONS(1357), + [sym__heredoc_body_beginning] = ACTIONS(1357), + [sym_file_descriptor] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_SEMI_SEMI] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1357), + [anon_sym_PIPE_AMP] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1357), + [anon_sym_AMP_GT] = ACTIONS(1359), + [anon_sym_AMP_GT_GT] = ACTIONS(1357), + [anon_sym_LT_AMP] = ACTIONS(1357), + [anon_sym_GT_AMP] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_LT_LT_DASH] = ACTIONS(1357), + [anon_sym_LT_LT_LT] = ACTIONS(1357), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), + }, + [1676] = { + [aux_sym_concatenation_repeat1] = STATE(2334), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [1677] = { + [sym_file_descriptor] = ACTIONS(2536), + [sym_variable_name] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_LPAREN_LPAREN] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_RBRACE] = ACTIONS(4266), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2540), + [anon_sym_typeset] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_readonly] = ACTIONS(2540), + [anon_sym_local] = ACTIONS(2540), + [anon_sym_unset] = ACTIONS(2540), + [anon_sym_unsetenv] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_GT] = ACTIONS(2540), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_AMP_GT] = ACTIONS(2540), + [anon_sym_AMP_GT_GT] = ACTIONS(2536), + [anon_sym_LT_AMP] = ACTIONS(2536), + [anon_sym_GT_AMP] = ACTIONS(2536), + [sym__special_characters] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2536), + [anon_sym_DOLLAR] = ACTIONS(2540), + [sym_raw_string] = ACTIONS(2536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2536), + [anon_sym_BQUOTE] = ACTIONS(2536), + [anon_sym_LT_LPAREN] = ACTIONS(2536), + [anon_sym_GT_LPAREN] = ACTIONS(2536), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2540), + }, + [1678] = { + [sym_file_descriptor] = ACTIONS(2646), + [sym_variable_name] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_GT] = ACTIONS(2648), + [anon_sym_GT_GT] = ACTIONS(2646), + [anon_sym_AMP_GT] = ACTIONS(2648), + [anon_sym_AMP_GT_GT] = ACTIONS(2646), + [anon_sym_LT_AMP] = ACTIONS(2646), + [anon_sym_GT_AMP] = ACTIONS(2646), + [sym__special_characters] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2648), + [sym_raw_string] = ACTIONS(2646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2646), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2646), + [anon_sym_BQUOTE] = ACTIONS(2646), + [anon_sym_LT_LPAREN] = ACTIONS(2646), + [anon_sym_GT_LPAREN] = ACTIONS(2646), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2646), + }, + [1679] = { + [sym_concatenation] = STATE(1243), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1243), + [anon_sym_RPAREN] = ACTIONS(5367), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [1680] = { + [sym__concat] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_RBRACK] = ACTIONS(4001), + [anon_sym_EQ_TILDE] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_EQ] = ACTIONS(4003), + [anon_sym_PLUS_EQ] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_DASH_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4001), + }, + [1681] = { + [sym__concat] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_RBRACK] = ACTIONS(4015), + [anon_sym_EQ_TILDE] = ACTIONS(4015), + [anon_sym_EQ_EQ] = ACTIONS(4015), + [anon_sym_EQ] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_BANG_EQ] = ACTIONS(4015), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [anon_sym_DASH_EQ] = ACTIONS(4015), + [anon_sym_LT_EQ] = ACTIONS(4015), + [anon_sym_GT_EQ] = ACTIONS(4015), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4015), + }, + [1682] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5369), + [sym_comment] = ACTIONS(57), + }, + [1683] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5371), + [sym_comment] = ACTIONS(57), + }, + [1684] = { + [anon_sym_RBRACE] = ACTIONS(5371), + [sym_comment] = ACTIONS(57), + }, + [1685] = { + [sym_concatenation] = STATE(2340), + [sym_string] = STATE(2339), + [sym_simple_expansion] = STATE(2339), + [sym_string_expansion] = STATE(2339), + [sym_expansion] = STATE(2339), + [sym_command_substitution] = STATE(2339), + [sym_process_substitution] = STATE(2339), + [anon_sym_RBRACE] = ACTIONS(5371), + [sym__special_characters] = ACTIONS(5373), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5375), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5375), + }, + [1686] = { + [sym__concat] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_RBRACK] = ACTIONS(4051), + [anon_sym_EQ_TILDE] = ACTIONS(4051), + [anon_sym_EQ_EQ] = ACTIONS(4051), + [anon_sym_EQ] = ACTIONS(4053), + [anon_sym_PLUS_EQ] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_BANG_EQ] = ACTIONS(4051), + [anon_sym_PLUS] = ACTIONS(4053), + [anon_sym_DASH] = ACTIONS(4053), + [anon_sym_DASH_EQ] = ACTIONS(4051), + [anon_sym_LT_EQ] = ACTIONS(4051), + [anon_sym_GT_EQ] = ACTIONS(4051), + [anon_sym_PLUS_PLUS] = ACTIONS(4051), + [anon_sym_DASH_DASH] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4051), + }, + [1687] = { + [sym_concatenation] = STATE(2343), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2343), + [sym_regex] = ACTIONS(5377), + [anon_sym_RBRACE] = ACTIONS(5379), + [anon_sym_EQ] = ACTIONS(5381), + [anon_sym_DASH] = ACTIONS(5381), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5381), + [anon_sym_COLON_QMARK] = ACTIONS(5381), + [anon_sym_COLON_DASH] = ACTIONS(5381), + [anon_sym_PERCENT] = ACTIONS(5381), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1688] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5379), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1689] = { + [sym_concatenation] = STATE(2345), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2345), + [sym_regex] = ACTIONS(5385), + [anon_sym_RBRACE] = ACTIONS(5371), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_DASH] = ACTIONS(5387), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5389), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5387), + [anon_sym_COLON_QMARK] = ACTIONS(5387), + [anon_sym_COLON_DASH] = ACTIONS(5387), + [anon_sym_PERCENT] = ACTIONS(5387), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1690] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5371), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1691] = { + [sym_concatenation] = STATE(2347), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2347), + [anon_sym_RBRACE] = ACTIONS(5391), + [anon_sym_EQ] = ACTIONS(5393), + [anon_sym_DASH] = ACTIONS(5393), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5395), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5393), + [anon_sym_COLON_QMARK] = ACTIONS(5393), + [anon_sym_COLON_DASH] = ACTIONS(5393), + [anon_sym_PERCENT] = ACTIONS(5393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1692] = { + [sym__concat] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_RBRACK] = ACTIONS(4107), + [anon_sym_EQ_TILDE] = ACTIONS(4107), + [anon_sym_EQ_EQ] = ACTIONS(4107), + [anon_sym_EQ] = ACTIONS(4109), + [anon_sym_PLUS_EQ] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_BANG_EQ] = ACTIONS(4107), + [anon_sym_PLUS] = ACTIONS(4109), + [anon_sym_DASH] = ACTIONS(4109), + [anon_sym_DASH_EQ] = ACTIONS(4107), + [anon_sym_LT_EQ] = ACTIONS(4107), + [anon_sym_GT_EQ] = ACTIONS(4107), + [anon_sym_PLUS_PLUS] = ACTIONS(4107), + [anon_sym_DASH_DASH] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4107), + }, + [1693] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5391), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1694] = { + [sym_concatenation] = STATE(2345), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2345), + [anon_sym_RBRACE] = ACTIONS(5371), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_DASH] = ACTIONS(5387), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5389), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5387), + [anon_sym_COLON_QMARK] = ACTIONS(5387), + [anon_sym_COLON_DASH] = ACTIONS(5387), + [anon_sym_PERCENT] = ACTIONS(5387), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1695] = { + [sym__simple_heredoc_body] = ACTIONS(2646), + [sym__heredoc_body_beginning] = ACTIONS(2646), + [sym_file_descriptor] = ACTIONS(2646), + [sym_variable_name] = ACTIONS(2646), + [ts_builtin_sym_end] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2646), + [anon_sym_SEMI_SEMI] = ACTIONS(2646), + [anon_sym_PIPE_AMP] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_PIPE_PIPE] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_GT] = ACTIONS(2648), + [anon_sym_GT_GT] = ACTIONS(2646), + [anon_sym_AMP_GT] = ACTIONS(2648), + [anon_sym_AMP_GT_GT] = ACTIONS(2646), + [anon_sym_LT_AMP] = ACTIONS(2646), + [anon_sym_GT_AMP] = ACTIONS(2646), + [anon_sym_LT_LT] = ACTIONS(2648), + [anon_sym_LT_LT_DASH] = ACTIONS(2646), + [anon_sym_LT_LT_LT] = ACTIONS(2646), + [sym__special_characters] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2648), + [sym_raw_string] = ACTIONS(2646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2646), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2646), + [anon_sym_BQUOTE] = ACTIONS(2646), + [anon_sym_LT_LPAREN] = ACTIONS(2646), + [anon_sym_GT_LPAREN] = ACTIONS(2646), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2648), + [sym_word] = ACTIONS(2648), + [anon_sym_LF] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2648), + }, + [1696] = { + [sym_concatenation] = STATE(1243), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1243), + [anon_sym_RPAREN] = ACTIONS(5397), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [1697] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [sym_variable_name] = ACTIONS(4001), + [ts_builtin_sym_end] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_RPAREN] = ACTIONS(4001), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4003), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [1698] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [sym_variable_name] = ACTIONS(4015), + [ts_builtin_sym_end] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_RPAREN] = ACTIONS(4015), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4017), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [1699] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5399), + [sym_comment] = ACTIONS(57), + }, + [1700] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5401), + [sym_comment] = ACTIONS(57), + }, + [1701] = { + [anon_sym_RBRACE] = ACTIONS(5401), + [sym_comment] = ACTIONS(57), + }, + [1702] = { + [sym_concatenation] = STATE(2353), + [sym_string] = STATE(2352), + [sym_simple_expansion] = STATE(2352), + [sym_string_expansion] = STATE(2352), + [sym_expansion] = STATE(2352), + [sym_command_substitution] = STATE(2352), + [sym_process_substitution] = STATE(2352), + [anon_sym_RBRACE] = ACTIONS(5401), + [sym__special_characters] = ACTIONS(5403), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5405), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5405), + }, + [1703] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [sym_variable_name] = ACTIONS(4051), + [ts_builtin_sym_end] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_RPAREN] = ACTIONS(4051), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4053), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [1704] = { + [sym_concatenation] = STATE(2356), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2356), + [sym_regex] = ACTIONS(5407), + [anon_sym_RBRACE] = ACTIONS(5409), + [anon_sym_EQ] = ACTIONS(5411), + [anon_sym_DASH] = ACTIONS(5411), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5411), + [anon_sym_COLON_QMARK] = ACTIONS(5411), + [anon_sym_COLON_DASH] = ACTIONS(5411), + [anon_sym_PERCENT] = ACTIONS(5411), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1705] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5409), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1706] = { + [sym_concatenation] = STATE(2358), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2358), + [sym_regex] = ACTIONS(5415), + [anon_sym_RBRACE] = ACTIONS(5401), + [anon_sym_EQ] = ACTIONS(5417), + [anon_sym_DASH] = ACTIONS(5417), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_COLON_QMARK] = ACTIONS(5417), + [anon_sym_COLON_DASH] = ACTIONS(5417), + [anon_sym_PERCENT] = ACTIONS(5417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1707] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5401), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1708] = { + [sym_concatenation] = STATE(2360), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2360), + [anon_sym_RBRACE] = ACTIONS(5421), + [anon_sym_EQ] = ACTIONS(5423), + [anon_sym_DASH] = ACTIONS(5423), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5423), + [anon_sym_COLON_QMARK] = ACTIONS(5423), + [anon_sym_COLON_DASH] = ACTIONS(5423), + [anon_sym_PERCENT] = ACTIONS(5423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1709] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [sym_variable_name] = ACTIONS(4107), + [ts_builtin_sym_end] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_RPAREN] = ACTIONS(4107), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4109), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [1710] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5421), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1711] = { + [sym_concatenation] = STATE(2358), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2358), + [anon_sym_RBRACE] = ACTIONS(5401), + [anon_sym_EQ] = ACTIONS(5417), + [anon_sym_DASH] = ACTIONS(5417), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_COLON_QMARK] = ACTIONS(5417), + [anon_sym_COLON_DASH] = ACTIONS(5417), + [anon_sym_PERCENT] = ACTIONS(5417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1712] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [ts_builtin_sym_end] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_RPAREN] = ACTIONS(4001), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4003), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [1713] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [ts_builtin_sym_end] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_RPAREN] = ACTIONS(4015), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4017), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [1714] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5427), + [sym_comment] = ACTIONS(57), + }, + [1715] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5429), + [sym_comment] = ACTIONS(57), + }, + [1716] = { + [anon_sym_RBRACE] = ACTIONS(5429), + [sym_comment] = ACTIONS(57), + }, + [1717] = { + [sym_concatenation] = STATE(2365), + [sym_string] = STATE(2364), + [sym_simple_expansion] = STATE(2364), + [sym_string_expansion] = STATE(2364), + [sym_expansion] = STATE(2364), + [sym_command_substitution] = STATE(2364), + [sym_process_substitution] = STATE(2364), + [anon_sym_RBRACE] = ACTIONS(5429), + [sym__special_characters] = ACTIONS(5431), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5433), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5433), + }, + [1718] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [ts_builtin_sym_end] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_RPAREN] = ACTIONS(4051), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4053), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [1719] = { + [sym_concatenation] = STATE(2368), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2368), + [sym_regex] = ACTIONS(5435), + [anon_sym_RBRACE] = ACTIONS(5437), + [anon_sym_EQ] = ACTIONS(5439), + [anon_sym_DASH] = ACTIONS(5439), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5441), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5439), + [anon_sym_COLON_QMARK] = ACTIONS(5439), + [anon_sym_COLON_DASH] = ACTIONS(5439), + [anon_sym_PERCENT] = ACTIONS(5439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1720] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5437), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1721] = { + [sym_concatenation] = STATE(2370), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2370), + [sym_regex] = ACTIONS(5443), + [anon_sym_RBRACE] = ACTIONS(5429), + [anon_sym_EQ] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(5445), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5445), + [anon_sym_COLON_QMARK] = ACTIONS(5445), + [anon_sym_COLON_DASH] = ACTIONS(5445), + [anon_sym_PERCENT] = ACTIONS(5445), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1722] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5429), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1723] = { + [sym_concatenation] = STATE(2372), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2372), + [anon_sym_RBRACE] = ACTIONS(5449), + [anon_sym_EQ] = ACTIONS(5451), + [anon_sym_DASH] = ACTIONS(5451), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5453), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5451), + [anon_sym_COLON_QMARK] = ACTIONS(5451), + [anon_sym_COLON_DASH] = ACTIONS(5451), + [anon_sym_PERCENT] = ACTIONS(5451), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1724] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [ts_builtin_sym_end] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_RPAREN] = ACTIONS(4107), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4109), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [1725] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5449), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1726] = { + [sym_concatenation] = STATE(2370), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2370), + [anon_sym_RBRACE] = ACTIONS(5429), + [anon_sym_EQ] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(5445), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5445), + [anon_sym_COLON_QMARK] = ACTIONS(5445), + [anon_sym_COLON_DASH] = ACTIONS(5445), + [anon_sym_PERCENT] = ACTIONS(5445), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1727] = { + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [sym_variable_name] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4001), + }, + [1728] = { + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [sym_variable_name] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4015), + }, + [1729] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5455), + [sym_comment] = ACTIONS(57), + }, + [1730] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5457), + [sym_comment] = ACTIONS(57), + }, + [1731] = { + [anon_sym_RBRACE] = ACTIONS(5457), + [sym_comment] = ACTIONS(57), + }, + [1732] = { + [sym_concatenation] = STATE(2377), + [sym_string] = STATE(2376), + [sym_simple_expansion] = STATE(2376), + [sym_string_expansion] = STATE(2376), + [sym_expansion] = STATE(2376), + [sym_command_substitution] = STATE(2376), + [sym_process_substitution] = STATE(2376), + [anon_sym_RBRACE] = ACTIONS(5457), + [sym__special_characters] = ACTIONS(5459), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5461), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5461), + }, + [1733] = { + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [sym_variable_name] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4051), + }, + [1734] = { + [sym_concatenation] = STATE(2380), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2380), + [sym_regex] = ACTIONS(5463), + [anon_sym_RBRACE] = ACTIONS(5465), + [anon_sym_EQ] = ACTIONS(5467), + [anon_sym_DASH] = ACTIONS(5467), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5469), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5467), + [anon_sym_COLON_QMARK] = ACTIONS(5467), + [anon_sym_COLON_DASH] = ACTIONS(5467), + [anon_sym_PERCENT] = ACTIONS(5467), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1735] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5465), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1736] = { + [sym_concatenation] = STATE(2382), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2382), + [sym_regex] = ACTIONS(5471), + [anon_sym_RBRACE] = ACTIONS(5457), + [anon_sym_EQ] = ACTIONS(5473), + [anon_sym_DASH] = ACTIONS(5473), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5473), + [anon_sym_COLON_QMARK] = ACTIONS(5473), + [anon_sym_COLON_DASH] = ACTIONS(5473), + [anon_sym_PERCENT] = ACTIONS(5473), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1737] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5457), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1738] = { + [sym_concatenation] = STATE(2384), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2384), + [anon_sym_RBRACE] = ACTIONS(5477), + [anon_sym_EQ] = ACTIONS(5479), + [anon_sym_DASH] = ACTIONS(5479), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5479), + [anon_sym_COLON_QMARK] = ACTIONS(5479), + [anon_sym_COLON_DASH] = ACTIONS(5479), + [anon_sym_PERCENT] = ACTIONS(5479), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1739] = { + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [sym_variable_name] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4107), + }, + [1740] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5477), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1741] = { + [sym_concatenation] = STATE(2382), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2382), + [anon_sym_RBRACE] = ACTIONS(5457), + [anon_sym_EQ] = ACTIONS(5473), + [anon_sym_DASH] = ACTIONS(5473), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5473), + [anon_sym_COLON_QMARK] = ACTIONS(5473), + [anon_sym_COLON_DASH] = ACTIONS(5473), + [anon_sym_PERCENT] = ACTIONS(5473), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1742] = { + [sym__concat] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4017), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym__string_content] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4017), + [anon_sym_BQUOTE] = ACTIONS(4017), + [sym_comment] = ACTIONS(343), + }, + [1743] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5483), + [sym_comment] = ACTIONS(57), + }, + [1744] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5485), + [sym_comment] = ACTIONS(57), + }, + [1745] = { + [anon_sym_RBRACE] = ACTIONS(5485), + [sym_comment] = ACTIONS(57), + }, + [1746] = { + [sym_concatenation] = STATE(2389), + [sym_string] = STATE(2388), + [sym_simple_expansion] = STATE(2388), + [sym_string_expansion] = STATE(2388), + [sym_expansion] = STATE(2388), + [sym_command_substitution] = STATE(2388), + [sym_process_substitution] = STATE(2388), + [anon_sym_RBRACE] = ACTIONS(5485), + [sym__special_characters] = ACTIONS(5487), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5489), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5489), + }, + [1747] = { + [sym__concat] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4053), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym__string_content] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4053), + [anon_sym_BQUOTE] = ACTIONS(4053), + [sym_comment] = ACTIONS(343), + }, + [1748] = { + [sym_concatenation] = STATE(2392), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2392), + [sym_regex] = ACTIONS(5491), + [anon_sym_RBRACE] = ACTIONS(5493), + [anon_sym_EQ] = ACTIONS(5495), + [anon_sym_DASH] = ACTIONS(5495), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5497), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5495), + [anon_sym_COLON_QMARK] = ACTIONS(5495), + [anon_sym_COLON_DASH] = ACTIONS(5495), + [anon_sym_PERCENT] = ACTIONS(5495), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1749] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5493), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1750] = { + [sym_concatenation] = STATE(2394), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2394), + [sym_regex] = ACTIONS(5499), + [anon_sym_RBRACE] = ACTIONS(5485), + [anon_sym_EQ] = ACTIONS(5501), + [anon_sym_DASH] = ACTIONS(5501), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5503), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5501), + [anon_sym_COLON_QMARK] = ACTIONS(5501), + [anon_sym_COLON_DASH] = ACTIONS(5501), + [anon_sym_PERCENT] = ACTIONS(5501), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1751] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5485), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1752] = { + [sym_concatenation] = STATE(2396), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2396), + [anon_sym_RBRACE] = ACTIONS(5505), + [anon_sym_EQ] = ACTIONS(5507), + [anon_sym_DASH] = ACTIONS(5507), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5507), + [anon_sym_COLON_QMARK] = ACTIONS(5507), + [anon_sym_COLON_DASH] = ACTIONS(5507), + [anon_sym_PERCENT] = ACTIONS(5507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1753] = { + [sym__concat] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4109), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym__string_content] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4109), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4109), + [anon_sym_BQUOTE] = ACTIONS(4109), + [sym_comment] = ACTIONS(343), + }, + [1754] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5505), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1755] = { + [sym_concatenation] = STATE(2394), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2394), + [anon_sym_RBRACE] = ACTIONS(5485), + [anon_sym_EQ] = ACTIONS(5501), + [anon_sym_DASH] = ACTIONS(5501), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5503), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5501), + [anon_sym_COLON_QMARK] = ACTIONS(5501), + [anon_sym_COLON_DASH] = ACTIONS(5501), + [anon_sym_PERCENT] = ACTIONS(5501), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1756] = { + [sym_string] = STATE(1045), + [sym_simple_expansion] = STATE(1045), + [sym_string_expansion] = STATE(1045), + [sym_expansion] = STATE(1045), + [sym_command_substitution] = STATE(1045), + [sym_process_substitution] = STATE(1045), + [anon_sym_RBRACK] = ACTIONS(5511), + [sym__special_characters] = ACTIONS(2634), + [anon_sym_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [sym_raw_string] = ACTIONS(2067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_LT_LPAREN] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2067), + }, + [1757] = { + [sym__concat] = ACTIONS(5513), + [anon_sym_RBRACE] = ACTIONS(2638), + [anon_sym_EQ] = ACTIONS(5515), + [anon_sym_DASH] = ACTIONS(5515), + [sym__special_characters] = ACTIONS(5515), + [anon_sym_DQUOTE] = ACTIONS(2638), + [anon_sym_DOLLAR] = ACTIONS(5515), + [sym_raw_string] = ACTIONS(2638), + [anon_sym_POUND] = ACTIONS(2638), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2638), + [anon_sym_SLASH] = ACTIONS(2638), + [anon_sym_COLON] = ACTIONS(5515), + [anon_sym_COLON_QMARK] = ACTIONS(5515), + [anon_sym_COLON_DASH] = ACTIONS(5515), + [anon_sym_PERCENT] = ACTIONS(5515), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2638), + [anon_sym_BQUOTE] = ACTIONS(2638), + [anon_sym_LT_LPAREN] = ACTIONS(2638), + [anon_sym_GT_LPAREN] = ACTIONS(2638), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(5515), + }, + [1758] = { + [sym_string] = STATE(1045), + [sym_simple_expansion] = STATE(1045), + [sym_string_expansion] = STATE(1045), + [sym_expansion] = STATE(1045), + [sym_command_substitution] = STATE(1045), + [sym_process_substitution] = STATE(1045), + [anon_sym_RBRACK] = ACTIONS(5517), + [sym__special_characters] = ACTIONS(2634), + [anon_sym_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [sym_raw_string] = ACTIONS(2067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_LT_LPAREN] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2067), + }, + [1759] = { + [sym__concat] = ACTIONS(5519), + [anon_sym_RBRACE] = ACTIONS(2644), + [anon_sym_EQ] = ACTIONS(5521), + [anon_sym_DASH] = ACTIONS(5521), + [sym__special_characters] = ACTIONS(5521), + [anon_sym_DQUOTE] = ACTIONS(2644), + [anon_sym_DOLLAR] = ACTIONS(5521), + [sym_raw_string] = ACTIONS(2644), + [anon_sym_POUND] = ACTIONS(2644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2644), + [anon_sym_SLASH] = ACTIONS(2644), + [anon_sym_COLON] = ACTIONS(5521), + [anon_sym_COLON_QMARK] = ACTIONS(5521), + [anon_sym_COLON_DASH] = ACTIONS(5521), + [anon_sym_PERCENT] = ACTIONS(5521), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2644), + [anon_sym_BQUOTE] = ACTIONS(2644), + [anon_sym_LT_LPAREN] = ACTIONS(2644), + [anon_sym_GT_LPAREN] = ACTIONS(2644), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(5521), + }, + [1760] = { + [anon_sym_RBRACK] = ACTIONS(5517), + [sym_comment] = ACTIONS(57), + }, + [1761] = { + [sym_string] = STATE(2401), + [sym_simple_expansion] = STATE(2401), + [sym_string_expansion] = STATE(2401), + [sym_expansion] = STATE(2401), + [sym_command_substitution] = STATE(2401), + [sym_process_substitution] = STATE(2401), + [sym__special_characters] = ACTIONS(5523), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5523), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5523), + }, + [1762] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [ts_builtin_sym_end] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_RPAREN] = ACTIONS(5525), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_EQ_TILDE] = ACTIONS(5527), + [anon_sym_EQ_EQ] = ACTIONS(5527), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [1763] = { + [aux_sym_concatenation_repeat1] = STATE(2402), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + }, + [1764] = { + [sym__concat] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + }, + [1765] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(5529), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1766] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(5529), + [anon_sym_DOLLAR] = ACTIONS(5531), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [1767] = { + [sym__concat] = ACTIONS(1081), + [anon_sym_RBRACE] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + }, + [1768] = { + [sym__concat] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1085), + [sym_comment] = ACTIONS(57), + }, + [1769] = { + [sym__concat] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + }, + [1770] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [ts_builtin_sym_end] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_RPAREN] = ACTIONS(5533), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_EQ_TILDE] = ACTIONS(5535), + [anon_sym_EQ_EQ] = ACTIONS(5535), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [1771] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(5537), + [sym_comment] = ACTIONS(57), + }, + [1772] = { + [sym_subscript] = STATE(2408), + [sym_variable_name] = ACTIONS(5539), + [anon_sym_DASH] = ACTIONS(5541), + [anon_sym_DOLLAR] = ACTIONS(5541), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5543), + [anon_sym_STAR] = ACTIONS(5545), + [anon_sym_AT] = ACTIONS(5545), + [anon_sym_QMARK] = ACTIONS(5545), + [anon_sym_0] = ACTIONS(5543), + [anon_sym__] = ACTIONS(5543), + }, + [1773] = { + [sym_concatenation] = STATE(2411), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2411), + [anon_sym_RBRACE] = ACTIONS(5547), + [anon_sym_EQ] = ACTIONS(5549), + [anon_sym_DASH] = ACTIONS(5549), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5551), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5553), + [anon_sym_COLON] = ACTIONS(5549), + [anon_sym_COLON_QMARK] = ACTIONS(5549), + [anon_sym_COLON_DASH] = ACTIONS(5549), + [anon_sym_PERCENT] = ACTIONS(5549), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1774] = { + [sym_concatenation] = STATE(2414), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2414), + [anon_sym_RBRACE] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5557), + [anon_sym_DASH] = ACTIONS(5557), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_COLON] = ACTIONS(5557), + [anon_sym_COLON_QMARK] = ACTIONS(5557), + [anon_sym_COLON_DASH] = ACTIONS(5557), + [anon_sym_PERCENT] = ACTIONS(5557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1775] = { + [anon_sym_RPAREN] = ACTIONS(5563), + [sym_comment] = ACTIONS(57), + }, + [1776] = { + [anon_sym_BQUOTE] = ACTIONS(5563), + [sym_comment] = ACTIONS(57), + }, + [1777] = { + [anon_sym_RPAREN] = ACTIONS(5565), + [sym_comment] = ACTIONS(57), + }, + [1778] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5567), + [sym_comment] = ACTIONS(57), + }, + [1779] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5569), + [sym_comment] = ACTIONS(57), + }, + [1780] = { + [anon_sym_RBRACE] = ACTIONS(5569), + [sym_comment] = ACTIONS(57), + }, + [1781] = { + [sym_concatenation] = STATE(2420), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2420), + [anon_sym_RBRACE] = ACTIONS(5571), + [anon_sym_EQ] = ACTIONS(5573), + [anon_sym_DASH] = ACTIONS(5573), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5575), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5573), + [anon_sym_COLON_QMARK] = ACTIONS(5573), + [anon_sym_COLON_DASH] = ACTIONS(5573), + [anon_sym_PERCENT] = ACTIONS(5573), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1782] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [ts_builtin_sym_end] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_RPAREN] = ACTIONS(5577), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_EQ_TILDE] = ACTIONS(5579), + [anon_sym_EQ_EQ] = ACTIONS(5579), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [1783] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5571), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1784] = { + [sym_concatenation] = STATE(2421), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2421), + [anon_sym_RBRACE] = ACTIONS(5569), + [anon_sym_EQ] = ACTIONS(5581), + [anon_sym_DASH] = ACTIONS(5581), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5583), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5581), + [anon_sym_COLON_QMARK] = ACTIONS(5581), + [anon_sym_COLON_DASH] = ACTIONS(5581), + [anon_sym_PERCENT] = ACTIONS(5581), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1785] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5569), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1786] = { + [sym__concat] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_EQ] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [sym__special_characters] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_POUND] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_COLON] = ACTIONS(2294), + [anon_sym_COLON_QMARK] = ACTIONS(2294), + [anon_sym_COLON_DASH] = ACTIONS(2294), + [anon_sym_PERCENT] = ACTIONS(2294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(2294), + }, + [1787] = { + [aux_sym_concatenation_repeat1] = STATE(1787), + [sym__concat] = ACTIONS(5585), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_EQ] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [sym__special_characters] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_POUND] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_COLON] = ACTIONS(2294), + [anon_sym_COLON_QMARK] = ACTIONS(2294), + [anon_sym_COLON_DASH] = ACTIONS(2294), + [anon_sym_PERCENT] = ACTIONS(2294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(2294), + }, + [1788] = { + [sym__concat] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_EQ] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2301), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [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(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(2301), + }, + [1789] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(5588), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1790] = { + [sym_concatenation] = STATE(2426), + [sym_string] = STATE(2425), + [sym_simple_expansion] = STATE(2425), + [sym_string_expansion] = STATE(2425), + [sym_expansion] = STATE(2425), + [sym_command_substitution] = STATE(2425), + [sym_process_substitution] = STATE(2425), + [anon_sym_RBRACE] = ACTIONS(5590), + [sym__special_characters] = ACTIONS(5592), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5594), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5594), + }, + [1791] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(5596), + [sym_comment] = ACTIONS(57), + }, + [1792] = { + [sym_concatenation] = STATE(2430), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2430), + [anon_sym_RBRACE] = ACTIONS(5598), + [anon_sym_EQ] = ACTIONS(5600), + [anon_sym_DASH] = ACTIONS(5600), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5604), + [anon_sym_COLON] = ACTIONS(5600), + [anon_sym_COLON_QMARK] = ACTIONS(5600), + [anon_sym_COLON_DASH] = ACTIONS(5600), + [anon_sym_PERCENT] = ACTIONS(5600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1793] = { + [sym_concatenation] = STATE(2432), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2432), + [anon_sym_RBRACE] = ACTIONS(5590), + [anon_sym_EQ] = ACTIONS(5606), + [anon_sym_DASH] = ACTIONS(5606), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5610), + [anon_sym_COLON] = ACTIONS(5606), + [anon_sym_COLON_QMARK] = ACTIONS(5606), + [anon_sym_COLON_DASH] = ACTIONS(5606), + [anon_sym_PERCENT] = ACTIONS(5606), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1794] = { + [sym__concat] = ACTIONS(2392), + [anon_sym_RBRACE] = ACTIONS(2392), + [anon_sym_EQ] = ACTIONS(2394), + [anon_sym_DASH] = ACTIONS(2394), + [sym__special_characters] = ACTIONS(2394), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_POUND] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_COLON] = ACTIONS(2394), + [anon_sym_COLON_QMARK] = ACTIONS(2394), + [anon_sym_COLON_DASH] = ACTIONS(2394), + [anon_sym_PERCENT] = ACTIONS(2394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(2394), + }, + [1795] = { + [sym_concatenation] = STATE(2435), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2435), + [sym_regex] = ACTIONS(5612), + [anon_sym_RBRACE] = ACTIONS(5614), + [anon_sym_EQ] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5618), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5616), + [anon_sym_COLON_QMARK] = ACTIONS(5616), + [anon_sym_COLON_DASH] = ACTIONS(5616), + [anon_sym_PERCENT] = ACTIONS(5616), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1796] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5614), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1797] = { + [sym__concat] = ACTIONS(2440), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_EQ] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [sym__special_characters] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_POUND] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_COLON] = ACTIONS(2442), + [anon_sym_COLON_QMARK] = ACTIONS(2442), + [anon_sym_COLON_DASH] = ACTIONS(2442), + [anon_sym_PERCENT] = ACTIONS(2442), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(2442), + }, + [1798] = { + [sym_concatenation] = STATE(2432), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2432), + [sym_regex] = ACTIONS(5620), + [anon_sym_RBRACE] = ACTIONS(5590), + [anon_sym_EQ] = ACTIONS(5606), + [anon_sym_DASH] = ACTIONS(5606), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5606), + [anon_sym_COLON_QMARK] = ACTIONS(5606), + [anon_sym_COLON_DASH] = ACTIONS(5606), + [anon_sym_PERCENT] = ACTIONS(5606), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1799] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5590), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1800] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [ts_builtin_sym_end] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_RPAREN] = ACTIONS(5622), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_EQ_TILDE] = ACTIONS(5624), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [1801] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5626), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1802] = { + [sym__concat] = ACTIONS(2446), + [anon_sym_RBRACE] = ACTIONS(2446), + [anon_sym_EQ] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2448), + [sym__special_characters] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_COLON] = ACTIONS(2448), + [anon_sym_COLON_QMARK] = ACTIONS(2448), + [anon_sym_COLON_DASH] = ACTIONS(2448), + [anon_sym_PERCENT] = ACTIONS(2448), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(2448), + }, + [1803] = { + [sym__concat] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_EQ] = ACTIONS(2486), + [anon_sym_DASH] = ACTIONS(2486), + [sym__special_characters] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2486), + [anon_sym_COLON_QMARK] = ACTIONS(2486), + [anon_sym_COLON_DASH] = ACTIONS(2486), + [anon_sym_PERCENT] = ACTIONS(2486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(2486), + }, + [1804] = { + [aux_sym_concatenation_repeat1] = STATE(2438), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(1395), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [1805] = { + [aux_sym_concatenation_repeat1] = STATE(1172), + [sym__simple_heredoc_body] = ACTIONS(1393), + [sym__heredoc_body_beginning] = ACTIONS(1393), + [sym_file_descriptor] = ACTIONS(1393), + [sym__concat] = ACTIONS(935), + [sym_variable_name] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_SEMI_SEMI] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_AMP_GT] = ACTIONS(1397), + [anon_sym_AMP_GT_GT] = ACTIONS(1393), + [anon_sym_LT_AMP] = ACTIONS(1393), + [anon_sym_GT_AMP] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_LT_LT_DASH] = ACTIONS(1393), + [anon_sym_LT_LT_LT] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1397), + [sym_raw_string] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1393), + [anon_sym_GT_LPAREN] = ACTIONS(1393), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1397), + [sym_word] = ACTIONS(1397), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1397), + }, + [1806] = { + [aux_sym_concatenation_repeat1] = STATE(1172), + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym__concat] = ACTIONS(935), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1373), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [1807] = { + [aux_sym_concatenation_repeat1] = STATE(1807), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(3854), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1808] = { + [aux_sym_concatenation_repeat1] = STATE(1808), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(3891), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1809] = { + [aux_sym_concatenation_repeat1] = STATE(1811), + [sym__simple_heredoc_body] = ACTIONS(1353), + [sym__heredoc_body_beginning] = ACTIONS(1353), + [sym_file_descriptor] = ACTIONS(1353), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_SEMI_SEMI] = ACTIONS(1353), + [anon_sym_PIPE_AMP] = ACTIONS(1353), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_GT] = ACTIONS(1355), + [anon_sym_GT_GT] = ACTIONS(1353), + [anon_sym_AMP_GT] = ACTIONS(1355), + [anon_sym_AMP_GT_GT] = ACTIONS(1353), + [anon_sym_LT_AMP] = ACTIONS(1353), + [anon_sym_GT_AMP] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(1355), + [anon_sym_LT_LT_DASH] = ACTIONS(1353), + [anon_sym_LT_LT_LT] = ACTIONS(1353), + [anon_sym_BQUOTE] = ACTIONS(1353), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1355), + }, + [1810] = { + [aux_sym_concatenation_repeat1] = STATE(1811), + [sym__simple_heredoc_body] = ACTIONS(1357), + [sym__heredoc_body_beginning] = ACTIONS(1357), + [sym_file_descriptor] = ACTIONS(1357), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_SEMI_SEMI] = ACTIONS(1357), + [anon_sym_PIPE_AMP] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1357), + [anon_sym_AMP_GT] = ACTIONS(1359), + [anon_sym_AMP_GT_GT] = ACTIONS(1357), + [anon_sym_LT_AMP] = ACTIONS(1357), + [anon_sym_GT_AMP] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_LT_LT_DASH] = ACTIONS(1357), + [anon_sym_LT_LT_LT] = ACTIONS(1357), + [anon_sym_BQUOTE] = ACTIONS(1357), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), + }, + [1811] = { + [aux_sym_concatenation_repeat1] = STATE(2439), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [1812] = { + [sym_file_descriptor] = ACTIONS(2536), + [sym_variable_name] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_LPAREN_LPAREN] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2540), + [anon_sym_typeset] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_readonly] = ACTIONS(2540), + [anon_sym_local] = ACTIONS(2540), + [anon_sym_unset] = ACTIONS(2540), + [anon_sym_unsetenv] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_GT] = ACTIONS(2540), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_AMP_GT] = ACTIONS(2540), + [anon_sym_AMP_GT_GT] = ACTIONS(2536), + [anon_sym_LT_AMP] = ACTIONS(2536), + [anon_sym_GT_AMP] = ACTIONS(2536), + [sym__special_characters] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2536), + [anon_sym_DOLLAR] = ACTIONS(2540), + [sym_raw_string] = ACTIONS(2536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2536), + [anon_sym_BQUOTE] = ACTIONS(4266), + [anon_sym_LT_LPAREN] = ACTIONS(2536), + [anon_sym_GT_LPAREN] = ACTIONS(2536), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2540), + }, + [1813] = { + [sym_concatenation] = STATE(2443), + [sym_string] = STATE(2442), + [sym_simple_expansion] = STATE(2442), + [sym_string_expansion] = STATE(2442), + [sym_expansion] = STATE(2442), + [sym_command_substitution] = STATE(2442), + [sym_process_substitution] = STATE(2442), + [anon_sym_RBRACE] = ACTIONS(5628), + [sym__special_characters] = ACTIONS(5630), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5632), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5632), + }, + [1814] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(5634), + [sym_comment] = ACTIONS(57), + }, + [1815] = { + [sym_concatenation] = STATE(2447), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2447), + [anon_sym_RBRACE] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5638), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5640), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5642), + [anon_sym_COLON] = ACTIONS(5638), + [anon_sym_COLON_QMARK] = ACTIONS(5638), + [anon_sym_COLON_DASH] = ACTIONS(5638), + [anon_sym_PERCENT] = ACTIONS(5638), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1816] = { + [sym_concatenation] = STATE(2449), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2449), + [anon_sym_RBRACE] = ACTIONS(5628), + [anon_sym_EQ] = ACTIONS(5644), + [anon_sym_DASH] = ACTIONS(5644), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5648), + [anon_sym_COLON] = ACTIONS(5644), + [anon_sym_COLON_QMARK] = ACTIONS(5644), + [anon_sym_COLON_DASH] = ACTIONS(5644), + [anon_sym_PERCENT] = ACTIONS(5644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1817] = { + [sym__heredoc_body_middle] = ACTIONS(2392), + [sym__heredoc_body_end] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + }, + [1818] = { [sym_concatenation] = STATE(2452), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2452), + [sym_regex] = ACTIONS(5650), + [anon_sym_RBRACE] = ACTIONS(5652), + [anon_sym_EQ] = ACTIONS(5654), + [anon_sym_DASH] = ACTIONS(5654), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5656), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5654), + [anon_sym_COLON_QMARK] = ACTIONS(5654), + [anon_sym_COLON_DASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1819] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5652), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1820] = { + [sym__heredoc_body_middle] = ACTIONS(2440), + [sym__heredoc_body_end] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + }, + [1821] = { + [sym_concatenation] = STATE(2449), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2449), + [sym_regex] = ACTIONS(5658), + [anon_sym_RBRACE] = ACTIONS(5628), + [anon_sym_EQ] = ACTIONS(5644), + [anon_sym_DASH] = ACTIONS(5644), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5644), + [anon_sym_COLON_QMARK] = ACTIONS(5644), + [anon_sym_COLON_DASH] = ACTIONS(5644), + [anon_sym_PERCENT] = ACTIONS(5644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1822] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5628), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1823] = { + [sym__heredoc_body_middle] = ACTIONS(2446), + [sym__heredoc_body_end] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + }, + [1824] = { + [aux_sym_concatenation_repeat1] = STATE(1824), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2296), + [ts_builtin_sym_end] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1825] = { + [sym_concatenation] = STATE(1207), [sym_string] = STATE(2455), - [sym_array] = STATE(2452), [sym_simple_expansion] = STATE(2455), [sym_string_expansion] = STATE(2455), [sym_expansion] = STATE(2455), [sym_command_substitution] = STATE(2455), [sym_process_substitution] = STATE(2455), - [sym__empty_value] = ACTIONS(5582), - [anon_sym_LPAREN] = ACTIONS(5584), - [sym__special_characters] = ACTIONS(5586), - [anon_sym_DQUOTE] = ACTIONS(5017), - [anon_sym_DOLLAR] = ACTIONS(5019), - [sym_raw_string] = ACTIONS(5588), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LT_LPAREN] = ACTIONS(5029), - [anon_sym_GT_LPAREN] = ACTIONS(5029), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5588), - }, - [2298] = { - [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(5590), - [anon_sym_DQUOTE] = ACTIONS(5017), - [anon_sym_DOLLAR] = ACTIONS(5019), - [sym_raw_string] = ACTIONS(5590), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LT_LPAREN] = ACTIONS(5029), - [anon_sym_GT_LPAREN] = ACTIONS(5029), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5590), - }, - [2299] = { - [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(5342), - [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), - }, - [2300] = { - [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), - }, - [2301] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(5592), - [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), - }, - [2302] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(455), - [anon_sym_DQUOTE] = ACTIONS(5592), - [anon_sym_DOLLAR] = ACTIONS(5594), - [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), - }, - [2303] = { - [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), - }, - [2304] = { - [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), - }, - [2305] = { - [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), - }, - [2306] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(5596), - [sym_comment] = ACTIONS(57), - }, - [2307] = { - [sym_subscript] = STATE(2463), - [sym_variable_name] = ACTIONS(5598), - [anon_sym_DASH] = ACTIONS(5600), - [anon_sym_DOLLAR] = ACTIONS(5600), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5602), - [anon_sym_STAR] = ACTIONS(5604), - [anon_sym_AT] = ACTIONS(5604), - [anon_sym_QMARK] = ACTIONS(5604), - [anon_sym_0] = ACTIONS(5602), - [anon_sym__] = ACTIONS(5602), - }, - [2308] = { - [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(5606), - [anon_sym_EQ] = ACTIONS(5608), - [anon_sym_DASH] = ACTIONS(5608), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(5612), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_COLON_QMARK] = ACTIONS(5608), - [anon_sym_COLON_DASH] = ACTIONS(5608), - [anon_sym_PERCENT] = ACTIONS(5608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2309] = { - [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(5614), - [anon_sym_EQ] = ACTIONS(5616), - [anon_sym_DASH] = ACTIONS(5616), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5618), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(5620), - [anon_sym_COLON] = ACTIONS(5616), - [anon_sym_COLON_QMARK] = ACTIONS(5616), - [anon_sym_COLON_DASH] = ACTIONS(5616), - [anon_sym_PERCENT] = ACTIONS(5616), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2310] = { - [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(5622), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5624), - [anon_sym_SEMI_SEMI] = ACTIONS(5626), - [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(5626), - [anon_sym_AMP] = ACTIONS(5622), - }, - [2311] = { - [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(5622), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5624), - [anon_sym_SEMI_SEMI] = ACTIONS(5626), - [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(5626), - [anon_sym_AMP] = ACTIONS(5622), - }, - [2312] = { - [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), + [sym__special_characters] = ACTIONS(5660), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(139), + [sym_raw_string] = ACTIONS(5662), [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), + [sym_word] = ACTIONS(5662), }, - [2313] = { - [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(5628), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(5630), - [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(5624), + [1826] = { + [sym_file_redirect] = STATE(1219), + [sym_heredoc_redirect] = STATE(1219), + [sym_herestring_redirect] = STATE(1219), + [aux_sym_redirected_statement_repeat1] = STATE(1219), + [sym__simple_heredoc_body] = ACTIONS(2516), + [sym__heredoc_body_beginning] = ACTIONS(2516), + [sym_file_descriptor] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5630), - [anon_sym_AMP] = ACTIONS(5628), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), }, - [2314] = { - [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(5628), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(5630), - [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(5624), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), + [1827] = { + [sym_file_redirect] = STATE(1219), + [sym_heredoc_redirect] = STATE(1219), + [sym_herestring_redirect] = STATE(1219), + [aux_sym_redirected_statement_repeat1] = STATE(1219), + [sym__simple_heredoc_body] = ACTIONS(2516), + [sym__heredoc_body_beginning] = ACTIONS(2516), + [sym_file_descriptor] = ACTIONS(2516), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(5630), - [anon_sym_AMP] = ACTIONS(5628), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), }, - [2315] = { - [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), - [sym_negated_command] = STATE(2477), - [sym_test_command] = STATE(2477), - [sym_declaration_command] = STATE(2477), - [sym_unset_command] = STATE(2477), - [sym_command] = STATE(2477), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(2478), - [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), + [1828] = { + [sym_file_redirect] = STATE(1219), + [sym_heredoc_redirect] = STATE(1219), + [sym_herestring_redirect] = STATE(1219), + [aux_sym_redirected_statement_repeat1] = STATE(1219), + [sym__simple_heredoc_body] = ACTIONS(2520), + [sym__heredoc_body_beginning] = ACTIONS(2520), + [sym_file_descriptor] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(2618), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2520), + [anon_sym_AMP_GT] = ACTIONS(2522), + [anon_sym_AMP_GT_GT] = ACTIONS(2520), + [anon_sym_LT_AMP] = ACTIONS(2520), + [anon_sym_GT_AMP] = ACTIONS(2520), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + }, + [1829] = { + [sym_file_redirect] = STATE(1219), + [sym_heredoc_redirect] = STATE(1219), + [sym_herestring_redirect] = STATE(1219), + [aux_sym_redirected_statement_repeat1] = STATE(1219), + [sym__simple_heredoc_body] = ACTIONS(2520), + [sym__heredoc_body_beginning] = ACTIONS(2520), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(2618), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + }, + [1830] = { + [aux_sym_concatenation_repeat1] = STATE(2456), + [sym__simple_heredoc_body] = ACTIONS(1009), + [sym__heredoc_body_beginning] = ACTIONS(1009), + [sym_file_descriptor] = ACTIONS(1009), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_SEMI_SEMI] = ACTIONS(1009), + [anon_sym_PIPE_AMP] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1009), + [anon_sym_PIPE_PIPE] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_GT] = ACTIONS(1013), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(1013), + [anon_sym_AMP_GT_GT] = ACTIONS(1009), + [anon_sym_LT_AMP] = ACTIONS(1009), + [anon_sym_GT_AMP] = ACTIONS(1009), + [anon_sym_LT_LT] = ACTIONS(1013), + [anon_sym_LT_LT_DASH] = ACTIONS(1009), + [anon_sym_LT_LT_LT] = ACTIONS(1009), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1013), + }, + [1831] = { + [aux_sym_concatenation_repeat1] = STATE(2456), + [sym__simple_heredoc_body] = ACTIONS(1027), + [sym__heredoc_body_beginning] = ACTIONS(1027), + [sym_file_descriptor] = ACTIONS(1027), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_SEMI_SEMI] = ACTIONS(1027), + [anon_sym_PIPE_AMP] = ACTIONS(1027), + [anon_sym_AMP_AMP] = ACTIONS(1027), + [anon_sym_PIPE_PIPE] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_AMP_GT] = ACTIONS(1029), + [anon_sym_AMP_GT_GT] = ACTIONS(1027), + [anon_sym_LT_AMP] = ACTIONS(1027), + [anon_sym_GT_AMP] = ACTIONS(1027), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_LT_LT_DASH] = ACTIONS(1027), + [anon_sym_LT_LT_LT] = ACTIONS(1027), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + }, + [1832] = { + [aux_sym_concatenation_repeat1] = STATE(2456), + [sym__simple_heredoc_body] = ACTIONS(2528), + [sym__heredoc_body_beginning] = ACTIONS(2528), + [sym_file_descriptor] = ACTIONS(2528), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_PIPE] = ACTIONS(2530), + [anon_sym_SEMI_SEMI] = ACTIONS(2528), + [anon_sym_PIPE_AMP] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_GT] = ACTIONS(2530), + [anon_sym_GT_GT] = ACTIONS(2528), + [anon_sym_AMP_GT] = ACTIONS(2530), + [anon_sym_AMP_GT_GT] = ACTIONS(2528), + [anon_sym_LT_AMP] = ACTIONS(2528), + [anon_sym_GT_AMP] = ACTIONS(2528), + [anon_sym_LT_LT] = ACTIONS(2530), + [anon_sym_LT_LT_DASH] = ACTIONS(2528), + [anon_sym_LT_LT_LT] = ACTIONS(2528), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2530), + }, + [1833] = { + [aux_sym_concatenation_repeat1] = STATE(2456), + [sym__simple_heredoc_body] = ACTIONS(2532), + [sym__heredoc_body_beginning] = ACTIONS(2532), + [sym_file_descriptor] = ACTIONS(2532), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_SEMI_SEMI] = ACTIONS(2532), + [anon_sym_PIPE_AMP] = ACTIONS(2532), + [anon_sym_AMP_AMP] = ACTIONS(2532), + [anon_sym_PIPE_PIPE] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_AMP_GT] = ACTIONS(2534), + [anon_sym_AMP_GT_GT] = ACTIONS(2532), + [anon_sym_LT_AMP] = ACTIONS(2532), + [anon_sym_GT_AMP] = ACTIONS(2532), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_LT_LT_DASH] = ACTIONS(2532), + [anon_sym_LT_LT_LT] = ACTIONS(2532), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2534), + }, + [1834] = { + [sym_file_descriptor] = ACTIONS(2536), + [sym_variable_name] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_LPAREN_LPAREN] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2540), + [anon_sym_typeset] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_readonly] = ACTIONS(2540), + [anon_sym_local] = ACTIONS(2540), + [anon_sym_unset] = ACTIONS(2540), + [anon_sym_unsetenv] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_GT] = ACTIONS(2540), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_AMP_GT] = ACTIONS(2540), + [anon_sym_AMP_GT_GT] = ACTIONS(2536), + [anon_sym_LT_AMP] = ACTIONS(2536), + [anon_sym_GT_AMP] = ACTIONS(2536), + [sym__special_characters] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2536), + [anon_sym_DOLLAR] = ACTIONS(2540), + [sym_raw_string] = ACTIONS(2536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2536), + [anon_sym_BQUOTE] = ACTIONS(2536), + [anon_sym_LT_LPAREN] = ACTIONS(2536), + [anon_sym_GT_LPAREN] = ACTIONS(2536), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2540), + }, + [1835] = { + [sym_file_redirect] = STATE(1835), + [sym_heredoc_redirect] = STATE(1835), + [sym_herestring_redirect] = STATE(1835), + [aux_sym_redirected_statement_repeat1] = STATE(1835), + [sym__simple_heredoc_body] = ACTIONS(2542), + [sym__heredoc_body_beginning] = ACTIONS(2542), + [sym_file_descriptor] = ACTIONS(5664), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_SEMI_SEMI] = ACTIONS(2542), + [anon_sym_PIPE_AMP] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(5667), + [anon_sym_GT] = ACTIONS(5667), + [anon_sym_GT_GT] = ACTIONS(5670), + [anon_sym_AMP_GT] = ACTIONS(5667), + [anon_sym_AMP_GT_GT] = ACTIONS(5670), + [anon_sym_LT_AMP] = ACTIONS(5670), + [anon_sym_GT_AMP] = ACTIONS(5670), + [anon_sym_LT_LT] = ACTIONS(2555), + [anon_sym_LT_LT_DASH] = ACTIONS(2558), + [anon_sym_LT_LT_LT] = ACTIONS(5673), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2547), + }, + [1836] = { + [sym_concatenation] = STATE(1190), + [sym_string] = STATE(612), + [sym_simple_expansion] = STATE(612), + [sym_string_expansion] = STATE(612), + [sym_expansion] = STATE(612), + [sym_command_substitution] = STATE(612), + [sym_process_substitution] = STATE(612), + [aux_sym_command_repeat2] = STATE(1190), + [sym__simple_heredoc_body] = ACTIONS(2628), + [sym__heredoc_body_beginning] = ACTIONS(2628), + [sym_file_descriptor] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym_PIPE] = ACTIONS(2630), + [anon_sym_SEMI_SEMI] = ACTIONS(2628), + [anon_sym_PIPE_AMP] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_GT] = ACTIONS(2630), + [anon_sym_GT_GT] = ACTIONS(2628), + [anon_sym_AMP_GT] = ACTIONS(2630), + [anon_sym_AMP_GT_GT] = ACTIONS(2628), + [anon_sym_LT_AMP] = ACTIONS(2628), + [anon_sym_GT_AMP] = ACTIONS(2628), + [anon_sym_LT_LT] = ACTIONS(2630), + [anon_sym_LT_LT_DASH] = ACTIONS(2628), + [anon_sym_LT_LT_LT] = ACTIONS(2628), + [sym__special_characters] = ACTIONS(1181), [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_DOLLAR] = ACTIONS(45), - [sym_raw_string] = ACTIONS(107), + [sym_raw_string] = ACTIONS(1183), [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), - }, - [2316] = { - [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(5632), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5634), - [anon_sym_SEMI_SEMI] = ACTIONS(5636), - [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(5636), - [anon_sym_AMP] = ACTIONS(5632), - }, - [2317] = { - [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(5632), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5634), - [anon_sym_SEMI_SEMI] = ACTIONS(5636), - [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(5636), - [anon_sym_AMP] = ACTIONS(5632), - }, - [2318] = { - [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), - }, - [2319] = { - [sym_variable_assignment] = STATE(2319), - [sym_subscript] = STATE(2157), - [sym_concatenation] = STATE(2319), - [sym_string] = STATE(2152), - [sym_simple_expansion] = STATE(2152), - [sym_string_expansion] = STATE(2152), - [sym_expansion] = STATE(2152), - [sym_command_substitution] = STATE(2152), - [sym_process_substitution] = STATE(2152), - [aux_sym_declaration_command_repeat1] = STATE(2319), - [sym__simple_heredoc_body] = ACTIONS(1563), - [sym__heredoc_body_beginning] = ACTIONS(1563), - [sym_file_descriptor] = ACTIONS(1563), - [sym_variable_name] = ACTIONS(5638), - [anon_sym_SEMI] = ACTIONS(1568), - [anon_sym_esac] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_SEMI_SEMI] = ACTIONS(1563), - [anon_sym_PIPE_AMP] = ACTIONS(1563), - [anon_sym_AMP_AMP] = ACTIONS(1563), - [anon_sym_PIPE_PIPE] = ACTIONS(1563), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_GT_GT] = ACTIONS(1563), - [anon_sym_AMP_GT] = ACTIONS(1568), - [anon_sym_AMP_GT_GT] = ACTIONS(1563), - [anon_sym_LT_AMP] = ACTIONS(1563), - [anon_sym_GT_AMP] = ACTIONS(1563), - [anon_sym_LT_LT] = ACTIONS(1568), - [anon_sym_LT_LT_DASH] = ACTIONS(1563), - [anon_sym_LT_LT_LT] = ACTIONS(1563), - [sym__special_characters] = ACTIONS(5641), - [anon_sym_DQUOTE] = ACTIONS(5644), - [anon_sym_DOLLAR] = ACTIONS(5647), - [sym_raw_string] = ACTIONS(5650), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5653), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5656), - [anon_sym_BQUOTE] = ACTIONS(5659), - [anon_sym_LT_LPAREN] = ACTIONS(5662), - [anon_sym_GT_LPAREN] = ACTIONS(5662), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5665), - [sym_word] = ACTIONS(5668), - [anon_sym_LF] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1568), - }, - [2320] = { - [sym_string] = STATE(2484), - [sym_simple_expansion] = STATE(2484), - [sym_string_expansion] = STATE(2484), - [sym_expansion] = STATE(2484), - [sym_command_substitution] = STATE(2484), - [sym_process_substitution] = STATE(2484), - [sym__special_characters] = ACTIONS(5671), - [anon_sym_DQUOTE] = ACTIONS(5037), - [anon_sym_DOLLAR] = ACTIONS(5039), - [sym_raw_string] = ACTIONS(5671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5045), - [anon_sym_BQUOTE] = ACTIONS(5047), - [anon_sym_LT_LPAREN] = ACTIONS(5049), - [anon_sym_GT_LPAREN] = ACTIONS(5049), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5671), - }, - [2321] = { - [aux_sym_concatenation_repeat1] = STATE(2485), - [sym__simple_heredoc_body] = ACTIONS(779), - [sym__heredoc_body_beginning] = ACTIONS(779), - [sym_file_descriptor] = ACTIONS(779), - [sym__concat] = ACTIONS(5368), - [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), - }, - [2322] = { - [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), - }, - [2323] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(5673), - [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), - }, - [2324] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(455), - [anon_sym_DQUOTE] = ACTIONS(5673), - [anon_sym_DOLLAR] = ACTIONS(5675), - [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), - }, - [2325] = { - [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), - }, - [2326] = { - [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), - }, - [2327] = { - [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), - }, - [2328] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(5677), - [sym_comment] = ACTIONS(57), - }, - [2329] = { - [sym_subscript] = STATE(2491), - [sym_variable_name] = ACTIONS(5679), - [anon_sym_DASH] = ACTIONS(5681), - [anon_sym_DOLLAR] = ACTIONS(5681), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5683), - [anon_sym_STAR] = ACTIONS(5685), - [anon_sym_AT] = ACTIONS(5685), - [anon_sym_QMARK] = ACTIONS(5685), - [anon_sym_0] = ACTIONS(5683), - [anon_sym__] = ACTIONS(5683), - }, - [2330] = { - [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(5687), - [anon_sym_EQ] = ACTIONS(5689), - [anon_sym_DASH] = ACTIONS(5689), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5691), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(5693), - [anon_sym_COLON] = ACTIONS(5689), - [anon_sym_COLON_QMARK] = ACTIONS(5689), - [anon_sym_COLON_DASH] = ACTIONS(5689), - [anon_sym_PERCENT] = ACTIONS(5689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2331] = { - [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), - [anon_sym_RBRACE] = ACTIONS(5695), - [anon_sym_EQ] = ACTIONS(5697), - [anon_sym_DASH] = ACTIONS(5697), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5699), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(5701), - [anon_sym_COLON] = ACTIONS(5697), - [anon_sym_COLON_QMARK] = ACTIONS(5697), - [anon_sym_COLON_DASH] = ACTIONS(5697), - [anon_sym_PERCENT] = ACTIONS(5697), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2332] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2500), - [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(5703), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5705), - [anon_sym_SEMI_SEMI] = ACTIONS(5707), - [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(5707), - [anon_sym_AMP] = ACTIONS(5703), - }, - [2333] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2500), - [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(5703), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5705), - [anon_sym_SEMI_SEMI] = ACTIONS(5707), - [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(5707), - [anon_sym_AMP] = ACTIONS(5703), - }, - [2334] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(2501), - [sym_for_statement] = STATE(2501), - [sym_c_style_for_statement] = STATE(2501), - [sym_while_statement] = STATE(2501), - [sym_if_statement] = STATE(2501), - [sym_case_statement] = STATE(2501), - [sym_function_definition] = STATE(2501), - [sym_compound_statement] = STATE(2501), - [sym_subshell] = STATE(2501), - [sym_pipeline] = STATE(2501), - [sym_list] = STATE(2501), - [sym_negated_command] = STATE(2501), - [sym_test_command] = STATE(2501), - [sym_declaration_command] = STATE(2501), - [sym_unset_command] = STATE(2501), - [sym_command] = STATE(2501), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(2502), - [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), - }, - [2335] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2504), - [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(5709), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(5711), - [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(5705), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5711), - [anon_sym_AMP] = ACTIONS(5709), - }, - [2336] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2504), - [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(5709), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(5711), - [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(5705), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(5711), - [anon_sym_AMP] = ACTIONS(5709), - }, - [2337] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(2505), - [sym_for_statement] = STATE(2505), - [sym_c_style_for_statement] = STATE(2505), - [sym_while_statement] = STATE(2505), - [sym_if_statement] = STATE(2505), - [sym_case_statement] = STATE(2505), - [sym_function_definition] = STATE(2505), - [sym_compound_statement] = STATE(2505), - [sym_subshell] = STATE(2505), - [sym_pipeline] = STATE(2505), - [sym_list] = STATE(2505), - [sym_negated_command] = STATE(2505), - [sym_test_command] = STATE(2505), - [sym_declaration_command] = STATE(2505), - [sym_unset_command] = STATE(2505), - [sym_command] = STATE(2505), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(2506), - [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), - }, - [2338] = { - [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(5713), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5715), - [anon_sym_SEMI_SEMI] = ACTIONS(5717), - [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(5717), - [anon_sym_AMP] = ACTIONS(5713), - }, - [2339] = { - [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(5713), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5715), - [anon_sym_SEMI_SEMI] = ACTIONS(5717), - [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(5717), - [anon_sym_AMP] = ACTIONS(5713), - }, - [2340] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(2510), - [sym_for_statement] = STATE(2510), - [sym_c_style_for_statement] = STATE(2510), - [sym_while_statement] = STATE(2510), - [sym_if_statement] = STATE(2510), - [sym_case_statement] = STATE(2510), - [sym_function_definition] = STATE(2510), - [sym_compound_statement] = STATE(2510), - [sym_subshell] = STATE(2510), - [sym_pipeline] = STATE(2510), - [sym_list] = STATE(2510), - [sym_negated_command] = STATE(2510), - [sym_test_command] = STATE(2510), - [sym_declaration_command] = STATE(2510), - [sym_unset_command] = STATE(2510), - [sym_command] = STATE(2510), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(2511), - [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), - }, - [2341] = { - [sym_concatenation] = STATE(2341), - [sym_string] = STATE(2162), - [sym_simple_expansion] = STATE(2162), - [sym_string_expansion] = STATE(2162), - [sym_expansion] = STATE(2162), - [sym_command_substitution] = STATE(2162), - [sym_process_substitution] = STATE(2162), - [aux_sym_unset_command_repeat1] = STATE(2341), - [sym__simple_heredoc_body] = ACTIONS(1648), - [sym__heredoc_body_beginning] = ACTIONS(1648), - [sym_file_descriptor] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_esac] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_SEMI_SEMI] = ACTIONS(1648), - [anon_sym_PIPE_AMP] = ACTIONS(1648), - [anon_sym_AMP_AMP] = ACTIONS(1648), - [anon_sym_PIPE_PIPE] = ACTIONS(1648), - [anon_sym_LT] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1650), - [anon_sym_GT_GT] = ACTIONS(1648), - [anon_sym_AMP_GT] = ACTIONS(1650), - [anon_sym_AMP_GT_GT] = ACTIONS(1648), - [anon_sym_LT_AMP] = ACTIONS(1648), - [anon_sym_GT_AMP] = ACTIONS(1648), - [anon_sym_LT_LT] = ACTIONS(1650), - [anon_sym_LT_LT_DASH] = ACTIONS(1648), - [anon_sym_LT_LT_LT] = ACTIONS(1648), - [sym__special_characters] = ACTIONS(5719), - [anon_sym_DQUOTE] = ACTIONS(5722), - [anon_sym_DOLLAR] = ACTIONS(5725), - [sym_raw_string] = ACTIONS(5728), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5734), - [anon_sym_BQUOTE] = ACTIONS(5737), - [anon_sym_LT_LPAREN] = ACTIONS(5740), - [anon_sym_GT_LPAREN] = ACTIONS(5740), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5743), - [sym_word] = ACTIONS(5746), - [anon_sym_LF] = ACTIONS(1648), - [anon_sym_AMP] = ACTIONS(1650), - }, - [2342] = { - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_esac] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_EQ_TILDE] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [2343] = { - [aux_sym_concatenation_repeat1] = STATE(2343), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(5749), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_esac] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_EQ_TILDE] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [2344] = { - [sym__simple_heredoc_body] = ACTIONS(1737), - [sym__heredoc_body_beginning] = ACTIONS(1737), - [sym_file_descriptor] = ACTIONS(1737), - [sym__concat] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_esac] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_SEMI_SEMI] = ACTIONS(1737), - [anon_sym_PIPE_AMP] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_EQ_TILDE] = ACTIONS(1739), - [anon_sym_EQ_EQ] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1737), - [anon_sym_AMP_GT] = ACTIONS(1739), - [anon_sym_AMP_GT_GT] = ACTIONS(1737), - [anon_sym_LT_AMP] = ACTIONS(1737), - [anon_sym_GT_AMP] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_LT_LT_DASH] = ACTIONS(1737), - [anon_sym_LT_LT_LT] = ACTIONS(1737), - [sym__special_characters] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1739), - [sym_raw_string] = ACTIONS(1737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1737), - [anon_sym_BQUOTE] = ACTIONS(1737), - [anon_sym_LT_LPAREN] = ACTIONS(1737), - [anon_sym_GT_LPAREN] = ACTIONS(1737), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1739), - [anon_sym_LF] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1739), - }, - [2345] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(5752), - [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), - }, - [2346] = { - [sym_concatenation] = STATE(2516), - [sym_string] = STATE(2515), - [sym_simple_expansion] = STATE(2515), - [sym_string_expansion] = STATE(2515), - [sym_expansion] = STATE(2515), - [sym_command_substitution] = STATE(2515), - [sym_process_substitution] = STATE(2515), - [anon_sym_RBRACE] = ACTIONS(5754), - [sym__special_characters] = ACTIONS(5756), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(5758), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5758), - }, - [2347] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(5760), - [sym_comment] = ACTIONS(57), - }, - [2348] = { - [sym_concatenation] = STATE(2520), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2520), - [anon_sym_RBRACE] = ACTIONS(5762), - [anon_sym_EQ] = ACTIONS(5764), - [anon_sym_DASH] = ACTIONS(5764), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(5768), - [anon_sym_COLON] = ACTIONS(5764), - [anon_sym_COLON_QMARK] = ACTIONS(5764), - [anon_sym_COLON_DASH] = ACTIONS(5764), - [anon_sym_PERCENT] = ACTIONS(5764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2349] = { - [sym_concatenation] = STATE(2522), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2522), - [anon_sym_RBRACE] = ACTIONS(5754), - [anon_sym_EQ] = ACTIONS(5770), - [anon_sym_DASH] = ACTIONS(5770), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(5774), - [anon_sym_COLON] = ACTIONS(5770), - [anon_sym_COLON_QMARK] = ACTIONS(5770), - [anon_sym_COLON_DASH] = ACTIONS(5770), - [anon_sym_PERCENT] = ACTIONS(5770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2350] = { - [sym__simple_heredoc_body] = ACTIONS(1838), - [sym__heredoc_body_beginning] = ACTIONS(1838), - [sym_file_descriptor] = ACTIONS(1838), - [sym__concat] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_esac] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1840), - [anon_sym_SEMI_SEMI] = ACTIONS(1838), - [anon_sym_PIPE_AMP] = ACTIONS(1838), - [anon_sym_AMP_AMP] = ACTIONS(1838), - [anon_sym_PIPE_PIPE] = ACTIONS(1838), - [anon_sym_EQ_TILDE] = ACTIONS(1840), - [anon_sym_EQ_EQ] = ACTIONS(1840), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_GT_GT] = ACTIONS(1838), - [anon_sym_AMP_GT] = ACTIONS(1840), - [anon_sym_AMP_GT_GT] = ACTIONS(1838), - [anon_sym_LT_AMP] = ACTIONS(1838), - [anon_sym_GT_AMP] = ACTIONS(1838), - [anon_sym_LT_LT] = ACTIONS(1840), - [anon_sym_LT_LT_DASH] = ACTIONS(1838), - [anon_sym_LT_LT_LT] = ACTIONS(1838), - [sym__special_characters] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1840), - [sym_raw_string] = ACTIONS(1838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_LT_LPAREN] = ACTIONS(1838), - [anon_sym_GT_LPAREN] = ACTIONS(1838), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1840), - [anon_sym_LF] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1840), - }, - [2351] = { - [sym_concatenation] = STATE(2525), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2525), - [sym_regex] = ACTIONS(5776), - [anon_sym_RBRACE] = ACTIONS(5778), - [anon_sym_EQ] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(5780), - [anon_sym_COLON_QMARK] = ACTIONS(5780), - [anon_sym_COLON_DASH] = ACTIONS(5780), - [anon_sym_PERCENT] = ACTIONS(5780), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2352] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5778), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2353] = { - [sym__simple_heredoc_body] = ACTIONS(1886), - [sym__heredoc_body_beginning] = ACTIONS(1886), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_esac] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_EQ_TILDE] = ACTIONS(1888), - [anon_sym_EQ_EQ] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1886), - [anon_sym_LT_LT_LT] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1888), - }, - [2354] = { - [sym_concatenation] = STATE(2522), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2522), - [sym_regex] = ACTIONS(5784), - [anon_sym_RBRACE] = ACTIONS(5754), - [anon_sym_EQ] = ACTIONS(5770), - [anon_sym_DASH] = ACTIONS(5770), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(5770), - [anon_sym_COLON_QMARK] = ACTIONS(5770), - [anon_sym_COLON_DASH] = ACTIONS(5770), - [anon_sym_PERCENT] = ACTIONS(5770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2355] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5754), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2356] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(5786), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [2357] = { - [sym__simple_heredoc_body] = ACTIONS(1894), - [sym__heredoc_body_beginning] = ACTIONS(1894), - [sym_file_descriptor] = ACTIONS(1894), - [sym__concat] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_esac] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_SEMI_SEMI] = ACTIONS(1894), - [anon_sym_PIPE_AMP] = ACTIONS(1894), - [anon_sym_AMP_AMP] = ACTIONS(1894), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_EQ_TILDE] = ACTIONS(1896), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_GT_GT] = ACTIONS(1894), - [anon_sym_AMP_GT] = ACTIONS(1896), - [anon_sym_AMP_GT_GT] = ACTIONS(1894), - [anon_sym_LT_AMP] = ACTIONS(1894), - [anon_sym_GT_AMP] = ACTIONS(1894), - [anon_sym_LT_LT] = ACTIONS(1896), - [anon_sym_LT_LT_DASH] = ACTIONS(1894), - [anon_sym_LT_LT_LT] = ACTIONS(1894), - [sym__special_characters] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1896), - [sym_raw_string] = ACTIONS(1894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), - [anon_sym_BQUOTE] = ACTIONS(1894), - [anon_sym_LT_LPAREN] = ACTIONS(1894), - [anon_sym_GT_LPAREN] = ACTIONS(1894), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1896), - [anon_sym_LF] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1896), - }, - [2358] = { - [anon_sym_SEMI] = ACTIONS(5788), - [anon_sym_RPAREN] = ACTIONS(5786), - [anon_sym_SEMI_SEMI] = ACTIONS(5790), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5790), - [anon_sym_AMP] = ACTIONS(5790), - }, - [2359] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2530), - [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(5792), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5786), - [anon_sym_SEMI_SEMI] = ACTIONS(5794), - [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(5794), - [anon_sym_AMP] = ACTIONS(5792), - }, - [2360] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2530), - [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(5792), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5786), - [anon_sym_SEMI_SEMI] = ACTIONS(5794), - [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(5794), - [anon_sym_AMP] = ACTIONS(5792), - }, - [2361] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(5786), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [2362] = { - [anon_sym_SEMI] = ACTIONS(5796), - [anon_sym_SEMI_SEMI] = ACTIONS(5798), - [anon_sym_BQUOTE] = ACTIONS(5786), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5798), - [anon_sym_AMP] = ACTIONS(5798), - }, - [2363] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2533), - [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(5800), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(5802), - [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(5786), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5802), - [anon_sym_AMP] = ACTIONS(5800), - }, - [2364] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2533), - [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(5800), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(5802), - [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(5786), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(5802), - [anon_sym_AMP] = ACTIONS(5800), - }, - [2365] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(5804), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [2366] = { - [sym__simple_heredoc_body] = ACTIONS(1928), - [sym__heredoc_body_beginning] = ACTIONS(1928), - [sym_file_descriptor] = ACTIONS(1928), - [sym__concat] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_esac] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_EQ_TILDE] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_GT_GT] = ACTIONS(1928), - [anon_sym_AMP_GT] = ACTIONS(1930), - [anon_sym_AMP_GT_GT] = ACTIONS(1928), - [anon_sym_LT_AMP] = ACTIONS(1928), - [anon_sym_GT_AMP] = ACTIONS(1928), - [anon_sym_LT_LT] = ACTIONS(1930), - [anon_sym_LT_LT_DASH] = ACTIONS(1928), - [anon_sym_LT_LT_LT] = ACTIONS(1928), - [sym__special_characters] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1928), - [anon_sym_DOLLAR] = ACTIONS(1930), - [sym_raw_string] = ACTIONS(1928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), - [anon_sym_BQUOTE] = ACTIONS(1928), - [anon_sym_LT_LPAREN] = ACTIONS(1928), - [anon_sym_GT_LPAREN] = ACTIONS(1928), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1930), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), - }, - [2367] = { - [anon_sym_SEMI] = ACTIONS(5806), - [anon_sym_RPAREN] = ACTIONS(5804), - [anon_sym_SEMI_SEMI] = ACTIONS(5808), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5808), - [anon_sym_AMP] = ACTIONS(5808), - }, - [2368] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2537), - [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(5810), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5804), - [anon_sym_SEMI_SEMI] = ACTIONS(5812), - [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(5812), - [anon_sym_AMP] = ACTIONS(5810), - }, - [2369] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2537), - [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(5810), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5804), - [anon_sym_SEMI_SEMI] = ACTIONS(5812), - [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(5812), - [anon_sym_AMP] = ACTIONS(5810), - }, - [2370] = { - [sym_concatenation] = STATE(983), - [sym_string] = STATE(2539), - [sym_simple_expansion] = STATE(2539), - [sym_string_expansion] = STATE(2539), - [sym_expansion] = STATE(2539), - [sym_command_substitution] = STATE(2539), - [sym_process_substitution] = STATE(2539), - [sym__special_characters] = ACTIONS(5814), - [anon_sym_DQUOTE] = ACTIONS(5454), - [anon_sym_DOLLAR] = ACTIONS(5456), - [sym_raw_string] = ACTIONS(5816), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5460), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5462), - [anon_sym_BQUOTE] = ACTIONS(5464), - [anon_sym_LT_LPAREN] = ACTIONS(5466), - [anon_sym_GT_LPAREN] = ACTIONS(5466), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5816), - }, - [2371] = { - [sym_file_redirect] = STATE(2197), - [sym_heredoc_redirect] = STATE(2197), - [sym_herestring_redirect] = STATE(2197), - [aux_sym_redirected_statement_repeat1] = STATE(2197), - [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(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1968), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [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), - }, - [2372] = { - [sym_file_redirect] = STATE(2197), - [sym_heredoc_redirect] = STATE(2197), - [sym_herestring_redirect] = STATE(2197), - [aux_sym_redirected_statement_repeat1] = STATE(2197), - [sym__simple_heredoc_body] = ACTIONS(1968), - [sym__heredoc_body_beginning] = ACTIONS(1968), - [sym_file_descriptor] = ACTIONS(1968), - [sym_variable_name] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_esac] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1968), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [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__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), - }, - [2373] = { - [sym_file_redirect] = STATE(2197), - [sym_heredoc_redirect] = STATE(2197), - [sym_herestring_redirect] = STATE(2197), - [aux_sym_redirected_statement_repeat1] = STATE(2197), - [sym__simple_heredoc_body] = ACTIONS(1972), - [sym__heredoc_body_beginning] = ACTIONS(1972), - [sym_file_descriptor] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_esac] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(5089), - [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), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1974), - }, - [2374] = { - [sym_file_redirect] = STATE(2197), - [sym_heredoc_redirect] = STATE(2197), - [sym_herestring_redirect] = STATE(2197), - [aux_sym_redirected_statement_repeat1] = STATE(2197), - [sym__simple_heredoc_body] = ACTIONS(1972), - [sym__heredoc_body_beginning] = ACTIONS(1972), - [sym_file_descriptor] = ACTIONS(339), - [sym_variable_name] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_esac] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(5089), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [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(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1972), - [anon_sym_LT_LT_LT] = ACTIONS(1972), - [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(1972), - [anon_sym_AMP] = ACTIONS(1974), - }, - [2375] = { - [aux_sym_concatenation_repeat1] = STATE(2541), - [sym__simple_heredoc_body] = ACTIONS(745), - [sym__heredoc_body_beginning] = ACTIONS(745), - [sym_file_descriptor] = ACTIONS(745), - [sym__concat] = ACTIONS(5818), - [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), - }, - [2376] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(2544), - [anon_sym_DQUOTE] = ACTIONS(5820), - [anon_sym_DOLLAR] = ACTIONS(5822), - [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), - }, - [2377] = { - [sym_string] = STATE(2546), - [anon_sym_DASH] = ACTIONS(5824), - [anon_sym_DQUOTE] = ACTIONS(5454), - [anon_sym_DOLLAR] = ACTIONS(5824), - [sym_raw_string] = ACTIONS(5826), - [anon_sym_POUND] = ACTIONS(5824), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5828), - [anon_sym_STAR] = ACTIONS(5830), - [anon_sym_AT] = ACTIONS(5830), - [anon_sym_QMARK] = ACTIONS(5830), - [anon_sym_0] = ACTIONS(5828), - [anon_sym__] = ACTIONS(5828), - }, - [2378] = { - [aux_sym_concatenation_repeat1] = STATE(2541), - [sym__simple_heredoc_body] = ACTIONS(763), - [sym__heredoc_body_beginning] = ACTIONS(763), - [sym_file_descriptor] = ACTIONS(763), - [sym__concat] = ACTIONS(5818), - [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), - }, - [2379] = { - [sym_subscript] = STATE(2551), - [sym_variable_name] = ACTIONS(5832), - [anon_sym_BANG] = ACTIONS(5834), - [anon_sym_DASH] = ACTIONS(5836), - [anon_sym_DOLLAR] = ACTIONS(5836), - [anon_sym_POUND] = ACTIONS(5834), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5838), - [anon_sym_STAR] = ACTIONS(5840), - [anon_sym_AT] = ACTIONS(5840), - [anon_sym_QMARK] = ACTIONS(5840), - [anon_sym_0] = ACTIONS(5838), - [anon_sym__] = ACTIONS(5838), - }, - [2380] = { - [sym__terminated_statement] = STATE(2554), - [sym_redirected_statement] = STATE(2552), - [sym_for_statement] = STATE(2552), - [sym_c_style_for_statement] = STATE(2552), - [sym_while_statement] = STATE(2552), - [sym_if_statement] = STATE(2552), - [sym_case_statement] = STATE(2552), - [sym_function_definition] = STATE(2552), - [sym_compound_statement] = STATE(2552), - [sym_subshell] = STATE(2552), - [sym_pipeline] = STATE(2552), - [sym_list] = STATE(2552), - [sym_negated_command] = STATE(2552), - [sym_test_command] = STATE(2552), - [sym_declaration_command] = STATE(2552), - [sym_unset_command] = STATE(2552), - [sym_command] = STATE(2552), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(2553), - [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(2554), - [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), - }, - [2381] = { - [sym__terminated_statement] = STATE(2557), - [sym_redirected_statement] = STATE(2555), - [sym_for_statement] = STATE(2555), - [sym_c_style_for_statement] = STATE(2555), - [sym_while_statement] = STATE(2555), - [sym_if_statement] = STATE(2555), - [sym_case_statement] = STATE(2555), - [sym_function_definition] = STATE(2555), - [sym_compound_statement] = STATE(2555), - [sym_subshell] = STATE(2555), - [sym_pipeline] = STATE(2555), - [sym_list] = STATE(2555), - [sym_negated_command] = STATE(2555), - [sym_test_command] = STATE(2555), - [sym_declaration_command] = STATE(2555), - [sym_unset_command] = STATE(2555), - [sym_command] = STATE(2555), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(2556), - [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(2557), - [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), - }, - [2382] = { - [sym__terminated_statement] = STATE(2560), - [sym_redirected_statement] = STATE(2558), - [sym_for_statement] = STATE(2558), - [sym_c_style_for_statement] = STATE(2558), - [sym_while_statement] = STATE(2558), - [sym_if_statement] = STATE(2558), - [sym_case_statement] = STATE(2558), - [sym_function_definition] = STATE(2558), - [sym_compound_statement] = STATE(2558), - [sym_subshell] = STATE(2558), - [sym_pipeline] = STATE(2558), - [sym_list] = STATE(2558), - [sym_negated_command] = STATE(2558), - [sym_test_command] = STATE(2558), - [sym_declaration_command] = STATE(2558), - [sym_unset_command] = STATE(2558), - [sym_command] = STATE(2558), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(2559), - [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(2560), - [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), - }, - [2383] = { - [aux_sym_concatenation_repeat1] = STATE(2541), - [sym__simple_heredoc_body] = ACTIONS(1980), - [sym__heredoc_body_beginning] = ACTIONS(1980), - [sym_file_descriptor] = ACTIONS(1980), - [sym__concat] = ACTIONS(5818), - [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), - }, - [2384] = { - [aux_sym_concatenation_repeat1] = STATE(2541), - [sym__simple_heredoc_body] = ACTIONS(1984), - [sym__heredoc_body_beginning] = ACTIONS(1984), - [sym_file_descriptor] = ACTIONS(1984), - [sym__concat] = ACTIONS(5818), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_esac] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_SEMI_SEMI] = ACTIONS(1984), - [anon_sym_PIPE_AMP] = ACTIONS(1984), - [anon_sym_AMP_AMP] = ACTIONS(1984), - [anon_sym_PIPE_PIPE] = ACTIONS(1984), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_GT] = ACTIONS(1986), - [anon_sym_GT_GT] = ACTIONS(1984), - [anon_sym_AMP_GT] = ACTIONS(1986), - [anon_sym_AMP_GT_GT] = ACTIONS(1984), - [anon_sym_LT_AMP] = ACTIONS(1984), - [anon_sym_GT_AMP] = ACTIONS(1984), - [anon_sym_LT_LT] = ACTIONS(1986), - [anon_sym_LT_LT_DASH] = ACTIONS(1984), - [anon_sym_LT_LT_LT] = ACTIONS(1984), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1986), - }, - [2385] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_esac] = ACTIONS(1992), - [anon_sym_SEMI_SEMI] = ACTIONS(1988), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), - }, - [2386] = { - [sym_file_redirect] = STATE(2386), - [sym_heredoc_redirect] = STATE(2386), - [sym_herestring_redirect] = STATE(2386), - [aux_sym_redirected_statement_repeat1] = STATE(2386), - [sym__simple_heredoc_body] = ACTIONS(1994), - [sym__heredoc_body_beginning] = ACTIONS(1994), - [sym_file_descriptor] = ACTIONS(5842), - [anon_sym_SEMI] = ACTIONS(1999), - [anon_sym_esac] = ACTIONS(1994), - [anon_sym_PIPE] = ACTIONS(1999), - [anon_sym_SEMI_SEMI] = ACTIONS(1994), - [anon_sym_PIPE_AMP] = ACTIONS(1994), - [anon_sym_AMP_AMP] = ACTIONS(1994), - [anon_sym_PIPE_PIPE] = ACTIONS(1994), - [anon_sym_LT] = ACTIONS(5845), - [anon_sym_GT] = ACTIONS(5845), - [anon_sym_GT_GT] = ACTIONS(5848), - [anon_sym_AMP_GT] = ACTIONS(5845), - [anon_sym_AMP_GT_GT] = ACTIONS(5848), - [anon_sym_LT_AMP] = ACTIONS(5848), - [anon_sym_GT_AMP] = ACTIONS(5848), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_LT_LT_DASH] = ACTIONS(2010), - [anon_sym_LT_LT_LT] = ACTIONS(5851), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1999), - }, - [2387] = { - [sym__simple_heredoc_body] = ACTIONS(2016), - [sym__heredoc_body_beginning] = ACTIONS(2016), - [sym_file_descriptor] = ACTIONS(2016), - [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), - }, - [2388] = { - [aux_sym_concatenation_repeat1] = STATE(2169), - [sym__simple_heredoc_body] = ACTIONS(2020), - [sym__heredoc_body_beginning] = ACTIONS(2020), - [sym_file_descriptor] = ACTIONS(2020), - [sym__concat] = ACTIONS(5055), - [anon_sym_SEMI] = ACTIONS(2022), - [anon_sym_esac] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_SEMI_SEMI] = ACTIONS(2020), - [anon_sym_PIPE_AMP] = ACTIONS(2020), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_EQ_TILDE] = ACTIONS(2022), - [anon_sym_EQ_EQ] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(2022), - [anon_sym_GT] = ACTIONS(2022), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_AMP_GT] = ACTIONS(2022), - [anon_sym_AMP_GT_GT] = ACTIONS(2020), - [anon_sym_LT_AMP] = ACTIONS(2020), - [anon_sym_GT_AMP] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2022), - [anon_sym_LT_LT_DASH] = ACTIONS(2020), - [anon_sym_LT_LT_LT] = ACTIONS(2020), - [sym__special_characters] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_DOLLAR] = ACTIONS(2022), - [sym_raw_string] = ACTIONS(2020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2020), - [anon_sym_BQUOTE] = ACTIONS(2020), - [anon_sym_LT_LPAREN] = ACTIONS(2020), - [anon_sym_GT_LPAREN] = ACTIONS(2020), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2022), - [anon_sym_LF] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2022), - }, - [2389] = { - [aux_sym_concatenation_repeat1] = STATE(2169), - [sym__simple_heredoc_body] = ACTIONS(2016), - [sym__heredoc_body_beginning] = ACTIONS(2016), - [sym_file_descriptor] = ACTIONS(2016), - [sym__concat] = ACTIONS(5055), - [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), - }, - [2390] = { - [sym_concatenation] = STATE(2390), - [sym_string] = STATE(2200), - [sym_simple_expansion] = STATE(2200), - [sym_string_expansion] = STATE(2200), - [sym_expansion] = STATE(2200), - [sym_command_substitution] = STATE(2200), - [sym_process_substitution] = STATE(2200), - [aux_sym_command_repeat2] = STATE(2390), - [sym__simple_heredoc_body] = ACTIONS(2016), - [sym__heredoc_body_beginning] = ACTIONS(2016), - [sym_file_descriptor] = ACTIONS(2016), - [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(5854), - [anon_sym_EQ_EQ] = ACTIONS(5854), - [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(5857), - [anon_sym_DQUOTE] = ACTIONS(5860), - [anon_sym_DOLLAR] = ACTIONS(5863), - [sym_raw_string] = ACTIONS(5866), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5869), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5872), - [anon_sym_BQUOTE] = ACTIONS(5875), - [anon_sym_LT_LPAREN] = ACTIONS(5878), - [anon_sym_GT_LPAREN] = ACTIONS(5878), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5881), - [anon_sym_LF] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2018), - }, - [2391] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_esac] = ACTIONS(5884), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(5886), - [anon_sym_DQUOTE] = ACTIONS(5888), - [anon_sym_DOLLAR] = ACTIONS(5886), - [sym_raw_string] = ACTIONS(5888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5888), - [anon_sym_BQUOTE] = ACTIONS(5888), - [anon_sym_LT_LPAREN] = ACTIONS(5888), - [anon_sym_GT_LPAREN] = ACTIONS(5888), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5886), - }, - [2392] = { - [sym_file_redirect] = STATE(276), - [sym_heredoc_redirect] = STATE(276), - [sym_heredoc_body] = STATE(2196), - [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(5081), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(5099), - [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(5099), - [anon_sym_AMP] = ACTIONS(5081), - }, - [2393] = { - [sym_file_redirect] = STATE(276), - [sym_heredoc_redirect] = STATE(276), - [sym_heredoc_body] = STATE(2196), - [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(5081), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(5099), - [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(5099), - [anon_sym_AMP] = ACTIONS(5081), - }, - [2394] = { - [sym_concatenation] = STATE(2390), - [sym_string] = STATE(2200), - [sym_simple_expansion] = STATE(2200), - [sym_string_expansion] = STATE(2200), - [sym_expansion] = STATE(2200), - [sym_command_substitution] = STATE(2200), - [sym_process_substitution] = STATE(2200), - [aux_sym_command_repeat2] = STATE(2390), - [sym__simple_heredoc_body] = ACTIONS(2062), - [sym__heredoc_body_beginning] = ACTIONS(2062), - [sym_file_descriptor] = ACTIONS(2062), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_esac] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_SEMI_SEMI] = ACTIONS(2062), - [anon_sym_PIPE_AMP] = ACTIONS(2062), - [anon_sym_AMP_AMP] = ACTIONS(2062), - [anon_sym_PIPE_PIPE] = ACTIONS(2062), - [anon_sym_EQ_TILDE] = ACTIONS(5101), - [anon_sym_EQ_EQ] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_GT_GT] = ACTIONS(2062), - [anon_sym_AMP_GT] = ACTIONS(2064), - [anon_sym_AMP_GT_GT] = ACTIONS(2062), - [anon_sym_LT_AMP] = ACTIONS(2062), - [anon_sym_GT_AMP] = ACTIONS(2062), - [anon_sym_LT_LT] = ACTIONS(2064), - [anon_sym_LT_LT_DASH] = ACTIONS(2062), - [anon_sym_LT_LT_LT] = ACTIONS(2062), - [sym__special_characters] = ACTIONS(5103), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4472), - [sym_raw_string] = ACTIONS(5105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), - [anon_sym_BQUOTE] = ACTIONS(4480), - [anon_sym_LT_LPAREN] = ACTIONS(4482), - [anon_sym_GT_LPAREN] = ACTIONS(4482), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5107), - [anon_sym_LF] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2064), - }, - [2395] = { - [anon_sym_esac] = ACTIONS(5884), - [sym__special_characters] = ACTIONS(5888), - [anon_sym_DQUOTE] = ACTIONS(5888), - [anon_sym_DOLLAR] = ACTIONS(5886), - [sym_raw_string] = ACTIONS(5888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5888), - [anon_sym_BQUOTE] = ACTIONS(5888), - [anon_sym_LT_LPAREN] = ACTIONS(5888), - [anon_sym_GT_LPAREN] = ACTIONS(5888), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5886), - }, - [2396] = { - [sym_file_redirect] = STATE(2197), - [sym_heredoc_redirect] = STATE(2197), - [sym_heredoc_body] = STATE(2196), - [sym_herestring_redirect] = STATE(2197), - [aux_sym_redirected_statement_repeat1] = STATE(2197), - [sym__simple_heredoc_body] = ACTIONS(299), - [sym__heredoc_body_beginning] = ACTIONS(301), - [sym_file_descriptor] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5081), - [anon_sym_esac] = ACTIONS(5890), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_SEMI_SEMI] = ACTIONS(5892), - [anon_sym_PIPE_AMP] = ACTIONS(5089), - [anon_sym_AMP_AMP] = ACTIONS(5091), - [anon_sym_PIPE_PIPE] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_GT_GT] = ACTIONS(5095), - [anon_sym_AMP_GT] = ACTIONS(5093), - [anon_sym_AMP_GT_GT] = ACTIONS(5095), - [anon_sym_LT_AMP] = ACTIONS(5095), - [anon_sym_GT_AMP] = ACTIONS(5095), - [anon_sym_LT_LT] = ACTIONS(321), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(5097), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5081), - }, - [2397] = { - [sym_file_redirect] = STATE(2197), - [sym_heredoc_redirect] = STATE(2197), - [sym_heredoc_body] = STATE(2196), - [sym_herestring_redirect] = STATE(2197), - [aux_sym_redirected_statement_repeat1] = STATE(2197), - [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(5081), - [anon_sym_esac] = ACTIONS(5884), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_SEMI_SEMI] = ACTIONS(5892), - [anon_sym_PIPE_AMP] = ACTIONS(5089), - [anon_sym_AMP_AMP] = ACTIONS(5091), - [anon_sym_PIPE_PIPE] = ACTIONS(5091), - [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(5097), - [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(5099), - [anon_sym_AMP] = ACTIONS(5081), - }, - [2398] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_esac] = ACTIONS(5894), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(5896), - [anon_sym_DQUOTE] = ACTIONS(5898), - [anon_sym_DOLLAR] = ACTIONS(5896), - [sym_raw_string] = ACTIONS(5898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5898), - [anon_sym_BQUOTE] = ACTIONS(5898), - [anon_sym_LT_LPAREN] = ACTIONS(5898), - [anon_sym_GT_LPAREN] = ACTIONS(5898), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5896), - }, - [2399] = { - [anon_sym_esac] = ACTIONS(5894), - [sym__special_characters] = ACTIONS(5898), - [anon_sym_DQUOTE] = ACTIONS(5898), - [anon_sym_DOLLAR] = ACTIONS(5896), - [sym_raw_string] = ACTIONS(5898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5898), - [anon_sym_BQUOTE] = ACTIONS(5898), - [anon_sym_LT_LPAREN] = ACTIONS(5898), - [anon_sym_GT_LPAREN] = ACTIONS(5898), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5896), - }, - [2400] = { - [sym_file_redirect] = STATE(2197), - [sym_heredoc_redirect] = STATE(2197), - [sym_heredoc_body] = STATE(2196), - [sym_herestring_redirect] = STATE(2197), - [aux_sym_redirected_statement_repeat1] = STATE(2197), - [sym__simple_heredoc_body] = ACTIONS(299), - [sym__heredoc_body_beginning] = ACTIONS(301), - [sym_file_descriptor] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5081), - [anon_sym_esac] = ACTIONS(5900), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_SEMI_SEMI] = ACTIONS(5902), - [anon_sym_PIPE_AMP] = ACTIONS(5089), - [anon_sym_AMP_AMP] = ACTIONS(5091), - [anon_sym_PIPE_PIPE] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_GT_GT] = ACTIONS(5095), - [anon_sym_AMP_GT] = ACTIONS(5093), - [anon_sym_AMP_GT_GT] = ACTIONS(5095), - [anon_sym_LT_AMP] = ACTIONS(5095), - [anon_sym_GT_AMP] = ACTIONS(5095), - [anon_sym_LT_LT] = ACTIONS(321), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(5097), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5081), - }, - [2401] = { - [sym_file_redirect] = STATE(2197), - [sym_heredoc_redirect] = STATE(2197), - [sym_heredoc_body] = STATE(2196), - [sym_herestring_redirect] = STATE(2197), - [aux_sym_redirected_statement_repeat1] = STATE(2197), - [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(5081), - [anon_sym_esac] = ACTIONS(5894), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_SEMI_SEMI] = ACTIONS(5902), - [anon_sym_PIPE_AMP] = ACTIONS(5089), - [anon_sym_AMP_AMP] = ACTIONS(5091), - [anon_sym_PIPE_PIPE] = ACTIONS(5091), - [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(5097), - [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(5099), - [anon_sym_AMP] = ACTIONS(5081), - }, - [2402] = { - [sym__special_characters] = ACTIONS(5009), - [anon_sym_DQUOTE] = ACTIONS(5009), - [anon_sym_DOLLAR] = ACTIONS(5011), - [sym_raw_string] = ACTIONS(5009), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5009), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5009), - [anon_sym_BQUOTE] = ACTIONS(5009), - [anon_sym_LT_LPAREN] = ACTIONS(5009), - [anon_sym_GT_LPAREN] = ACTIONS(5009), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5009), - }, - [2403] = { - [sym_file_redirect] = STATE(276), - [sym_heredoc_redirect] = STATE(276), - [sym_heredoc_body] = STATE(987), - [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(2058), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(5904), - [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(2060), - [anon_sym_AMP] = ACTIONS(2058), - }, - [2404] = { - [sym_file_redirect] = STATE(276), - [sym_heredoc_redirect] = STATE(276), - [sym_heredoc_body] = STATE(987), - [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(2058), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(5904), - [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(2060), - [anon_sym_AMP] = ACTIONS(2058), - }, - [2405] = { - [sym__terminated_statement] = STATE(2567), - [sym_redirected_statement] = STATE(2565), - [sym_for_statement] = STATE(2565), - [sym_c_style_for_statement] = STATE(2565), - [sym_while_statement] = STATE(2565), - [sym_if_statement] = STATE(2565), - [sym_case_statement] = STATE(2565), - [sym_function_definition] = STATE(2565), - [sym_compound_statement] = STATE(2565), - [sym_subshell] = STATE(2565), - [sym_pipeline] = STATE(2565), - [sym_list] = STATE(2565), - [sym_negated_command] = STATE(2565), - [sym_test_command] = STATE(2565), - [sym_declaration_command] = STATE(2565), - [sym_unset_command] = STATE(2565), - [sym_command] = STATE(2565), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(2566), - [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(2567), - [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(5906), - [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), - }, - [2406] = { - [sym__terminated_statement] = STATE(2568), - [sym_redirected_statement] = STATE(2565), - [sym_for_statement] = STATE(2565), - [sym_c_style_for_statement] = STATE(2565), - [sym_while_statement] = STATE(2565), - [sym_if_statement] = STATE(2565), - [sym_case_statement] = STATE(2565), - [sym_function_definition] = STATE(2565), - [sym_compound_statement] = STATE(2565), - [sym_subshell] = STATE(2565), - [sym_pipeline] = STATE(2565), - [sym_list] = STATE(2565), - [sym_negated_command] = STATE(2565), - [sym_test_command] = STATE(2565), - [sym_declaration_command] = STATE(2565), - [sym_unset_command] = STATE(2565), - [sym_command] = STATE(2565), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(2566), - [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(2568), - [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(5906), - [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), - }, - [2407] = { - [sym__special_characters] = ACTIONS(5118), - [anon_sym_DQUOTE] = ACTIONS(5118), - [anon_sym_DOLLAR] = ACTIONS(5120), - [sym_raw_string] = ACTIONS(5118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5118), - [anon_sym_BQUOTE] = ACTIONS(5118), - [anon_sym_LT_LPAREN] = ACTIONS(5118), - [anon_sym_GT_LPAREN] = ACTIONS(5118), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5118), - }, - [2408] = { - [sym_file_redirect] = STATE(276), - [sym_heredoc_redirect] = STATE(276), - [sym_heredoc_body] = STATE(987), - [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(2058), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(5908), - [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(2060), - [anon_sym_AMP] = ACTIONS(2058), - }, - [2409] = { - [sym_file_redirect] = STATE(276), - [sym_heredoc_redirect] = STATE(276), - [sym_heredoc_body] = STATE(987), - [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(2058), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(5908), - [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(2060), - [anon_sym_AMP] = ACTIONS(2058), - }, - [2410] = { - [sym__terminated_statement] = STATE(2567), - [sym_redirected_statement] = STATE(2571), - [sym_for_statement] = STATE(2571), - [sym_c_style_for_statement] = STATE(2571), - [sym_while_statement] = STATE(2571), - [sym_if_statement] = STATE(2571), - [sym_case_statement] = STATE(2571), - [sym_function_definition] = STATE(2571), - [sym_compound_statement] = STATE(2571), - [sym_subshell] = STATE(2571), - [sym_pipeline] = STATE(2571), - [sym_list] = STATE(2571), - [sym_negated_command] = STATE(2571), - [sym_test_command] = STATE(2571), - [sym_declaration_command] = STATE(2571), - [sym_unset_command] = STATE(2571), - [sym_command] = STATE(2571), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(2572), - [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(2567), - [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(5910), - [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), - }, - [2411] = { - [sym__terminated_statement] = STATE(2573), - [sym_redirected_statement] = STATE(2571), - [sym_for_statement] = STATE(2571), - [sym_c_style_for_statement] = STATE(2571), - [sym_while_statement] = STATE(2571), - [sym_if_statement] = STATE(2571), - [sym_case_statement] = STATE(2571), - [sym_function_definition] = STATE(2571), - [sym_compound_statement] = STATE(2571), - [sym_subshell] = STATE(2571), - [sym_pipeline] = STATE(2571), - [sym_list] = STATE(2571), - [sym_negated_command] = STATE(2571), - [sym_test_command] = STATE(2571), - [sym_declaration_command] = STATE(2571), - [sym_unset_command] = STATE(2571), - [sym_command] = STATE(2571), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(2572), - [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(2573), - [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(5910), - [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), - }, - [2412] = { - [sym__concat] = ACTIONS(4725), - [anon_sym_RBRACE] = ACTIONS(4725), - [sym_comment] = ACTIONS(57), - }, - [2413] = { - [sym__concat] = ACTIONS(4729), - [anon_sym_RBRACE] = ACTIONS(4729), - [sym_comment] = ACTIONS(57), - }, - [2414] = { - [sym__concat] = ACTIONS(4733), - [anon_sym_RBRACE] = ACTIONS(4733), - [sym_comment] = ACTIONS(57), - }, - [2415] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5912), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2416] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5914), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2417] = { - [sym__concat] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [sym_comment] = ACTIONS(57), - }, - [2418] = { - [sym__concat] = ACTIONS(4789), - [anon_sym_RBRACE] = ACTIONS(4789), - [sym_comment] = ACTIONS(57), - }, - [2419] = { - [sym__concat] = ACTIONS(4793), - [anon_sym_RBRACE] = ACTIONS(4793), - [sym_comment] = ACTIONS(57), - }, - [2420] = { - [sym__concat] = ACTIONS(5216), - [anon_sym_RBRACE] = ACTIONS(5216), - [anon_sym_EQ] = ACTIONS(5218), - [anon_sym_DASH] = ACTIONS(5218), - [sym__special_characters] = ACTIONS(5218), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5218), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_POUND] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [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(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(5216), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(5218), - }, - [2421] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_RBRACE] = ACTIONS(5220), - [anon_sym_EQ] = ACTIONS(5222), - [anon_sym_DASH] = ACTIONS(5222), - [sym__special_characters] = ACTIONS(5222), - [anon_sym_DQUOTE] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5220), - [anon_sym_POUND] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [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(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [anon_sym_LT_LPAREN] = ACTIONS(5220), - [anon_sym_GT_LPAREN] = ACTIONS(5220), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(5222), - }, - [2422] = { - [sym__heredoc_body_middle] = ACTIONS(5216), - [sym__heredoc_body_end] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5218), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [sym_comment] = ACTIONS(57), - }, - [2423] = { - [sym__heredoc_body_middle] = ACTIONS(5220), - [sym__heredoc_body_end] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [sym_comment] = ACTIONS(57), - }, - [2424] = { - [sym__concat] = ACTIONS(5216), - [anon_sym_RPAREN] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5218), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(5216), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5216), - }, - [2425] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_RPAREN] = ACTIONS(5220), - [sym__special_characters] = ACTIONS(5220), - [anon_sym_DQUOTE] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [anon_sym_LT_LPAREN] = ACTIONS(5220), - [anon_sym_GT_LPAREN] = ACTIONS(5220), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5220), - }, - [2426] = { - [sym__simple_heredoc_body] = ACTIONS(5916), - [sym__heredoc_body_beginning] = ACTIONS(5916), - [sym_file_descriptor] = ACTIONS(5916), - [ts_builtin_sym_end] = ACTIONS(5916), - [anon_sym_SEMI] = ACTIONS(5918), - [anon_sym_esac] = ACTIONS(5916), - [anon_sym_PIPE] = ACTIONS(5918), - [anon_sym_RPAREN] = ACTIONS(5916), - [anon_sym_SEMI_SEMI] = ACTIONS(5916), - [anon_sym_PIPE_AMP] = ACTIONS(5916), - [anon_sym_AMP_AMP] = ACTIONS(5916), - [anon_sym_PIPE_PIPE] = ACTIONS(5916), - [anon_sym_LT] = ACTIONS(5918), - [anon_sym_GT] = ACTIONS(5918), - [anon_sym_GT_GT] = ACTIONS(5916), - [anon_sym_AMP_GT] = ACTIONS(5918), - [anon_sym_AMP_GT_GT] = ACTIONS(5916), - [anon_sym_LT_AMP] = ACTIONS(5916), - [anon_sym_GT_AMP] = ACTIONS(5916), - [anon_sym_LT_LT] = ACTIONS(5918), - [anon_sym_LT_LT_DASH] = ACTIONS(5916), - [anon_sym_LT_LT_LT] = ACTIONS(5916), - [anon_sym_BQUOTE] = ACTIONS(5916), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5916), - [anon_sym_AMP] = ACTIONS(5918), - }, - [2427] = { - [sym__concat] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5218), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5218), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(5216), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5218), - [anon_sym_LF] = ACTIONS(5216), - [anon_sym_AMP] = ACTIONS(5216), - }, - [2428] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_SEMI_SEMI] = ACTIONS(5220), - [sym__special_characters] = ACTIONS(5220), - [anon_sym_DQUOTE] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [anon_sym_LT_LPAREN] = ACTIONS(5220), - [anon_sym_GT_LPAREN] = ACTIONS(5220), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5222), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5220), - }, - [2429] = { - [sym__simple_heredoc_body] = ACTIONS(2080), - [sym__heredoc_body_beginning] = ACTIONS(2080), - [sym_file_descriptor] = ACTIONS(2080), - [sym_variable_name] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_esac] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_SEMI_SEMI] = ACTIONS(2080), - [anon_sym_PIPE_AMP] = ACTIONS(2080), - [anon_sym_AMP_AMP] = ACTIONS(2080), - [anon_sym_PIPE_PIPE] = ACTIONS(2080), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_GT_GT] = ACTIONS(2080), - [anon_sym_AMP_GT] = ACTIONS(2082), - [anon_sym_AMP_GT_GT] = ACTIONS(2080), - [anon_sym_LT_AMP] = ACTIONS(2080), - [anon_sym_GT_AMP] = ACTIONS(2080), - [anon_sym_LT_LT] = ACTIONS(2082), - [anon_sym_LT_LT_DASH] = ACTIONS(2080), - [anon_sym_LT_LT_LT] = ACTIONS(2080), - [sym__special_characters] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [anon_sym_DOLLAR] = ACTIONS(2082), - [sym_raw_string] = ACTIONS(2080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2080), - [anon_sym_BQUOTE] = ACTIONS(2080), - [anon_sym_LT_LPAREN] = ACTIONS(2080), - [anon_sym_GT_LPAREN] = ACTIONS(2080), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2082), - [anon_sym_LF] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2082), - }, - [2430] = { - [sym_concatenation] = STATE(1015), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [aux_sym_for_statement_repeat1] = STATE(1015), - [anon_sym_RPAREN] = ACTIONS(5920), - [sym__special_characters] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_DOLLAR] = ACTIONS(1099), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1109), - [anon_sym_GT_LPAREN] = ACTIONS(1109), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1101), - }, - [2431] = { - [sym_string] = STATE(2577), - [sym_simple_expansion] = STATE(2577), - [sym_string_expansion] = STATE(2577), - [sym_expansion] = STATE(2577), - [sym_command_substitution] = STATE(2577), - [sym_process_substitution] = STATE(2577), - [sym__special_characters] = ACTIONS(5922), - [anon_sym_DQUOTE] = ACTIONS(5326), - [anon_sym_DOLLAR] = ACTIONS(5328), - [sym_raw_string] = ACTIONS(5922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5332), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5334), - [anon_sym_BQUOTE] = ACTIONS(5336), - [anon_sym_LT_LPAREN] = ACTIONS(5338), - [anon_sym_GT_LPAREN] = ACTIONS(5338), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5922), - }, - [2432] = { - [aux_sym_concatenation_repeat1] = STATE(2578), - [sym__simple_heredoc_body] = ACTIONS(779), - [sym__heredoc_body_beginning] = ACTIONS(779), - [sym_file_descriptor] = ACTIONS(779), - [sym__concat] = ACTIONS(5558), - [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), - }, - [2433] = { - [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), - }, - [2434] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(5924), - [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), - }, - [2435] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(455), - [anon_sym_DQUOTE] = ACTIONS(5924), - [anon_sym_DOLLAR] = ACTIONS(5926), - [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), - }, - [2436] = { - [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), - }, - [2437] = { - [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), - }, - [2438] = { - [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), - }, - [2439] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(5928), - [sym_comment] = ACTIONS(57), - }, - [2440] = { - [sym_subscript] = STATE(2584), - [sym_variable_name] = ACTIONS(5930), - [anon_sym_DASH] = ACTIONS(5932), - [anon_sym_DOLLAR] = ACTIONS(5932), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5934), - [anon_sym_STAR] = ACTIONS(5936), - [anon_sym_AT] = ACTIONS(5936), - [anon_sym_QMARK] = ACTIONS(5936), - [anon_sym_0] = ACTIONS(5934), - [anon_sym__] = ACTIONS(5934), - }, - [2441] = { - [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(5938), - [anon_sym_EQ] = ACTIONS(5940), - [anon_sym_DASH] = ACTIONS(5940), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5942), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(5944), - [anon_sym_COLON] = ACTIONS(5940), - [anon_sym_COLON_QMARK] = ACTIONS(5940), - [anon_sym_COLON_DASH] = ACTIONS(5940), - [anon_sym_PERCENT] = ACTIONS(5940), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(2590), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2590), - [anon_sym_RBRACE] = ACTIONS(5946), - [anon_sym_EQ] = ACTIONS(5948), - [anon_sym_DASH] = ACTIONS(5948), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(5952), - [anon_sym_COLON] = ACTIONS(5948), - [anon_sym_COLON_QMARK] = ACTIONS(5948), - [anon_sym_COLON_DASH] = ACTIONS(5948), - [anon_sym_PERCENT] = ACTIONS(5948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2443] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2593), - [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(5954), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5956), - [anon_sym_SEMI_SEMI] = ACTIONS(5958), - [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(5958), - [anon_sym_AMP] = ACTIONS(5954), - }, - [2444] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2593), - [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(5954), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5956), - [anon_sym_SEMI_SEMI] = ACTIONS(5958), - [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(5958), - [anon_sym_AMP] = ACTIONS(5954), - }, - [2445] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(2594), - [sym_for_statement] = STATE(2594), - [sym_c_style_for_statement] = STATE(2594), - [sym_while_statement] = STATE(2594), - [sym_if_statement] = STATE(2594), - [sym_case_statement] = STATE(2594), - [sym_function_definition] = STATE(2594), - [sym_compound_statement] = STATE(2594), - [sym_subshell] = STATE(2594), - [sym_pipeline] = STATE(2594), - [sym_list] = STATE(2594), - [sym_negated_command] = STATE(2594), - [sym_test_command] = STATE(2594), - [sym_declaration_command] = STATE(2594), - [sym_unset_command] = STATE(2594), - [sym_command] = STATE(2594), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(2595), - [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), - }, - [2446] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2597), - [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(5960), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(5962), - [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(5956), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5962), - [anon_sym_AMP] = ACTIONS(5960), - }, - [2447] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2597), - [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(5960), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(5962), - [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(5956), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(5962), - [anon_sym_AMP] = ACTIONS(5960), - }, - [2448] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(2598), - [sym_for_statement] = STATE(2598), - [sym_c_style_for_statement] = STATE(2598), - [sym_while_statement] = STATE(2598), - [sym_if_statement] = STATE(2598), - [sym_case_statement] = STATE(2598), - [sym_function_definition] = STATE(2598), - [sym_compound_statement] = STATE(2598), - [sym_subshell] = STATE(2598), - [sym_pipeline] = STATE(2598), - [sym_list] = STATE(2598), - [sym_negated_command] = STATE(2598), - [sym_test_command] = STATE(2598), - [sym_declaration_command] = STATE(2598), - [sym_unset_command] = STATE(2598), - [sym_command] = STATE(2598), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(2599), - [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), - }, - [2449] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2602), - [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(5964), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5966), - [anon_sym_SEMI_SEMI] = ACTIONS(5968), - [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(5968), - [anon_sym_AMP] = ACTIONS(5964), - }, - [2450] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2602), - [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(5964), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5966), - [anon_sym_SEMI_SEMI] = ACTIONS(5968), - [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(5968), - [anon_sym_AMP] = ACTIONS(5964), - }, - [2451] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(2603), - [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_compound_statement] = 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(83), - [sym_variable_assignment] = STATE(2604), - [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), - }, - [2452] = { - [sym__simple_heredoc_body] = ACTIONS(1089), - [sym__heredoc_body_beginning] = ACTIONS(1089), - [sym_file_descriptor] = ACTIONS(1089), - [sym_variable_name] = ACTIONS(1089), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_esac] = ACTIONS(1091), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_SEMI_SEMI] = ACTIONS(1089), - [anon_sym_PIPE_AMP] = ACTIONS(1089), - [anon_sym_AMP_AMP] = ACTIONS(1089), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1089), - [anon_sym_LT_AMP] = ACTIONS(1089), - [anon_sym_GT_AMP] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_LT_LT_DASH] = ACTIONS(1089), - [anon_sym_LT_LT_LT] = ACTIONS(1089), - [sym__special_characters] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_DOLLAR] = ACTIONS(1091), - [sym_raw_string] = ACTIONS(1089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1089), - [anon_sym_GT_LPAREN] = ACTIONS(1089), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1091), - [sym_word] = ACTIONS(1091), - [anon_sym_LF] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - }, - [2453] = { - [sym_concatenation] = STATE(2606), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [aux_sym_for_statement_repeat1] = STATE(2606), - [anon_sym_RPAREN] = ACTIONS(5970), - [sym__special_characters] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_DOLLAR] = ACTIONS(1099), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1109), - [anon_sym_GT_LPAREN] = ACTIONS(1109), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1101), - }, - [2454] = { - [aux_sym_concatenation_repeat1] = STATE(2299), - [sym__simple_heredoc_body] = ACTIONS(1111), - [sym__heredoc_body_beginning] = ACTIONS(1111), - [sym_file_descriptor] = ACTIONS(1111), - [sym__concat] = ACTIONS(5342), - [sym_variable_name] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1115), - [anon_sym_esac] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(1115), - [anon_sym_SEMI_SEMI] = ACTIONS(1111), - [anon_sym_PIPE_AMP] = ACTIONS(1111), - [anon_sym_AMP_AMP] = ACTIONS(1111), - [anon_sym_PIPE_PIPE] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1115), - [anon_sym_GT] = ACTIONS(1115), - [anon_sym_GT_GT] = ACTIONS(1111), - [anon_sym_AMP_GT] = ACTIONS(1115), - [anon_sym_AMP_GT_GT] = ACTIONS(1111), - [anon_sym_LT_AMP] = ACTIONS(1111), - [anon_sym_GT_AMP] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1115), - [anon_sym_LT_LT_DASH] = ACTIONS(1111), - [anon_sym_LT_LT_LT] = ACTIONS(1111), - [sym__special_characters] = ACTIONS(1111), + [sym_word] = ACTIONS(1185), + [anon_sym_LF] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2630), + }, + [1837] = { + [anon_sym_EQ] = ACTIONS(5676), + [anon_sym_PLUS_EQ] = ACTIONS(5676), + [sym_comment] = ACTIONS(57), + }, + [1838] = { + [anon_sym_EQ] = ACTIONS(5678), + [anon_sym_PLUS_EQ] = ACTIONS(5678), + [sym_comment] = ACTIONS(57), + }, + [1839] = { + [sym__concat] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2292), + }, + [1840] = { + [aux_sym_concatenation_repeat1] = STATE(1840), + [sym__concat] = ACTIONS(5680), + [anon_sym_RPAREN] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2292), + }, + [1841] = { + [sym__concat] = ACTIONS(2299), + [anon_sym_RPAREN] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2299), + }, + [1842] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(5683), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1843] = { + [sym_concatenation] = STATE(2461), + [sym_string] = STATE(2460), + [sym_simple_expansion] = STATE(2460), + [sym_string_expansion] = STATE(2460), + [sym_expansion] = STATE(2460), + [sym_command_substitution] = STATE(2460), + [sym_process_substitution] = STATE(2460), + [anon_sym_RBRACE] = ACTIONS(5685), + [sym__special_characters] = ACTIONS(5687), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5689), + }, + [1844] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(5691), + [sym_comment] = ACTIONS(57), + }, + [1845] = { + [sym_concatenation] = STATE(2465), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2465), + [anon_sym_RBRACE] = ACTIONS(5693), + [anon_sym_EQ] = ACTIONS(5695), + [anon_sym_DASH] = ACTIONS(5695), + [sym__special_characters] = ACTIONS(1109), [anon_sym_DQUOTE] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(1115), - [sym_raw_string] = ACTIONS(1111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1111), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1111), - [anon_sym_BQUOTE] = ACTIONS(1111), - [anon_sym_LT_LPAREN] = ACTIONS(1111), - [anon_sym_GT_LPAREN] = ACTIONS(1111), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1115), - [sym_word] = ACTIONS(1115), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5697), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_COLON] = ACTIONS(5695), + [anon_sym_COLON_QMARK] = ACTIONS(5695), + [anon_sym_COLON_DASH] = ACTIONS(5695), + [anon_sym_PERCENT] = ACTIONS(5695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, - [2455] = { - [aux_sym_concatenation_repeat1] = STATE(2299), + [1846] = { + [sym_concatenation] = STATE(2467), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2467), + [anon_sym_RBRACE] = ACTIONS(5685), + [anon_sym_EQ] = ACTIONS(5701), + [anon_sym_DASH] = ACTIONS(5701), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5705), + [anon_sym_COLON] = ACTIONS(5701), + [anon_sym_COLON_QMARK] = ACTIONS(5701), + [anon_sym_COLON_DASH] = ACTIONS(5701), + [anon_sym_PERCENT] = ACTIONS(5701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1847] = { + [sym__concat] = ACTIONS(2392), + [anon_sym_RPAREN] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2392), + }, + [1848] = { + [sym_concatenation] = STATE(2470), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2470), + [sym_regex] = ACTIONS(5707), + [anon_sym_RBRACE] = ACTIONS(5709), + [anon_sym_EQ] = ACTIONS(5711), + [anon_sym_DASH] = ACTIONS(5711), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5711), + [anon_sym_COLON_QMARK] = ACTIONS(5711), + [anon_sym_COLON_DASH] = ACTIONS(5711), + [anon_sym_PERCENT] = ACTIONS(5711), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1849] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5709), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1850] = { + [sym__concat] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2440), + }, + [1851] = { + [sym_concatenation] = STATE(2467), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2467), + [sym_regex] = ACTIONS(5715), + [anon_sym_RBRACE] = ACTIONS(5685), + [anon_sym_EQ] = ACTIONS(5701), + [anon_sym_DASH] = ACTIONS(5701), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5701), + [anon_sym_COLON_QMARK] = ACTIONS(5701), + [anon_sym_COLON_DASH] = ACTIONS(5701), + [anon_sym_PERCENT] = ACTIONS(5701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1852] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5685), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1853] = { + [sym__concat] = ACTIONS(2446), + [anon_sym_RPAREN] = ACTIONS(2446), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2446), + }, + [1854] = { + [sym__concat] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2484), + }, + [1855] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [sym_variable_name] = ACTIONS(4001), + [ts_builtin_sym_end] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_RPAREN] = ACTIONS(4001), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [1856] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [sym_variable_name] = ACTIONS(4015), + [ts_builtin_sym_end] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_RPAREN] = ACTIONS(4015), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [1857] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5717), + [sym_comment] = ACTIONS(57), + }, + [1858] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5719), + [sym_comment] = ACTIONS(57), + }, + [1859] = { + [anon_sym_RBRACE] = ACTIONS(5719), + [sym_comment] = ACTIONS(57), + }, + [1860] = { + [sym_concatenation] = STATE(2476), + [sym_string] = STATE(2475), + [sym_simple_expansion] = STATE(2475), + [sym_string_expansion] = STATE(2475), + [sym_expansion] = STATE(2475), + [sym_command_substitution] = STATE(2475), + [sym_process_substitution] = STATE(2475), + [anon_sym_RBRACE] = ACTIONS(5719), + [sym__special_characters] = ACTIONS(5721), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5723), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5723), + }, + [1861] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [sym_variable_name] = ACTIONS(4051), + [ts_builtin_sym_end] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_RPAREN] = ACTIONS(4051), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [1862] = { + [sym_concatenation] = STATE(2479), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2479), + [sym_regex] = ACTIONS(5725), + [anon_sym_RBRACE] = ACTIONS(5727), + [anon_sym_EQ] = ACTIONS(5729), + [anon_sym_DASH] = ACTIONS(5729), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5729), + [anon_sym_COLON_QMARK] = ACTIONS(5729), + [anon_sym_COLON_DASH] = ACTIONS(5729), + [anon_sym_PERCENT] = ACTIONS(5729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1863] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5727), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1864] = { + [sym_concatenation] = STATE(2481), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2481), + [sym_regex] = ACTIONS(5733), + [anon_sym_RBRACE] = ACTIONS(5719), + [anon_sym_EQ] = ACTIONS(5735), + [anon_sym_DASH] = ACTIONS(5735), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5735), + [anon_sym_COLON_QMARK] = ACTIONS(5735), + [anon_sym_COLON_DASH] = ACTIONS(5735), + [anon_sym_PERCENT] = ACTIONS(5735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1865] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5719), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1866] = { + [sym_concatenation] = STATE(2483), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2483), + [anon_sym_RBRACE] = ACTIONS(5739), + [anon_sym_EQ] = ACTIONS(5741), + [anon_sym_DASH] = ACTIONS(5741), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5741), + [anon_sym_COLON_QMARK] = ACTIONS(5741), + [anon_sym_COLON_DASH] = ACTIONS(5741), + [anon_sym_PERCENT] = ACTIONS(5741), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1867] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [sym_variable_name] = ACTIONS(4107), + [ts_builtin_sym_end] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_RPAREN] = ACTIONS(4107), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [1868] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5739), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1869] = { + [sym_concatenation] = STATE(2481), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2481), + [anon_sym_RBRACE] = ACTIONS(5719), + [anon_sym_EQ] = ACTIONS(5735), + [anon_sym_DASH] = ACTIONS(5735), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5735), + [anon_sym_COLON_QMARK] = ACTIONS(5735), + [anon_sym_COLON_DASH] = ACTIONS(5735), + [anon_sym_PERCENT] = ACTIONS(5735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1870] = { + [sym_do_group] = STATE(2484), + [sym_compound_statement] = STATE(2484), + [anon_sym_do] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), + }, + [1871] = { + [sym__simple_heredoc_body] = ACTIONS(5745), + [sym__heredoc_body_beginning] = ACTIONS(5745), + [sym_file_descriptor] = ACTIONS(5745), + [ts_builtin_sym_end] = ACTIONS(5745), + [anon_sym_SEMI] = ACTIONS(5747), + [anon_sym_done] = ACTIONS(5745), + [anon_sym_fi] = ACTIONS(5745), + [anon_sym_elif] = ACTIONS(5745), + [anon_sym_else] = ACTIONS(5745), + [anon_sym_esac] = ACTIONS(5745), + [anon_sym_PIPE] = ACTIONS(5747), + [anon_sym_RPAREN] = ACTIONS(5745), + [anon_sym_SEMI_SEMI] = ACTIONS(5745), + [anon_sym_PIPE_AMP] = ACTIONS(5745), + [anon_sym_AMP_AMP] = ACTIONS(5745), + [anon_sym_PIPE_PIPE] = ACTIONS(5745), + [anon_sym_LT] = ACTIONS(5747), + [anon_sym_GT] = ACTIONS(5747), + [anon_sym_GT_GT] = ACTIONS(5745), + [anon_sym_AMP_GT] = ACTIONS(5747), + [anon_sym_AMP_GT_GT] = ACTIONS(5745), + [anon_sym_LT_AMP] = ACTIONS(5745), + [anon_sym_GT_AMP] = ACTIONS(5745), + [anon_sym_LT_LT] = ACTIONS(5747), + [anon_sym_LT_LT_DASH] = ACTIONS(5745), + [anon_sym_LT_LT_LT] = ACTIONS(5745), + [anon_sym_BQUOTE] = ACTIONS(5745), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5745), + [anon_sym_AMP] = ACTIONS(5747), + }, + [1872] = { + [sym_do_group] = STATE(2484), + [sym_compound_statement] = STATE(2484), + [anon_sym_SEMI] = ACTIONS(5749), + [anon_sym_do] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), + }, + [1873] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(5751), + [anon_sym_AMP_AMP] = ACTIONS(553), + [anon_sym_PIPE_PIPE] = ACTIONS(553), + [anon_sym_EQ_TILDE] = ACTIONS(555), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_PLUS_EQ] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_DASH_EQ] = ACTIONS(553), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(553), + }, + [1874] = { + [sym__concat] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_EQ_TILDE] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_EQ] = ACTIONS(4003), + [anon_sym_PLUS_EQ] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_DASH_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4001), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [1875] = { + [sym__concat] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_EQ_TILDE] = ACTIONS(4015), + [anon_sym_EQ_EQ] = ACTIONS(4015), + [anon_sym_EQ] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_BANG_EQ] = ACTIONS(4015), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [anon_sym_DASH_EQ] = ACTIONS(4015), + [anon_sym_LT_EQ] = ACTIONS(4015), + [anon_sym_GT_EQ] = ACTIONS(4015), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4015), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [1876] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5753), + [sym_comment] = ACTIONS(57), + }, + [1877] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5755), + [sym_comment] = ACTIONS(57), + }, + [1878] = { + [anon_sym_RBRACE] = ACTIONS(5755), + [sym_comment] = ACTIONS(57), + }, + [1879] = { + [sym_concatenation] = STATE(2491), + [sym_string] = STATE(2490), + [sym_simple_expansion] = STATE(2490), + [sym_string_expansion] = STATE(2490), + [sym_expansion] = STATE(2490), + [sym_command_substitution] = STATE(2490), + [sym_process_substitution] = STATE(2490), + [anon_sym_RBRACE] = ACTIONS(5755), + [sym__special_characters] = ACTIONS(5757), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5759), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5759), + }, + [1880] = { + [sym__concat] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_EQ_TILDE] = ACTIONS(4051), + [anon_sym_EQ_EQ] = ACTIONS(4051), + [anon_sym_EQ] = ACTIONS(4053), + [anon_sym_PLUS_EQ] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_BANG_EQ] = ACTIONS(4051), + [anon_sym_PLUS] = ACTIONS(4053), + [anon_sym_DASH] = ACTIONS(4053), + [anon_sym_DASH_EQ] = ACTIONS(4051), + [anon_sym_LT_EQ] = ACTIONS(4051), + [anon_sym_GT_EQ] = ACTIONS(4051), + [anon_sym_PLUS_PLUS] = ACTIONS(4051), + [anon_sym_DASH_DASH] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4051), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [1881] = { + [sym_concatenation] = STATE(2494), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2494), + [sym_regex] = ACTIONS(5761), + [anon_sym_RBRACE] = ACTIONS(5763), + [anon_sym_EQ] = ACTIONS(5765), + [anon_sym_DASH] = ACTIONS(5765), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5767), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5765), + [anon_sym_COLON_QMARK] = ACTIONS(5765), + [anon_sym_COLON_DASH] = ACTIONS(5765), + [anon_sym_PERCENT] = ACTIONS(5765), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1882] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5763), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1883] = { + [sym_concatenation] = STATE(2496), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2496), + [sym_regex] = ACTIONS(5769), + [anon_sym_RBRACE] = ACTIONS(5755), + [anon_sym_EQ] = ACTIONS(5771), + [anon_sym_DASH] = ACTIONS(5771), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5771), + [anon_sym_COLON_QMARK] = ACTIONS(5771), + [anon_sym_COLON_DASH] = ACTIONS(5771), + [anon_sym_PERCENT] = ACTIONS(5771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1884] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5755), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1885] = { + [sym_concatenation] = STATE(2498), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2498), + [anon_sym_RBRACE] = ACTIONS(5775), + [anon_sym_EQ] = ACTIONS(5777), + [anon_sym_DASH] = ACTIONS(5777), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5777), + [anon_sym_COLON_QMARK] = ACTIONS(5777), + [anon_sym_COLON_DASH] = ACTIONS(5777), + [anon_sym_PERCENT] = ACTIONS(5777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1886] = { + [sym__concat] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_EQ_TILDE] = ACTIONS(4107), + [anon_sym_EQ_EQ] = ACTIONS(4107), + [anon_sym_EQ] = ACTIONS(4109), + [anon_sym_PLUS_EQ] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_BANG_EQ] = ACTIONS(4107), + [anon_sym_PLUS] = ACTIONS(4109), + [anon_sym_DASH] = ACTIONS(4109), + [anon_sym_DASH_EQ] = ACTIONS(4107), + [anon_sym_LT_EQ] = ACTIONS(4107), + [anon_sym_GT_EQ] = ACTIONS(4107), + [anon_sym_PLUS_PLUS] = ACTIONS(4107), + [anon_sym_DASH_DASH] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4107), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [1887] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5775), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1888] = { + [sym_concatenation] = STATE(2496), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2496), + [anon_sym_RBRACE] = ACTIONS(5755), + [anon_sym_EQ] = ACTIONS(5771), + [anon_sym_DASH] = ACTIONS(5771), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5771), + [anon_sym_COLON_QMARK] = ACTIONS(5771), + [anon_sym_COLON_DASH] = ACTIONS(5771), + [anon_sym_PERCENT] = ACTIONS(5771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1889] = { + [sym__expression] = STATE(2499), + [sym_binary_expression] = STATE(2499), + [sym_unary_expression] = STATE(2499), + [sym_postfix_expression] = STATE(2499), + [sym_parenthesized_expression] = STATE(2499), + [sym_concatenation] = STATE(2499), + [sym_string] = STATE(46), + [sym_simple_expansion] = STATE(46), + [sym_string_expansion] = STATE(46), + [sym_expansion] = STATE(46), + [sym_command_substitution] = STATE(46), + [sym_process_substitution] = STATE(46), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5751), + [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), + }, + [1890] = { + [sym__concat] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2292), + }, + [1891] = { + [aux_sym_concatenation_repeat1] = STATE(1891), + [sym__concat] = ACTIONS(5781), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2292), + }, + [1892] = { + [sym__concat] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2299), + }, + [1893] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(5784), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1894] = { + [sym_concatenation] = STATE(2504), + [sym_string] = STATE(2503), + [sym_simple_expansion] = STATE(2503), + [sym_string_expansion] = STATE(2503), + [sym_expansion] = STATE(2503), + [sym_command_substitution] = STATE(2503), + [sym_process_substitution] = STATE(2503), + [anon_sym_RBRACE] = ACTIONS(5786), + [sym__special_characters] = ACTIONS(5788), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5790), + }, + [1895] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(5792), + [sym_comment] = ACTIONS(57), + }, + [1896] = { + [sym_concatenation] = STATE(2508), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2508), + [anon_sym_RBRACE] = ACTIONS(5794), + [anon_sym_EQ] = ACTIONS(5796), + [anon_sym_DASH] = ACTIONS(5796), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5800), + [anon_sym_COLON] = ACTIONS(5796), + [anon_sym_COLON_QMARK] = ACTIONS(5796), + [anon_sym_COLON_DASH] = ACTIONS(5796), + [anon_sym_PERCENT] = ACTIONS(5796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1897] = { + [sym_concatenation] = STATE(2510), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2510), + [anon_sym_RBRACE] = ACTIONS(5786), + [anon_sym_EQ] = ACTIONS(5802), + [anon_sym_DASH] = ACTIONS(5802), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5806), + [anon_sym_COLON] = ACTIONS(5802), + [anon_sym_COLON_QMARK] = ACTIONS(5802), + [anon_sym_COLON_DASH] = ACTIONS(5802), + [anon_sym_PERCENT] = ACTIONS(5802), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1898] = { + [sym__concat] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2392), + }, + [1899] = { + [sym_concatenation] = STATE(2513), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2513), + [sym_regex] = ACTIONS(5808), + [anon_sym_RBRACE] = ACTIONS(5810), + [anon_sym_EQ] = ACTIONS(5812), + [anon_sym_DASH] = ACTIONS(5812), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5812), + [anon_sym_COLON_QMARK] = ACTIONS(5812), + [anon_sym_COLON_DASH] = ACTIONS(5812), + [anon_sym_PERCENT] = ACTIONS(5812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1900] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5810), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1901] = { + [sym__concat] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2440), + }, + [1902] = { + [sym_concatenation] = STATE(2510), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2510), + [sym_regex] = ACTIONS(5816), + [anon_sym_RBRACE] = ACTIONS(5786), + [anon_sym_EQ] = ACTIONS(5802), + [anon_sym_DASH] = ACTIONS(5802), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5802), + [anon_sym_COLON_QMARK] = ACTIONS(5802), + [anon_sym_COLON_DASH] = ACTIONS(5802), + [anon_sym_PERCENT] = ACTIONS(5802), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1903] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5786), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1904] = { + [sym__concat] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_SEMI_SEMI] = ACTIONS(2446), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2446), + }, + [1905] = { + [sym__concat] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2484), + }, + [1906] = { + [sym__simple_heredoc_body] = ACTIONS(5818), + [sym__heredoc_body_beginning] = ACTIONS(5818), + [sym_file_descriptor] = ACTIONS(5818), + [ts_builtin_sym_end] = ACTIONS(5818), + [anon_sym_SEMI] = ACTIONS(5820), + [anon_sym_done] = ACTIONS(5818), + [anon_sym_fi] = ACTIONS(5818), + [anon_sym_elif] = ACTIONS(5818), + [anon_sym_else] = ACTIONS(5818), + [anon_sym_esac] = ACTIONS(5818), + [anon_sym_PIPE] = ACTIONS(5820), + [anon_sym_RPAREN] = ACTIONS(5818), + [anon_sym_SEMI_SEMI] = ACTIONS(5818), + [anon_sym_PIPE_AMP] = ACTIONS(5818), + [anon_sym_AMP_AMP] = ACTIONS(5818), + [anon_sym_PIPE_PIPE] = ACTIONS(5818), + [anon_sym_LT] = ACTIONS(5820), + [anon_sym_GT] = ACTIONS(5820), + [anon_sym_GT_GT] = ACTIONS(5818), + [anon_sym_AMP_GT] = ACTIONS(5820), + [anon_sym_AMP_GT_GT] = ACTIONS(5818), + [anon_sym_LT_AMP] = ACTIONS(5818), + [anon_sym_GT_AMP] = ACTIONS(5818), + [anon_sym_LT_LT] = ACTIONS(5820), + [anon_sym_LT_LT_DASH] = ACTIONS(5818), + [anon_sym_LT_LT_LT] = ACTIONS(5818), + [anon_sym_BQUOTE] = ACTIONS(5818), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5818), + [anon_sym_AMP] = ACTIONS(5820), + }, + [1907] = { + [sym__concat] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_RPAREN] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_EQ_TILDE] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_EQ] = ACTIONS(4003), + [anon_sym_PLUS_EQ] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_DASH_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4001), + }, + [1908] = { + [sym__concat] = ACTIONS(4015), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_RPAREN] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_EQ_TILDE] = ACTIONS(4015), + [anon_sym_EQ_EQ] = ACTIONS(4015), + [anon_sym_EQ] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_BANG_EQ] = ACTIONS(4015), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [anon_sym_DASH_EQ] = ACTIONS(4015), + [anon_sym_LT_EQ] = ACTIONS(4015), + [anon_sym_GT_EQ] = ACTIONS(4015), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4015), + }, + [1909] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5822), + [sym_comment] = ACTIONS(57), + }, + [1910] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5824), + [sym_comment] = ACTIONS(57), + }, + [1911] = { + [anon_sym_RBRACE] = ACTIONS(5824), + [sym_comment] = ACTIONS(57), + }, + [1912] = { + [sym_concatenation] = STATE(2519), + [sym_string] = STATE(2518), + [sym_simple_expansion] = STATE(2518), + [sym_string_expansion] = STATE(2518), + [sym_expansion] = STATE(2518), + [sym_command_substitution] = STATE(2518), + [sym_process_substitution] = STATE(2518), + [anon_sym_RBRACE] = ACTIONS(5824), + [sym__special_characters] = ACTIONS(5826), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5828), + }, + [1913] = { + [sym__concat] = ACTIONS(4051), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_RPAREN] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_EQ_TILDE] = ACTIONS(4051), + [anon_sym_EQ_EQ] = ACTIONS(4051), + [anon_sym_EQ] = ACTIONS(4053), + [anon_sym_PLUS_EQ] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_BANG_EQ] = ACTIONS(4051), + [anon_sym_PLUS] = ACTIONS(4053), + [anon_sym_DASH] = ACTIONS(4053), + [anon_sym_DASH_EQ] = ACTIONS(4051), + [anon_sym_LT_EQ] = ACTIONS(4051), + [anon_sym_GT_EQ] = ACTIONS(4051), + [anon_sym_PLUS_PLUS] = ACTIONS(4051), + [anon_sym_DASH_DASH] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4051), + }, + [1914] = { + [sym_concatenation] = STATE(2522), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2522), + [sym_regex] = ACTIONS(5830), + [anon_sym_RBRACE] = ACTIONS(5832), + [anon_sym_EQ] = ACTIONS(5834), + [anon_sym_DASH] = ACTIONS(5834), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5834), + [anon_sym_COLON_QMARK] = ACTIONS(5834), + [anon_sym_COLON_DASH] = ACTIONS(5834), + [anon_sym_PERCENT] = ACTIONS(5834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1915] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5832), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1916] = { + [sym_concatenation] = STATE(2524), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2524), + [sym_regex] = ACTIONS(5838), + [anon_sym_RBRACE] = ACTIONS(5824), + [anon_sym_EQ] = ACTIONS(5840), + [anon_sym_DASH] = ACTIONS(5840), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5842), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5840), + [anon_sym_COLON_QMARK] = ACTIONS(5840), + [anon_sym_COLON_DASH] = ACTIONS(5840), + [anon_sym_PERCENT] = ACTIONS(5840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1917] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5824), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1918] = { + [sym_concatenation] = STATE(2526), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2526), + [anon_sym_RBRACE] = ACTIONS(5844), + [anon_sym_EQ] = ACTIONS(5846), + [anon_sym_DASH] = ACTIONS(5846), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5846), + [anon_sym_COLON_QMARK] = ACTIONS(5846), + [anon_sym_COLON_DASH] = ACTIONS(5846), + [anon_sym_PERCENT] = ACTIONS(5846), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1919] = { + [sym__concat] = ACTIONS(4107), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_RPAREN] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_EQ_TILDE] = ACTIONS(4107), + [anon_sym_EQ_EQ] = ACTIONS(4107), + [anon_sym_EQ] = ACTIONS(4109), + [anon_sym_PLUS_EQ] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_BANG_EQ] = ACTIONS(4107), + [anon_sym_PLUS] = ACTIONS(4109), + [anon_sym_DASH] = ACTIONS(4109), + [anon_sym_DASH_EQ] = ACTIONS(4107), + [anon_sym_LT_EQ] = ACTIONS(4107), + [anon_sym_GT_EQ] = ACTIONS(4107), + [anon_sym_PLUS_PLUS] = ACTIONS(4107), + [anon_sym_DASH_DASH] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4107), + }, + [1920] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5844), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1921] = { + [sym_concatenation] = STATE(2524), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2524), + [anon_sym_RBRACE] = ACTIONS(5824), + [anon_sym_EQ] = ACTIONS(5840), + [anon_sym_DASH] = ACTIONS(5840), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5842), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5840), + [anon_sym_COLON_QMARK] = ACTIONS(5840), + [anon_sym_COLON_DASH] = ACTIONS(5840), + [anon_sym_PERCENT] = ACTIONS(5840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1922] = { + [sym__concat] = ACTIONS(5525), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5525), + [anon_sym_EQ_TILDE] = ACTIONS(5525), + [anon_sym_EQ_EQ] = ACTIONS(5525), + [anon_sym_EQ] = ACTIONS(5527), + [anon_sym_PLUS_EQ] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_BANG_EQ] = ACTIONS(5525), + [anon_sym_PLUS] = ACTIONS(5527), + [anon_sym_DASH] = ACTIONS(5527), + [anon_sym_DASH_EQ] = ACTIONS(5525), + [anon_sym_LT_EQ] = ACTIONS(5525), + [anon_sym_GT_EQ] = ACTIONS(5525), + [anon_sym_PLUS_PLUS] = ACTIONS(5525), + [anon_sym_DASH_DASH] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5525), + }, + [1923] = { + [sym__concat] = ACTIONS(5533), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5533), + [anon_sym_EQ_TILDE] = ACTIONS(5533), + [anon_sym_EQ_EQ] = ACTIONS(5533), + [anon_sym_EQ] = ACTIONS(5535), + [anon_sym_PLUS_EQ] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_BANG_EQ] = ACTIONS(5533), + [anon_sym_PLUS] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(5535), + [anon_sym_DASH_EQ] = ACTIONS(5533), + [anon_sym_LT_EQ] = ACTIONS(5533), + [anon_sym_GT_EQ] = ACTIONS(5533), + [anon_sym_PLUS_PLUS] = ACTIONS(5533), + [anon_sym_DASH_DASH] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5533), + }, + [1924] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5850), + [sym_comment] = ACTIONS(57), + }, + [1925] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5852), + [sym_comment] = ACTIONS(57), + }, + [1926] = { + [anon_sym_RBRACE] = ACTIONS(5852), + [sym_comment] = ACTIONS(57), + }, + [1927] = { + [sym_concatenation] = STATE(2530), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2530), + [anon_sym_RBRACE] = ACTIONS(5854), + [anon_sym_EQ] = ACTIONS(5856), + [anon_sym_DASH] = ACTIONS(5856), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5856), + [anon_sym_COLON_QMARK] = ACTIONS(5856), + [anon_sym_COLON_DASH] = ACTIONS(5856), + [anon_sym_PERCENT] = ACTIONS(5856), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1928] = { + [sym__concat] = ACTIONS(5577), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5577), + [anon_sym_EQ_TILDE] = ACTIONS(5577), + [anon_sym_EQ_EQ] = ACTIONS(5577), + [anon_sym_EQ] = ACTIONS(5579), + [anon_sym_PLUS_EQ] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_BANG_EQ] = ACTIONS(5577), + [anon_sym_PLUS] = ACTIONS(5579), + [anon_sym_DASH] = ACTIONS(5579), + [anon_sym_DASH_EQ] = ACTIONS(5577), + [anon_sym_LT_EQ] = ACTIONS(5577), + [anon_sym_GT_EQ] = ACTIONS(5577), + [anon_sym_PLUS_PLUS] = ACTIONS(5577), + [anon_sym_DASH_DASH] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5577), + }, + [1929] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5854), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1930] = { + [sym_concatenation] = STATE(2531), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2531), + [anon_sym_RBRACE] = ACTIONS(5852), + [anon_sym_EQ] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5862), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5860), + [anon_sym_COLON_QMARK] = ACTIONS(5860), + [anon_sym_COLON_DASH] = ACTIONS(5860), + [anon_sym_PERCENT] = ACTIONS(5860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1931] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5852), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1932] = { + [sym__concat] = ACTIONS(5622), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5622), + [anon_sym_EQ_TILDE] = ACTIONS(5622), + [anon_sym_EQ_EQ] = ACTIONS(5622), + [anon_sym_EQ] = ACTIONS(5624), + [anon_sym_PLUS_EQ] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5622), + [anon_sym_PLUS] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5624), + [anon_sym_DASH_EQ] = ACTIONS(5622), + [anon_sym_LT_EQ] = ACTIONS(5622), + [anon_sym_GT_EQ] = ACTIONS(5622), + [anon_sym_PLUS_PLUS] = ACTIONS(5622), + [anon_sym_DASH_DASH] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5622), + }, + [1933] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5864), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1934] = { + [sym_file_descriptor] = ACTIONS(4334), + [sym_variable_name] = ACTIONS(4334), + [anon_sym_SEMI] = ACTIONS(4336), + [anon_sym_PIPE] = ACTIONS(4336), + [anon_sym_SEMI_SEMI] = ACTIONS(4334), + [anon_sym_PIPE_AMP] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4336), + [anon_sym_GT] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4334), + [anon_sym_AMP_GT] = ACTIONS(4336), + [anon_sym_AMP_GT_GT] = ACTIONS(4334), + [anon_sym_LT_AMP] = ACTIONS(4334), + [anon_sym_GT_AMP] = ACTIONS(4334), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_LT_LT_DASH] = ACTIONS(4334), + [anon_sym_LT_LT_LT] = ACTIONS(4334), + [sym__special_characters] = ACTIONS(4334), + [anon_sym_DQUOTE] = ACTIONS(4334), + [anon_sym_DOLLAR] = ACTIONS(4336), + [sym_raw_string] = ACTIONS(4334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4334), + [anon_sym_BQUOTE] = ACTIONS(4334), + [anon_sym_LT_LPAREN] = ACTIONS(4334), + [anon_sym_GT_LPAREN] = ACTIONS(4334), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4336), + [anon_sym_LF] = ACTIONS(4334), + [anon_sym_AMP] = ACTIONS(4336), + }, + [1935] = { + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1936] = { + [aux_sym_concatenation_repeat1] = STATE(1936), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(5866), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [1937] = { + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [sym_variable_name] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [1938] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(5869), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [1939] = { + [sym_concatenation] = STATE(2537), + [sym_string] = STATE(2536), + [sym_simple_expansion] = STATE(2536), + [sym_string_expansion] = STATE(2536), + [sym_expansion] = STATE(2536), + [sym_command_substitution] = STATE(2536), + [sym_process_substitution] = STATE(2536), + [anon_sym_RBRACE] = ACTIONS(5871), + [sym__special_characters] = ACTIONS(5873), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5875), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5875), + }, + [1940] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(5877), + [sym_comment] = ACTIONS(57), + }, + [1941] = { + [sym_concatenation] = STATE(2541), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2541), + [anon_sym_RBRACE] = ACTIONS(5879), + [anon_sym_EQ] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5881), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5885), + [anon_sym_COLON] = ACTIONS(5881), + [anon_sym_COLON_QMARK] = ACTIONS(5881), + [anon_sym_COLON_DASH] = ACTIONS(5881), + [anon_sym_PERCENT] = ACTIONS(5881), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1942] = { + [sym_concatenation] = STATE(2543), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2543), + [anon_sym_RBRACE] = ACTIONS(5871), + [anon_sym_EQ] = ACTIONS(5887), + [anon_sym_DASH] = ACTIONS(5887), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(5891), + [anon_sym_COLON] = ACTIONS(5887), + [anon_sym_COLON_QMARK] = ACTIONS(5887), + [anon_sym_COLON_DASH] = ACTIONS(5887), + [anon_sym_PERCENT] = ACTIONS(5887), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1943] = { + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [sym_variable_name] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [1944] = { + [sym_concatenation] = STATE(2546), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2546), + [sym_regex] = ACTIONS(5893), + [anon_sym_RBRACE] = ACTIONS(5895), + [anon_sym_EQ] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5897), + [anon_sym_COLON_QMARK] = ACTIONS(5897), + [anon_sym_COLON_DASH] = ACTIONS(5897), + [anon_sym_PERCENT] = ACTIONS(5897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1945] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5895), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1946] = { + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [sym_variable_name] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [1947] = { + [sym_concatenation] = STATE(2543), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2543), + [sym_regex] = ACTIONS(5901), + [anon_sym_RBRACE] = ACTIONS(5871), + [anon_sym_EQ] = ACTIONS(5887), + [anon_sym_DASH] = ACTIONS(5887), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5887), + [anon_sym_COLON_QMARK] = ACTIONS(5887), + [anon_sym_COLON_DASH] = ACTIONS(5887), + [anon_sym_PERCENT] = ACTIONS(5887), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1948] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5871), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1949] = { + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [sym_variable_name] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [1950] = { + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [sym_variable_name] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [1951] = { + [sym_do_group] = STATE(2549), + [sym_compound_statement] = STATE(2549), + [anon_sym_SEMI] = ACTIONS(5903), + [anon_sym_do] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(113), + [sym_comment] = ACTIONS(57), + }, + [1952] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(5905), + [anon_sym_AMP_AMP] = ACTIONS(553), + [anon_sym_PIPE_PIPE] = ACTIONS(553), + [anon_sym_EQ_TILDE] = ACTIONS(555), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_PLUS_EQ] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_DASH_EQ] = ACTIONS(553), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(553), + }, + [1953] = { + [sym__expression] = STATE(2551), + [sym_binary_expression] = STATE(2551), + [sym_unary_expression] = STATE(2551), + [sym_postfix_expression] = STATE(2551), + [sym_parenthesized_expression] = STATE(2551), + [sym_concatenation] = STATE(2551), + [sym_string] = STATE(46), + [sym_simple_expansion] = STATE(46), + [sym_string_expansion] = STATE(46), + [sym_expansion] = STATE(46), + [sym_command_substitution] = STATE(46), + [sym_process_substitution] = STATE(46), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5905), + [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), + }, + [1954] = { + [anon_sym_SEMI] = ACTIONS(5907), + [anon_sym_SEMI_SEMI] = ACTIONS(5909), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_PLUS_EQ] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1453), + [anon_sym_LF] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5907), + }, + [1955] = { + [sym_do_group] = STATE(2553), + [anon_sym_do] = ACTIONS(1591), + [sym_comment] = ACTIONS(57), + }, + [1956] = { + [sym_file_descriptor] = ACTIONS(4854), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_SEMI_SEMI] = ACTIONS(4854), + [anon_sym_PIPE_AMP] = ACTIONS(4854), + [anon_sym_AMP_AMP] = ACTIONS(4854), + [anon_sym_PIPE_PIPE] = ACTIONS(4854), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_GT_GT] = ACTIONS(4854), + [anon_sym_AMP_GT] = ACTIONS(4856), + [anon_sym_AMP_GT_GT] = ACTIONS(4854), + [anon_sym_LT_AMP] = ACTIONS(4854), + [anon_sym_GT_AMP] = ACTIONS(4854), + [anon_sym_LT_LT] = ACTIONS(4856), + [anon_sym_LT_LT_DASH] = ACTIONS(4854), + [anon_sym_LT_LT_LT] = ACTIONS(4854), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4854), + [anon_sym_AMP] = ACTIONS(4856), + }, + [1957] = { + [sym_file_descriptor] = ACTIONS(5108), + [anon_sym_SEMI] = ACTIONS(5110), + [anon_sym_PIPE] = ACTIONS(5110), + [anon_sym_SEMI_SEMI] = ACTIONS(5108), + [anon_sym_PIPE_AMP] = ACTIONS(5108), + [anon_sym_AMP_AMP] = ACTIONS(5108), + [anon_sym_PIPE_PIPE] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5110), + [anon_sym_GT] = ACTIONS(5110), + [anon_sym_GT_GT] = ACTIONS(5108), + [anon_sym_AMP_GT] = ACTIONS(5110), + [anon_sym_AMP_GT_GT] = ACTIONS(5108), + [anon_sym_LT_AMP] = ACTIONS(5108), + [anon_sym_GT_AMP] = ACTIONS(5108), + [anon_sym_LT_LT] = ACTIONS(5110), + [anon_sym_LT_LT_DASH] = ACTIONS(5108), + [anon_sym_LT_LT_LT] = ACTIONS(5108), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5108), + [anon_sym_AMP] = ACTIONS(5110), + }, + [1958] = { + [anon_sym_fi] = ACTIONS(5911), + [sym_comment] = ACTIONS(57), + }, + [1959] = { + [sym_elif_clause] = STATE(1550), + [sym_else_clause] = STATE(2555), + [aux_sym_if_statement_repeat1] = STATE(1550), + [anon_sym_fi] = ACTIONS(5911), + [anon_sym_elif] = ACTIONS(3377), + [anon_sym_else] = ACTIONS(3379), + [sym_comment] = ACTIONS(57), + }, + [1960] = { + [sym_file_descriptor] = ACTIONS(5145), + [anon_sym_SEMI] = ACTIONS(5147), + [anon_sym_PIPE] = ACTIONS(5147), + [anon_sym_SEMI_SEMI] = ACTIONS(5145), + [anon_sym_PIPE_AMP] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5147), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_GT_GT] = ACTIONS(5145), + [anon_sym_AMP_GT] = ACTIONS(5147), + [anon_sym_AMP_GT_GT] = ACTIONS(5145), + [anon_sym_LT_AMP] = ACTIONS(5145), + [anon_sym_GT_AMP] = ACTIONS(5145), + [anon_sym_LT_LT] = ACTIONS(5147), + [anon_sym_LT_LT_DASH] = ACTIONS(5145), + [anon_sym_LT_LT_LT] = ACTIONS(5145), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5145), + [anon_sym_AMP] = ACTIONS(5147), + }, + [1961] = { + [anon_sym_esac] = ACTIONS(5913), + [sym_comment] = ACTIONS(57), + }, + [1962] = { + [sym_case_item] = STATE(2236), + [sym_last_case_item] = STATE(2557), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2236), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3413), + }, + [1963] = { + [sym_case_item] = STATE(2558), + [sym_last_case_item] = STATE(2557), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2558), + [anon_sym_esac] = ACTIONS(5915), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3415), + }, + [1964] = { + [sym_file_descriptor] = ACTIONS(5159), + [anon_sym_SEMI] = ACTIONS(5161), + [anon_sym_PIPE] = ACTIONS(5161), + [anon_sym_SEMI_SEMI] = ACTIONS(5159), + [anon_sym_PIPE_AMP] = ACTIONS(5159), + [anon_sym_AMP_AMP] = ACTIONS(5159), + [anon_sym_PIPE_PIPE] = ACTIONS(5159), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_GT_GT] = ACTIONS(5159), + [anon_sym_AMP_GT] = ACTIONS(5161), + [anon_sym_AMP_GT_GT] = ACTIONS(5159), + [anon_sym_LT_AMP] = ACTIONS(5159), + [anon_sym_GT_AMP] = ACTIONS(5159), + [anon_sym_LT_LT] = ACTIONS(5161), + [anon_sym_LT_LT_DASH] = ACTIONS(5159), + [anon_sym_LT_LT_LT] = ACTIONS(5159), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5159), + [anon_sym_AMP] = ACTIONS(5161), + }, + [1965] = { + [anon_sym_esac] = ACTIONS(5917), + [sym_comment] = ACTIONS(57), + }, + [1966] = { + [sym_case_item] = STATE(2236), + [sym_last_case_item] = STATE(2560), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2236), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3413), + }, + [1967] = { + [sym_case_item] = STATE(2561), + [sym_last_case_item] = STATE(2560), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2561), + [anon_sym_esac] = ACTIONS(5919), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3415), + }, + [1968] = { + [sym_file_descriptor] = ACTIONS(5195), + [anon_sym_SEMI] = ACTIONS(5197), + [anon_sym_PIPE] = ACTIONS(5197), + [anon_sym_SEMI_SEMI] = ACTIONS(5195), + [anon_sym_PIPE_AMP] = ACTIONS(5195), + [anon_sym_AMP_AMP] = ACTIONS(5195), + [anon_sym_PIPE_PIPE] = ACTIONS(5195), + [anon_sym_LT] = ACTIONS(5197), + [anon_sym_GT] = ACTIONS(5197), + [anon_sym_GT_GT] = ACTIONS(5195), + [anon_sym_AMP_GT] = ACTIONS(5197), + [anon_sym_AMP_GT_GT] = ACTIONS(5195), + [anon_sym_LT_AMP] = ACTIONS(5195), + [anon_sym_GT_AMP] = ACTIONS(5195), + [anon_sym_LT_LT] = ACTIONS(5197), + [anon_sym_LT_LT_DASH] = ACTIONS(5195), + [anon_sym_LT_LT_LT] = ACTIONS(5195), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5195), + [anon_sym_AMP] = ACTIONS(5197), + }, + [1969] = { + [sym_file_descriptor] = ACTIONS(2646), + [sym_variable_name] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_SEMI_SEMI] = ACTIONS(2646), + [anon_sym_PIPE_AMP] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_PIPE_PIPE] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_GT] = ACTIONS(2648), + [anon_sym_GT_GT] = ACTIONS(2646), + [anon_sym_AMP_GT] = ACTIONS(2648), + [anon_sym_AMP_GT_GT] = ACTIONS(2646), + [anon_sym_LT_AMP] = ACTIONS(2646), + [anon_sym_GT_AMP] = ACTIONS(2646), + [anon_sym_LT_LT] = ACTIONS(2648), + [anon_sym_LT_LT_DASH] = ACTIONS(2646), + [anon_sym_LT_LT_LT] = ACTIONS(2646), + [sym__special_characters] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2648), + [sym_raw_string] = ACTIONS(2646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2646), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2646), + [anon_sym_BQUOTE] = ACTIONS(2646), + [anon_sym_LT_LPAREN] = ACTIONS(2646), + [anon_sym_GT_LPAREN] = ACTIONS(2646), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2648), + [sym_word] = ACTIONS(2648), + [anon_sym_LF] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2648), + }, + [1970] = { + [sym_concatenation] = STATE(1243), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1243), + [anon_sym_RPAREN] = ACTIONS(5921), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [1971] = { + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [sym_variable_name] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4003), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [1972] = { + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [sym_variable_name] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4017), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [1973] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5923), + [sym_comment] = ACTIONS(57), + }, + [1974] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5925), + [sym_comment] = ACTIONS(57), + }, + [1975] = { + [anon_sym_RBRACE] = ACTIONS(5925), + [sym_comment] = ACTIONS(57), + }, + [1976] = { + [sym_concatenation] = STATE(2567), + [sym_string] = STATE(2566), + [sym_simple_expansion] = STATE(2566), + [sym_string_expansion] = STATE(2566), + [sym_expansion] = STATE(2566), + [sym_command_substitution] = STATE(2566), + [sym_process_substitution] = STATE(2566), + [anon_sym_RBRACE] = ACTIONS(5925), + [sym__special_characters] = ACTIONS(5927), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5929), + }, + [1977] = { + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [sym_variable_name] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4053), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [1978] = { + [sym_concatenation] = STATE(2570), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2570), + [sym_regex] = ACTIONS(5931), + [anon_sym_RBRACE] = ACTIONS(5933), + [anon_sym_EQ] = ACTIONS(5935), + [anon_sym_DASH] = ACTIONS(5935), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5937), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5935), + [anon_sym_COLON_QMARK] = ACTIONS(5935), + [anon_sym_COLON_DASH] = ACTIONS(5935), + [anon_sym_PERCENT] = ACTIONS(5935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1979] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5933), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1980] = { + [sym_concatenation] = STATE(2572), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2572), + [sym_regex] = ACTIONS(5939), + [anon_sym_RBRACE] = ACTIONS(5925), + [anon_sym_EQ] = ACTIONS(5941), + [anon_sym_DASH] = ACTIONS(5941), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5941), + [anon_sym_COLON_QMARK] = ACTIONS(5941), + [anon_sym_COLON_DASH] = ACTIONS(5941), + [anon_sym_PERCENT] = ACTIONS(5941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1981] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5925), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1982] = { + [sym_concatenation] = STATE(2574), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2574), + [anon_sym_RBRACE] = ACTIONS(5945), + [anon_sym_EQ] = ACTIONS(5947), + [anon_sym_DASH] = ACTIONS(5947), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5949), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5947), + [anon_sym_COLON_QMARK] = ACTIONS(5947), + [anon_sym_COLON_DASH] = ACTIONS(5947), + [anon_sym_PERCENT] = ACTIONS(5947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1983] = { + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [sym_variable_name] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4109), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [1984] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5945), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1985] = { + [sym_concatenation] = STATE(2572), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2572), + [anon_sym_RBRACE] = ACTIONS(5925), + [anon_sym_EQ] = ACTIONS(5941), + [anon_sym_DASH] = ACTIONS(5941), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5941), + [anon_sym_COLON_QMARK] = ACTIONS(5941), + [anon_sym_COLON_DASH] = ACTIONS(5941), + [anon_sym_PERCENT] = ACTIONS(5941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1986] = { + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4003), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [1987] = { + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4017), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [1988] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5951), + [sym_comment] = ACTIONS(57), + }, + [1989] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5953), + [sym_comment] = ACTIONS(57), + }, + [1990] = { + [anon_sym_RBRACE] = ACTIONS(5953), + [sym_comment] = ACTIONS(57), + }, + [1991] = { + [sym_concatenation] = STATE(2579), + [sym_string] = STATE(2578), + [sym_simple_expansion] = STATE(2578), + [sym_string_expansion] = STATE(2578), + [sym_expansion] = STATE(2578), + [sym_command_substitution] = STATE(2578), + [sym_process_substitution] = STATE(2578), + [anon_sym_RBRACE] = ACTIONS(5953), + [sym__special_characters] = ACTIONS(5955), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(5957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5957), + }, + [1992] = { + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4053), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [1993] = { + [sym_concatenation] = STATE(2582), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2582), + [sym_regex] = ACTIONS(5959), + [anon_sym_RBRACE] = ACTIONS(5961), + [anon_sym_EQ] = ACTIONS(5963), + [anon_sym_DASH] = ACTIONS(5963), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5963), + [anon_sym_COLON_QMARK] = ACTIONS(5963), + [anon_sym_COLON_DASH] = ACTIONS(5963), + [anon_sym_PERCENT] = ACTIONS(5963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1994] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5961), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1995] = { + [sym_concatenation] = STATE(2584), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2584), + [sym_regex] = ACTIONS(5967), + [anon_sym_RBRACE] = ACTIONS(5953), + [anon_sym_EQ] = ACTIONS(5969), + [anon_sym_DASH] = ACTIONS(5969), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5969), + [anon_sym_COLON_QMARK] = ACTIONS(5969), + [anon_sym_COLON_DASH] = ACTIONS(5969), + [anon_sym_PERCENT] = ACTIONS(5969), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1996] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5953), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1997] = { + [sym_concatenation] = STATE(2586), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2586), + [anon_sym_RBRACE] = ACTIONS(5973), + [anon_sym_EQ] = ACTIONS(5975), + [anon_sym_DASH] = ACTIONS(5975), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5977), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5975), + [anon_sym_COLON_QMARK] = ACTIONS(5975), + [anon_sym_COLON_DASH] = ACTIONS(5975), + [anon_sym_PERCENT] = ACTIONS(5975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [1998] = { + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4109), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [1999] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5973), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2000] = { + [sym_concatenation] = STATE(2584), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2584), + [anon_sym_RBRACE] = ACTIONS(5953), + [anon_sym_EQ] = ACTIONS(5969), + [anon_sym_DASH] = ACTIONS(5969), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5969), + [anon_sym_COLON_QMARK] = ACTIONS(5969), + [anon_sym_COLON_DASH] = ACTIONS(5969), + [anon_sym_PERCENT] = ACTIONS(5969), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2001] = { + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_EQ_TILDE] = ACTIONS(5527), + [anon_sym_EQ_EQ] = ACTIONS(5527), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [2002] = { + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_EQ_TILDE] = ACTIONS(5535), + [anon_sym_EQ_EQ] = ACTIONS(5535), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [2003] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5979), + [sym_comment] = ACTIONS(57), + }, + [2004] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(5981), + [sym_comment] = ACTIONS(57), + }, + [2005] = { + [anon_sym_RBRACE] = ACTIONS(5981), + [sym_comment] = ACTIONS(57), + }, + [2006] = { + [sym_concatenation] = STATE(2590), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2590), + [anon_sym_RBRACE] = ACTIONS(5983), + [anon_sym_EQ] = ACTIONS(5985), + [anon_sym_DASH] = ACTIONS(5985), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5987), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5985), + [anon_sym_COLON_QMARK] = ACTIONS(5985), + [anon_sym_COLON_DASH] = ACTIONS(5985), + [anon_sym_PERCENT] = ACTIONS(5985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2007] = { + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_EQ_TILDE] = ACTIONS(5579), + [anon_sym_EQ_EQ] = ACTIONS(5579), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [2008] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5983), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2009] = { + [sym_concatenation] = STATE(2591), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2591), + [anon_sym_RBRACE] = ACTIONS(5981), + [anon_sym_EQ] = ACTIONS(5989), + [anon_sym_DASH] = ACTIONS(5989), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(5991), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(5989), + [anon_sym_COLON_QMARK] = ACTIONS(5989), + [anon_sym_COLON_DASH] = ACTIONS(5989), + [anon_sym_PERCENT] = ACTIONS(5989), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2010] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5981), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2011] = { + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_EQ_TILDE] = ACTIONS(5624), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [2012] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(5993), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2013] = { + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_done] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [2014] = { + [sym_concatenation] = STATE(2594), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(2594), + [anon_sym_RPAREN] = ACTIONS(5995), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [2015] = { + [aux_sym_concatenation_repeat1] = STATE(2596), + [sym__simple_heredoc_body] = ACTIONS(1393), + [sym__heredoc_body_beginning] = ACTIONS(1393), + [sym_file_descriptor] = ACTIONS(1393), + [sym__concat] = ACTIONS(5997), + [sym_variable_name] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_done] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_SEMI_SEMI] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_AMP_GT] = ACTIONS(1397), + [anon_sym_AMP_GT_GT] = ACTIONS(1393), + [anon_sym_LT_AMP] = ACTIONS(1393), + [anon_sym_GT_AMP] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_LT_LT_DASH] = ACTIONS(1393), + [anon_sym_LT_LT_LT] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1397), + [sym_raw_string] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1393), + [anon_sym_GT_LPAREN] = ACTIONS(1393), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1397), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1397), + }, + [2016] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(2599), + [anon_sym_DQUOTE] = ACTIONS(5999), + [anon_sym_DOLLAR] = ACTIONS(6001), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [2017] = { + [sym_string] = STATE(2601), + [anon_sym_DASH] = ACTIONS(6003), + [anon_sym_DQUOTE] = ACTIONS(4750), + [anon_sym_DOLLAR] = ACTIONS(6003), + [sym_raw_string] = ACTIONS(6005), + [anon_sym_POUND] = ACTIONS(6003), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6007), + [anon_sym_STAR] = ACTIONS(6009), + [anon_sym_AT] = ACTIONS(6009), + [anon_sym_QMARK] = ACTIONS(6009), + [anon_sym_0] = ACTIONS(6007), + [anon_sym__] = ACTIONS(6007), + }, + [2018] = { + [aux_sym_concatenation_repeat1] = STATE(2596), + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym__concat] = ACTIONS(5997), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_done] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [2019] = { + [sym_subscript] = STATE(2606), + [sym_variable_name] = ACTIONS(6011), + [anon_sym_BANG] = ACTIONS(6013), + [anon_sym_DASH] = ACTIONS(6015), + [anon_sym_DOLLAR] = ACTIONS(6015), + [anon_sym_POUND] = ACTIONS(6013), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6017), + [anon_sym_STAR] = ACTIONS(6019), + [anon_sym_AT] = ACTIONS(6019), + [anon_sym_QMARK] = ACTIONS(6019), + [anon_sym_0] = ACTIONS(6017), + [anon_sym__] = ACTIONS(6017), + }, + [2020] = { + [sym__statements] = STATE(2607), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [2021] = { + [sym__statements] = STATE(2608), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [2022] = { + [sym__statements] = STATE(2609), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [2023] = { + [sym_concatenation] = STATE(2610), + [sym_string] = STATE(2613), + [sym_array] = STATE(2610), + [sym_simple_expansion] = STATE(2613), + [sym_string_expansion] = STATE(2613), + [sym_expansion] = STATE(2613), + [sym_command_substitution] = STATE(2613), + [sym_process_substitution] = STATE(2613), + [sym__empty_value] = ACTIONS(6021), + [anon_sym_LPAREN] = ACTIONS(6023), + [sym__special_characters] = ACTIONS(6025), + [anon_sym_DQUOTE] = ACTIONS(3129), + [anon_sym_DOLLAR] = ACTIONS(3131), + [sym_raw_string] = ACTIONS(6027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3135), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3137), + [anon_sym_BQUOTE] = ACTIONS(3139), + [anon_sym_LT_LPAREN] = ACTIONS(3141), + [anon_sym_GT_LPAREN] = ACTIONS(3141), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6027), + }, + [2024] = { + [sym_string] = STATE(2614), + [sym_simple_expansion] = STATE(2614), + [sym_string_expansion] = STATE(2614), + [sym_expansion] = STATE(2614), + [sym_command_substitution] = STATE(2614), + [sym_process_substitution] = STATE(2614), + [sym__special_characters] = ACTIONS(6029), + [anon_sym_DQUOTE] = ACTIONS(3129), + [anon_sym_DOLLAR] = ACTIONS(3131), + [sym_raw_string] = ACTIONS(6029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3135), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3137), + [anon_sym_BQUOTE] = ACTIONS(3139), + [anon_sym_LT_LPAREN] = ACTIONS(3141), + [anon_sym_GT_LPAREN] = ACTIONS(3141), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6029), + }, + [2025] = { + [aux_sym_concatenation_repeat1] = STATE(2615), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(4766), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_done] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1045), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [2026] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [sym_variable_name] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_done] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1049), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [2027] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [2028] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6033), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [2029] = { + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [sym_variable_name] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_done] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1083), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [2030] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1085), + [sym_variable_name] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_done] = 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), + }, + [2031] = { [sym__simple_heredoc_body] = ACTIONS(1089), [sym__heredoc_body_beginning] = ACTIONS(1089), [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(5342), + [sym__concat] = ACTIONS(1089), [sym_variable_name] = ACTIONS(1089), [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_esac] = ACTIONS(1091), + [anon_sym_done] = ACTIONS(1091), [anon_sym_PIPE] = ACTIONS(1091), [anon_sym_SEMI_SEMI] = ACTIONS(1089), [anon_sym_PIPE_AMP] = ACTIONS(1089), @@ -77939,12798 +65887,57408 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1089), [anon_sym_AMP] = ACTIONS(1091), }, - [2456] = { - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(1730), - [sym_variable_name] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_esac] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1732), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [2457] = { - [aux_sym_concatenation_repeat1] = STATE(2457), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(5972), - [sym_variable_name] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_esac] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1732), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [2458] = { - [sym__simple_heredoc_body] = ACTIONS(1737), - [sym__heredoc_body_beginning] = ACTIONS(1737), - [sym_file_descriptor] = ACTIONS(1737), - [sym__concat] = ACTIONS(1737), - [sym_variable_name] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_esac] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_SEMI_SEMI] = ACTIONS(1737), - [anon_sym_PIPE_AMP] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1737), - [anon_sym_AMP_GT] = ACTIONS(1739), - [anon_sym_AMP_GT_GT] = ACTIONS(1737), - [anon_sym_LT_AMP] = ACTIONS(1737), - [anon_sym_GT_AMP] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_LT_LT_DASH] = ACTIONS(1737), - [anon_sym_LT_LT_LT] = ACTIONS(1737), - [sym__special_characters] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1739), - [sym_raw_string] = ACTIONS(1737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1737), - [anon_sym_BQUOTE] = ACTIONS(1737), - [anon_sym_LT_LPAREN] = ACTIONS(1737), - [anon_sym_GT_LPAREN] = ACTIONS(1737), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1739), - [sym_word] = ACTIONS(1739), - [anon_sym_LF] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1739), - }, - [2459] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(5975), - [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(2611), - [sym_string] = STATE(2610), - [sym_simple_expansion] = STATE(2610), - [sym_string_expansion] = STATE(2610), - [sym_expansion] = STATE(2610), - [sym_command_substitution] = STATE(2610), - [sym_process_substitution] = STATE(2610), - [anon_sym_RBRACE] = ACTIONS(5977), - [sym__special_characters] = ACTIONS(5979), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(5981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5981), - }, - [2461] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(5983), + [2032] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(6035), [sym_comment] = ACTIONS(57), }, - [2462] = { - [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(5985), - [anon_sym_EQ] = ACTIONS(5987), - [anon_sym_DASH] = ACTIONS(5987), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5989), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(5991), - [anon_sym_COLON] = ACTIONS(5987), - [anon_sym_COLON_QMARK] = ACTIONS(5987), - [anon_sym_COLON_DASH] = ACTIONS(5987), - [anon_sym_PERCENT] = ACTIONS(5987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(2617), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2617), - [anon_sym_RBRACE] = ACTIONS(5977), - [anon_sym_EQ] = ACTIONS(5993), - [anon_sym_DASH] = ACTIONS(5993), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(5997), - [anon_sym_COLON] = ACTIONS(5993), - [anon_sym_COLON_QMARK] = ACTIONS(5993), - [anon_sym_COLON_DASH] = ACTIONS(5993), - [anon_sym_PERCENT] = ACTIONS(5993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__simple_heredoc_body] = ACTIONS(1838), - [sym__heredoc_body_beginning] = ACTIONS(1838), - [sym_file_descriptor] = ACTIONS(1838), - [sym__concat] = ACTIONS(1838), - [sym_variable_name] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_esac] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1840), - [anon_sym_SEMI_SEMI] = ACTIONS(1838), - [anon_sym_PIPE_AMP] = ACTIONS(1838), - [anon_sym_AMP_AMP] = ACTIONS(1838), - [anon_sym_PIPE_PIPE] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_GT_GT] = ACTIONS(1838), - [anon_sym_AMP_GT] = ACTIONS(1840), - [anon_sym_AMP_GT_GT] = ACTIONS(1838), - [anon_sym_LT_AMP] = ACTIONS(1838), - [anon_sym_GT_AMP] = ACTIONS(1838), - [anon_sym_LT_LT] = ACTIONS(1840), - [anon_sym_LT_LT_DASH] = ACTIONS(1838), - [anon_sym_LT_LT_LT] = ACTIONS(1838), - [sym__special_characters] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1840), - [sym_raw_string] = ACTIONS(1838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_LT_LPAREN] = ACTIONS(1838), - [anon_sym_GT_LPAREN] = ACTIONS(1838), + [2033] = { + [sym_subscript] = STATE(2621), + [sym_variable_name] = ACTIONS(6037), + [anon_sym_DASH] = ACTIONS(6039), + [anon_sym_DOLLAR] = ACTIONS(6039), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1840), - [sym_word] = ACTIONS(1840), - [anon_sym_LF] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1840), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6041), + [anon_sym_STAR] = ACTIONS(6043), + [anon_sym_AT] = ACTIONS(6043), + [anon_sym_QMARK] = ACTIONS(6043), + [anon_sym_0] = ACTIONS(6041), + [anon_sym__] = ACTIONS(6041), }, - [2465] = { - [sym_concatenation] = STATE(2620), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2620), - [sym_regex] = ACTIONS(5999), - [anon_sym_RBRACE] = ACTIONS(6001), - [anon_sym_EQ] = ACTIONS(6003), - [anon_sym_DASH] = ACTIONS(6003), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6003), - [anon_sym_COLON_QMARK] = ACTIONS(6003), - [anon_sym_COLON_DASH] = ACTIONS(6003), - [anon_sym_PERCENT] = ACTIONS(6003), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(2624), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2624), + [anon_sym_RBRACE] = ACTIONS(6045), + [anon_sym_EQ] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(6051), + [anon_sym_COLON] = ACTIONS(6047), + [anon_sym_COLON_QMARK] = ACTIONS(6047), + [anon_sym_COLON_DASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, - [2466] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6001), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [2035] = { + [sym_concatenation] = STATE(2627), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2627), + [anon_sym_RBRACE] = ACTIONS(6053), + [anon_sym_EQ] = ACTIONS(6055), + [anon_sym_DASH] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(6059), + [anon_sym_COLON] = ACTIONS(6055), + [anon_sym_COLON_QMARK] = ACTIONS(6055), + [anon_sym_COLON_DASH] = ACTIONS(6055), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, - [2467] = { - [sym__simple_heredoc_body] = ACTIONS(1886), - [sym__heredoc_body_beginning] = ACTIONS(1886), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_esac] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1886), - [anon_sym_LT_LT_LT] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), + [2036] = { + [anon_sym_RPAREN] = ACTIONS(6061), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), - [sym_word] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1888), }, - [2468] = { - [sym_concatenation] = STATE(2617), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2617), - [sym_regex] = ACTIONS(6007), - [anon_sym_RBRACE] = ACTIONS(5977), - [anon_sym_EQ] = ACTIONS(5993), - [anon_sym_DASH] = ACTIONS(5993), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(5995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(5993), - [anon_sym_COLON_QMARK] = ACTIONS(5993), - [anon_sym_COLON_DASH] = ACTIONS(5993), - [anon_sym_PERCENT] = ACTIONS(5993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(5977), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(6009), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), + [2037] = { + [anon_sym_BQUOTE] = ACTIONS(6061), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), }, - [2471] = { - [sym__simple_heredoc_body] = ACTIONS(1894), - [sym__heredoc_body_beginning] = ACTIONS(1894), - [sym_file_descriptor] = ACTIONS(1894), - [sym__concat] = ACTIONS(1894), - [sym_variable_name] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_esac] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_SEMI_SEMI] = ACTIONS(1894), - [anon_sym_PIPE_AMP] = ACTIONS(1894), - [anon_sym_AMP_AMP] = ACTIONS(1894), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_GT_GT] = ACTIONS(1894), - [anon_sym_AMP_GT] = ACTIONS(1896), - [anon_sym_AMP_GT_GT] = ACTIONS(1894), - [anon_sym_LT_AMP] = ACTIONS(1894), - [anon_sym_GT_AMP] = ACTIONS(1894), - [anon_sym_LT_LT] = ACTIONS(1896), - [anon_sym_LT_LT_DASH] = ACTIONS(1894), - [anon_sym_LT_LT_LT] = ACTIONS(1894), - [sym__special_characters] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1896), - [sym_raw_string] = ACTIONS(1894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), - [anon_sym_BQUOTE] = ACTIONS(1894), - [anon_sym_LT_LPAREN] = ACTIONS(1894), - [anon_sym_GT_LPAREN] = ACTIONS(1894), + [2038] = { + [anon_sym_RPAREN] = ACTIONS(6063), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1896), - [sym_word] = ACTIONS(1896), - [anon_sym_LF] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1896), }, - [2472] = { - [anon_sym_SEMI] = ACTIONS(6011), - [anon_sym_RPAREN] = ACTIONS(6009), - [anon_sym_SEMI_SEMI] = ACTIONS(6013), + [2039] = { + [sym_variable_assignment] = STATE(2039), + [sym_subscript] = STATE(1429), + [sym_concatenation] = STATE(2039), + [sym_string] = STATE(1424), + [sym_simple_expansion] = STATE(1424), + [sym_string_expansion] = STATE(1424), + [sym_expansion] = STATE(1424), + [sym_command_substitution] = STATE(1424), + [sym_process_substitution] = STATE(1424), + [aux_sym_declaration_command_repeat1] = STATE(2039), + [sym__simple_heredoc_body] = ACTIONS(2149), + [sym__heredoc_body_beginning] = ACTIONS(2149), + [sym_file_descriptor] = ACTIONS(2149), + [sym_variable_name] = ACTIONS(6065), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_done] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_SEMI_SEMI] = ACTIONS(2149), + [anon_sym_PIPE_AMP] = ACTIONS(2149), + [anon_sym_AMP_AMP] = ACTIONS(2149), + [anon_sym_PIPE_PIPE] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_GT] = ACTIONS(2154), + [anon_sym_GT_GT] = ACTIONS(2149), + [anon_sym_AMP_GT] = ACTIONS(2154), + [anon_sym_AMP_GT_GT] = ACTIONS(2149), + [anon_sym_LT_AMP] = ACTIONS(2149), + [anon_sym_GT_AMP] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2154), + [anon_sym_LT_LT_DASH] = ACTIONS(2149), + [anon_sym_LT_LT_LT] = ACTIONS(2149), + [sym__special_characters] = ACTIONS(6068), + [anon_sym_DQUOTE] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6074), + [sym_raw_string] = ACTIONS(6077), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6080), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6083), + [anon_sym_BQUOTE] = ACTIONS(6086), + [anon_sym_LT_LPAREN] = ACTIONS(6089), + [anon_sym_GT_LPAREN] = ACTIONS(6089), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6013), - [anon_sym_AMP] = ACTIONS(6013), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6092), + [sym_word] = ACTIONS(6095), + [anon_sym_LF] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2154), }, - [2473] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2625), - [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(6015), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6009), - [anon_sym_SEMI_SEMI] = ACTIONS(6017), - [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), + [2040] = { + [sym_string] = STATE(2630), + [sym_simple_expansion] = STATE(2630), + [sym_string_expansion] = STATE(2630), + [sym_expansion] = STATE(2630), + [sym_command_substitution] = STATE(2630), + [sym_process_substitution] = STATE(2630), + [sym__special_characters] = ACTIONS(6098), + [anon_sym_DQUOTE] = ACTIONS(3149), + [anon_sym_DOLLAR] = ACTIONS(3151), + [sym_raw_string] = ACTIONS(6098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3157), + [anon_sym_BQUOTE] = ACTIONS(3159), + [anon_sym_LT_LPAREN] = ACTIONS(3161), + [anon_sym_GT_LPAREN] = ACTIONS(3161), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6017), - [anon_sym_AMP] = ACTIONS(6015), + [sym_word] = ACTIONS(6098), }, - [2474] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2625), - [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(6015), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6009), - [anon_sym_SEMI_SEMI] = ACTIONS(6017), - [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), + [2041] = { + [aux_sym_concatenation_repeat1] = STATE(2631), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_done] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1045), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [2042] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_done] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1049), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [2043] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(6100), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [2044] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(6100), + [anon_sym_DOLLAR] = ACTIONS(6102), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), - [anon_sym_BQUOTE] = ACTIONS(339), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [2045] = { + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_done] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(6017), - [anon_sym_AMP] = ACTIONS(6015), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1083), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), }, - [2475] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(6009), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), + [2046] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_done] = 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(935), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1087), + [sym_word] = ACTIONS(1087), + [anon_sym_LF] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1087), }, - [2476] = { - [anon_sym_SEMI] = ACTIONS(6019), - [anon_sym_SEMI_SEMI] = ACTIONS(6021), - [anon_sym_BQUOTE] = ACTIONS(6009), + [2047] = { + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_done] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6021), - [anon_sym_AMP] = ACTIONS(6021), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1091), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), }, - [2477] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2628), - [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(6023), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(6025), - [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(6009), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6025), - [anon_sym_AMP] = ACTIONS(6023), - }, - [2478] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2628), - [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(6023), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(6025), - [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(6009), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(6025), - [anon_sym_AMP] = ACTIONS(6023), - }, - [2479] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(6027), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [2480] = { - [sym__simple_heredoc_body] = ACTIONS(1928), - [sym__heredoc_body_beginning] = ACTIONS(1928), - [sym_file_descriptor] = ACTIONS(1928), - [sym__concat] = ACTIONS(1928), - [sym_variable_name] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_esac] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_GT_GT] = ACTIONS(1928), - [anon_sym_AMP_GT] = ACTIONS(1930), - [anon_sym_AMP_GT_GT] = ACTIONS(1928), - [anon_sym_LT_AMP] = ACTIONS(1928), - [anon_sym_GT_AMP] = ACTIONS(1928), - [anon_sym_LT_LT] = ACTIONS(1930), - [anon_sym_LT_LT_DASH] = ACTIONS(1928), - [anon_sym_LT_LT_LT] = ACTIONS(1928), - [sym__special_characters] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1928), - [anon_sym_DOLLAR] = ACTIONS(1930), - [sym_raw_string] = ACTIONS(1928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), - [anon_sym_BQUOTE] = ACTIONS(1928), - [anon_sym_LT_LPAREN] = ACTIONS(1928), - [anon_sym_GT_LPAREN] = ACTIONS(1928), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1930), - [sym_word] = ACTIONS(1930), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), - }, - [2481] = { - [anon_sym_SEMI] = ACTIONS(6029), - [anon_sym_RPAREN] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), - }, - [2482] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2632), - [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(6033), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [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(6035), - [anon_sym_AMP] = ACTIONS(6033), - }, - [2483] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2632), - [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(6033), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [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(6035), - [anon_sym_AMP] = ACTIONS(6033), - }, - [2484] = { - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_esac] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1732), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [2485] = { - [aux_sym_concatenation_repeat1] = STATE(2485), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(6037), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_esac] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1732), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - }, - [2486] = { - [sym__simple_heredoc_body] = ACTIONS(1737), - [sym__heredoc_body_beginning] = ACTIONS(1737), - [sym_file_descriptor] = ACTIONS(1737), - [sym__concat] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_esac] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_SEMI_SEMI] = ACTIONS(1737), - [anon_sym_PIPE_AMP] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1737), - [anon_sym_AMP_GT] = ACTIONS(1739), - [anon_sym_AMP_GT_GT] = ACTIONS(1737), - [anon_sym_LT_AMP] = ACTIONS(1737), - [anon_sym_GT_AMP] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_LT_LT_DASH] = ACTIONS(1737), - [anon_sym_LT_LT_LT] = ACTIONS(1737), - [sym__special_characters] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1739), - [sym_raw_string] = ACTIONS(1737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1737), - [anon_sym_BQUOTE] = ACTIONS(1737), - [anon_sym_LT_LPAREN] = ACTIONS(1737), - [anon_sym_GT_LPAREN] = ACTIONS(1737), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1739), - [sym_word] = ACTIONS(1739), - [anon_sym_LF] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1739), - }, - [2487] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(6040), - [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), - }, - [2488] = { - [sym_concatenation] = STATE(2637), - [sym_string] = STATE(2636), - [sym_simple_expansion] = STATE(2636), - [sym_string_expansion] = STATE(2636), - [sym_expansion] = STATE(2636), - [sym_command_substitution] = STATE(2636), - [sym_process_substitution] = STATE(2636), - [anon_sym_RBRACE] = ACTIONS(6042), - [sym__special_characters] = ACTIONS(6044), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(6046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(6046), - }, - [2489] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(6048), + [2048] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(6104), [sym_comment] = ACTIONS(57), }, - [2490] = { - [sym_concatenation] = STATE(2641), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2641), - [anon_sym_RBRACE] = ACTIONS(6050), - [anon_sym_EQ] = ACTIONS(6052), - [anon_sym_DASH] = ACTIONS(6052), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6054), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(6056), - [anon_sym_COLON] = ACTIONS(6052), - [anon_sym_COLON_QMARK] = ACTIONS(6052), - [anon_sym_COLON_DASH] = ACTIONS(6052), - [anon_sym_PERCENT] = ACTIONS(6052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [2049] = { + [sym_subscript] = STATE(2637), + [sym_variable_name] = ACTIONS(6106), + [anon_sym_DASH] = ACTIONS(6108), + [anon_sym_DOLLAR] = ACTIONS(6108), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6110), + [anon_sym_STAR] = ACTIONS(6112), + [anon_sym_AT] = ACTIONS(6112), + [anon_sym_QMARK] = ACTIONS(6112), + [anon_sym_0] = ACTIONS(6110), + [anon_sym__] = ACTIONS(6110), }, - [2491] = { + [2050] = { + [sym_concatenation] = STATE(2640), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2640), + [anon_sym_RBRACE] = ACTIONS(6114), + [anon_sym_EQ] = ACTIONS(6116), + [anon_sym_DASH] = ACTIONS(6116), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6118), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(6120), + [anon_sym_COLON] = ACTIONS(6116), + [anon_sym_COLON_QMARK] = ACTIONS(6116), + [anon_sym_COLON_DASH] = ACTIONS(6116), + [anon_sym_PERCENT] = ACTIONS(6116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2051] = { [sym_concatenation] = STATE(2643), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), [aux_sym_expansion_repeat1] = STATE(2643), - [anon_sym_RBRACE] = ACTIONS(6042), - [anon_sym_EQ] = ACTIONS(6058), - [anon_sym_DASH] = ACTIONS(6058), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6060), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(6062), - [anon_sym_COLON] = ACTIONS(6058), - [anon_sym_COLON_QMARK] = ACTIONS(6058), - [anon_sym_COLON_DASH] = ACTIONS(6058), - [anon_sym_PERCENT] = ACTIONS(6058), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(6122), + [anon_sym_EQ] = ACTIONS(6124), + [anon_sym_DASH] = ACTIONS(6124), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(6128), + [anon_sym_COLON] = ACTIONS(6124), + [anon_sym_COLON_QMARK] = ACTIONS(6124), + [anon_sym_COLON_DASH] = ACTIONS(6124), + [anon_sym_PERCENT] = ACTIONS(6124), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, - [2492] = { - [sym__simple_heredoc_body] = ACTIONS(1838), - [sym__heredoc_body_beginning] = ACTIONS(1838), - [sym_file_descriptor] = ACTIONS(1838), - [sym__concat] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_esac] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1840), - [anon_sym_SEMI_SEMI] = ACTIONS(1838), - [anon_sym_PIPE_AMP] = ACTIONS(1838), - [anon_sym_AMP_AMP] = ACTIONS(1838), - [anon_sym_PIPE_PIPE] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_GT_GT] = ACTIONS(1838), - [anon_sym_AMP_GT] = ACTIONS(1840), - [anon_sym_AMP_GT_GT] = ACTIONS(1838), - [anon_sym_LT_AMP] = ACTIONS(1838), - [anon_sym_GT_AMP] = ACTIONS(1838), - [anon_sym_LT_LT] = ACTIONS(1840), - [anon_sym_LT_LT_DASH] = ACTIONS(1838), - [anon_sym_LT_LT_LT] = ACTIONS(1838), - [sym__special_characters] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1840), - [sym_raw_string] = ACTIONS(1838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_LT_LPAREN] = ACTIONS(1838), - [anon_sym_GT_LPAREN] = ACTIONS(1838), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1840), - [sym_word] = ACTIONS(1840), - [anon_sym_LF] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1840), - }, - [2493] = { - [sym_concatenation] = STATE(2646), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2646), - [sym_regex] = ACTIONS(6064), - [anon_sym_RBRACE] = ACTIONS(6066), - [anon_sym_EQ] = ACTIONS(6068), - [anon_sym_DASH] = ACTIONS(6068), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6070), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6068), - [anon_sym_COLON_QMARK] = ACTIONS(6068), - [anon_sym_COLON_DASH] = ACTIONS(6068), - [anon_sym_PERCENT] = ACTIONS(6068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6066), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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__simple_heredoc_body] = ACTIONS(1886), - [sym__heredoc_body_beginning] = ACTIONS(1886), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_esac] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1886), - [anon_sym_LT_LT_LT] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), - [sym_word] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1888), - }, - [2496] = { - [sym_concatenation] = STATE(2643), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2643), - [sym_regex] = ACTIONS(6072), - [anon_sym_RBRACE] = ACTIONS(6042), - [anon_sym_EQ] = ACTIONS(6058), - [anon_sym_DASH] = ACTIONS(6058), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6060), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6058), - [anon_sym_COLON_QMARK] = ACTIONS(6058), - [anon_sym_COLON_DASH] = ACTIONS(6058), - [anon_sym_PERCENT] = ACTIONS(6058), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), - }, - [2497] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6042), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_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_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(6074), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [2499] = { - [sym__simple_heredoc_body] = ACTIONS(1894), - [sym__heredoc_body_beginning] = ACTIONS(1894), - [sym_file_descriptor] = ACTIONS(1894), - [sym__concat] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_esac] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_SEMI_SEMI] = ACTIONS(1894), - [anon_sym_PIPE_AMP] = ACTIONS(1894), - [anon_sym_AMP_AMP] = ACTIONS(1894), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_GT_GT] = ACTIONS(1894), - [anon_sym_AMP_GT] = ACTIONS(1896), - [anon_sym_AMP_GT_GT] = ACTIONS(1894), - [anon_sym_LT_AMP] = ACTIONS(1894), - [anon_sym_GT_AMP] = ACTIONS(1894), - [anon_sym_LT_LT] = ACTIONS(1896), - [anon_sym_LT_LT_DASH] = ACTIONS(1894), - [anon_sym_LT_LT_LT] = ACTIONS(1894), - [sym__special_characters] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1896), - [sym_raw_string] = ACTIONS(1894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), - [anon_sym_BQUOTE] = ACTIONS(1894), - [anon_sym_LT_LPAREN] = ACTIONS(1894), - [anon_sym_GT_LPAREN] = ACTIONS(1894), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1896), - [sym_word] = ACTIONS(1896), - [anon_sym_LF] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1896), - }, - [2500] = { - [anon_sym_SEMI] = ACTIONS(6076), - [anon_sym_RPAREN] = ACTIONS(6074), - [anon_sym_SEMI_SEMI] = ACTIONS(6078), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6078), - [anon_sym_AMP] = ACTIONS(6078), - }, - [2501] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2651), - [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(6080), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6074), - [anon_sym_SEMI_SEMI] = ACTIONS(6082), - [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(6082), - [anon_sym_AMP] = ACTIONS(6080), - }, - [2502] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2651), - [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(6080), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6074), - [anon_sym_SEMI_SEMI] = ACTIONS(6082), - [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(6082), - [anon_sym_AMP] = ACTIONS(6080), - }, - [2503] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(6074), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [2504] = { - [anon_sym_SEMI] = ACTIONS(6084), - [anon_sym_SEMI_SEMI] = ACTIONS(6086), - [anon_sym_BQUOTE] = ACTIONS(6074), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6086), - [anon_sym_AMP] = ACTIONS(6086), - }, - [2505] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2654), - [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(6088), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(6090), - [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(6074), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6090), - [anon_sym_AMP] = ACTIONS(6088), - }, - [2506] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2654), - [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(6088), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(6090), - [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(6074), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(6090), - [anon_sym_AMP] = ACTIONS(6088), - }, - [2507] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(6092), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), - }, - [2508] = { - [sym__simple_heredoc_body] = ACTIONS(1928), - [sym__heredoc_body_beginning] = ACTIONS(1928), - [sym_file_descriptor] = ACTIONS(1928), - [sym__concat] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_esac] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_GT_GT] = ACTIONS(1928), - [anon_sym_AMP_GT] = ACTIONS(1930), - [anon_sym_AMP_GT_GT] = ACTIONS(1928), - [anon_sym_LT_AMP] = ACTIONS(1928), - [anon_sym_GT_AMP] = ACTIONS(1928), - [anon_sym_LT_LT] = ACTIONS(1930), - [anon_sym_LT_LT_DASH] = ACTIONS(1928), - [anon_sym_LT_LT_LT] = ACTIONS(1928), - [sym__special_characters] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1928), - [anon_sym_DOLLAR] = ACTIONS(1930), - [sym_raw_string] = ACTIONS(1928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), - [anon_sym_BQUOTE] = ACTIONS(1928), - [anon_sym_LT_LPAREN] = ACTIONS(1928), - [anon_sym_GT_LPAREN] = ACTIONS(1928), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1930), - [sym_word] = ACTIONS(1930), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), - }, - [2509] = { - [anon_sym_SEMI] = ACTIONS(6094), - [anon_sym_RPAREN] = ACTIONS(6092), - [anon_sym_SEMI_SEMI] = ACTIONS(6096), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6096), - [anon_sym_AMP] = ACTIONS(6096), - }, - [2510] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2658), - [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(6098), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6092), - [anon_sym_SEMI_SEMI] = ACTIONS(6100), - [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(6100), - [anon_sym_AMP] = ACTIONS(6098), - }, - [2511] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2658), - [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(6098), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6092), - [anon_sym_SEMI_SEMI] = ACTIONS(6100), - [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(6100), - [anon_sym_AMP] = ACTIONS(6098), - }, - [2512] = { - [sym__simple_heredoc_body] = ACTIONS(2934), - [sym__heredoc_body_beginning] = ACTIONS(2934), - [sym_file_descriptor] = ACTIONS(2934), - [sym__concat] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_esac] = ACTIONS(2936), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_SEMI_SEMI] = ACTIONS(2934), - [anon_sym_PIPE_AMP] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_EQ_TILDE] = ACTIONS(2936), - [anon_sym_EQ_EQ] = ACTIONS(2936), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_AMP_GT] = ACTIONS(2936), - [anon_sym_AMP_GT_GT] = ACTIONS(2934), - [anon_sym_LT_AMP] = ACTIONS(2934), - [anon_sym_GT_AMP] = ACTIONS(2934), - [anon_sym_LT_LT] = ACTIONS(2936), - [anon_sym_LT_LT_DASH] = ACTIONS(2934), - [anon_sym_LT_LT_LT] = ACTIONS(2934), - [sym__special_characters] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_LT_LPAREN] = ACTIONS(2934), - [anon_sym_GT_LPAREN] = ACTIONS(2934), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2936), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), - }, - [2513] = { - [sym__simple_heredoc_body] = ACTIONS(2948), - [sym__heredoc_body_beginning] = ACTIONS(2948), - [sym_file_descriptor] = ACTIONS(2948), - [sym__concat] = ACTIONS(2948), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_esac] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_SEMI_SEMI] = ACTIONS(2948), - [anon_sym_PIPE_AMP] = ACTIONS(2948), - [anon_sym_AMP_AMP] = ACTIONS(2948), - [anon_sym_PIPE_PIPE] = ACTIONS(2948), - [anon_sym_EQ_TILDE] = ACTIONS(2950), - [anon_sym_EQ_EQ] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_GT_GT] = ACTIONS(2948), - [anon_sym_AMP_GT] = ACTIONS(2950), - [anon_sym_AMP_GT_GT] = ACTIONS(2948), - [anon_sym_LT_AMP] = ACTIONS(2948), - [anon_sym_GT_AMP] = ACTIONS(2948), - [anon_sym_LT_LT] = ACTIONS(2950), - [anon_sym_LT_LT_DASH] = ACTIONS(2948), - [anon_sym_LT_LT_LT] = ACTIONS(2948), - [sym__special_characters] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2948), - [anon_sym_BQUOTE] = ACTIONS(2948), - [anon_sym_LT_LPAREN] = ACTIONS(2948), - [anon_sym_GT_LPAREN] = ACTIONS(2948), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - }, - [2514] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6102), + [2052] = { + [anon_sym_RPAREN] = ACTIONS(6130), [sym_comment] = ACTIONS(57), }, - [2515] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6104), + [2053] = { + [anon_sym_BQUOTE] = ACTIONS(6130), [sym_comment] = ACTIONS(57), }, - [2516] = { - [anon_sym_RBRACE] = ACTIONS(6104), + [2054] = { + [anon_sym_RPAREN] = ACTIONS(6132), [sym_comment] = ACTIONS(57), }, - [2517] = { - [sym_concatenation] = STATE(2663), + [2055] = { + [sym_concatenation] = STATE(2055), + [sym_string] = STATE(1434), + [sym_simple_expansion] = STATE(1434), + [sym_string_expansion] = STATE(1434), + [sym_expansion] = STATE(1434), + [sym_command_substitution] = STATE(1434), + [sym_process_substitution] = STATE(1434), + [aux_sym_unset_command_repeat1] = STATE(2055), + [sym__simple_heredoc_body] = ACTIONS(2222), + [sym__heredoc_body_beginning] = ACTIONS(2222), + [sym_file_descriptor] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_done] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_SEMI_SEMI] = ACTIONS(2222), + [anon_sym_PIPE_AMP] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2222), + [anon_sym_AMP_GT] = ACTIONS(2224), + [anon_sym_AMP_GT_GT] = ACTIONS(2222), + [anon_sym_LT_AMP] = ACTIONS(2222), + [anon_sym_GT_AMP] = ACTIONS(2222), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_LT_LT_DASH] = ACTIONS(2222), + [anon_sym_LT_LT_LT] = ACTIONS(2222), + [sym__special_characters] = ACTIONS(6134), + [anon_sym_DQUOTE] = ACTIONS(6137), + [anon_sym_DOLLAR] = ACTIONS(6140), + [sym_raw_string] = ACTIONS(6143), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6149), + [anon_sym_BQUOTE] = ACTIONS(6152), + [anon_sym_LT_LPAREN] = ACTIONS(6155), + [anon_sym_GT_LPAREN] = ACTIONS(6155), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6158), + [sym_word] = ACTIONS(6161), + [anon_sym_LF] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2224), + }, + [2056] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_done] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [2057] = { + [aux_sym_concatenation_repeat1] = STATE(2057), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(6164), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_done] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [2058] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_done] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_EQ_TILDE] = ACTIONS(2301), + [anon_sym_EQ_EQ] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [2059] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(6167), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [2060] = { + [sym_concatenation] = STATE(2650), + [sym_string] = STATE(2649), + [sym_simple_expansion] = STATE(2649), + [sym_string_expansion] = STATE(2649), + [sym_expansion] = STATE(2649), + [sym_command_substitution] = STATE(2649), + [sym_process_substitution] = STATE(2649), + [anon_sym_RBRACE] = ACTIONS(6169), + [sym__special_characters] = ACTIONS(6171), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(6173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6173), + }, + [2061] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(6175), + [sym_comment] = ACTIONS(57), + }, + [2062] = { + [sym_concatenation] = STATE(2654), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2654), + [anon_sym_RBRACE] = ACTIONS(6177), + [anon_sym_EQ] = ACTIONS(6179), + [anon_sym_DASH] = ACTIONS(6179), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6181), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [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(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2063] = { + [sym_concatenation] = STATE(2656), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2656), + [anon_sym_RBRACE] = ACTIONS(6169), + [anon_sym_EQ] = ACTIONS(6185), + [anon_sym_DASH] = ACTIONS(6185), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6187), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [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(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2064] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_done] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_EQ_TILDE] = ACTIONS(2394), + [anon_sym_EQ_EQ] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [2065] = { + [sym_concatenation] = STATE(2659), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2659), + [sym_regex] = ACTIONS(6191), + [anon_sym_RBRACE] = ACTIONS(6193), + [anon_sym_EQ] = ACTIONS(6195), + [anon_sym_DASH] = ACTIONS(6195), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6197), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [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(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2066] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6193), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2067] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_done] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_EQ_TILDE] = ACTIONS(2442), + [anon_sym_EQ_EQ] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [2068] = { + [sym_concatenation] = STATE(2656), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2656), + [sym_regex] = ACTIONS(6199), + [anon_sym_RBRACE] = ACTIONS(6169), + [anon_sym_EQ] = ACTIONS(6185), + [anon_sym_DASH] = ACTIONS(6185), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6187), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [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(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2069] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6169), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2070] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_done] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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_EQ_TILDE] = ACTIONS(2448), + [anon_sym_EQ_EQ] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [2071] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_done] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_EQ_TILDE] = ACTIONS(2486), + [anon_sym_EQ_EQ] = ACTIONS(2486), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [2072] = { + [sym_concatenation] = STATE(1207), [sym_string] = STATE(2662), [sym_simple_expansion] = STATE(2662), [sym_string_expansion] = STATE(2662), [sym_expansion] = STATE(2662), [sym_command_substitution] = STATE(2662), [sym_process_substitution] = STATE(2662), - [anon_sym_RBRACE] = ACTIONS(6104), - [sym__special_characters] = ACTIONS(6106), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(6108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), + [sym__special_characters] = ACTIONS(6201), + [anon_sym_DQUOTE] = ACTIONS(4866), + [anon_sym_DOLLAR] = ACTIONS(4868), + [sym_raw_string] = ACTIONS(6203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4872), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4874), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LT_LPAREN] = ACTIONS(4878), + [anon_sym_GT_LPAREN] = ACTIONS(4878), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6203), + }, + [2073] = { + [sym_file_redirect] = STATE(1463), + [sym_heredoc_redirect] = STATE(1463), + [sym_herestring_redirect] = STATE(1463), + [aux_sym_redirected_statement_repeat1] = STATE(1463), + [sym__simple_heredoc_body] = ACTIONS(2516), + [sym__heredoc_body_beginning] = ACTIONS(2516), + [sym_file_descriptor] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_done] = ACTIONS(2516), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), + }, + [2074] = { + [sym_file_redirect] = STATE(1463), + [sym_heredoc_redirect] = STATE(1463), + [sym_herestring_redirect] = STATE(1463), + [aux_sym_redirected_statement_repeat1] = STATE(1463), + [sym__simple_heredoc_body] = ACTIONS(2516), + [sym__heredoc_body_beginning] = ACTIONS(2516), + [sym_file_descriptor] = ACTIONS(2516), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_done] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), + }, + [2075] = { + [sym_file_redirect] = STATE(1463), + [sym_heredoc_redirect] = STATE(1463), + [sym_herestring_redirect] = STATE(1463), + [aux_sym_redirected_statement_repeat1] = STATE(1463), + [sym__simple_heredoc_body] = ACTIONS(2520), + [sym__heredoc_body_beginning] = ACTIONS(2520), + [sym_file_descriptor] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_done] = ACTIONS(2520), + [anon_sym_PIPE] = ACTIONS(3197), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2520), + [anon_sym_AMP_GT] = ACTIONS(2522), + [anon_sym_AMP_GT_GT] = ACTIONS(2520), + [anon_sym_LT_AMP] = ACTIONS(2520), + [anon_sym_GT_AMP] = ACTIONS(2520), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + }, + [2076] = { + [sym_file_redirect] = STATE(1463), + [sym_heredoc_redirect] = STATE(1463), + [sym_herestring_redirect] = STATE(1463), + [aux_sym_redirected_statement_repeat1] = STATE(1463), + [sym__simple_heredoc_body] = ACTIONS(2520), + [sym__heredoc_body_beginning] = ACTIONS(2520), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_done] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(3197), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + }, + [2077] = { + [aux_sym_concatenation_repeat1] = STATE(2664), + [sym__simple_heredoc_body] = ACTIONS(1009), + [sym__heredoc_body_beginning] = ACTIONS(1009), + [sym_file_descriptor] = ACTIONS(1009), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_done] = ACTIONS(1009), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_SEMI_SEMI] = ACTIONS(1009), + [anon_sym_PIPE_AMP] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1009), + [anon_sym_PIPE_PIPE] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_GT] = ACTIONS(1013), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(1013), + [anon_sym_AMP_GT_GT] = ACTIONS(1009), + [anon_sym_LT_AMP] = ACTIONS(1009), + [anon_sym_GT_AMP] = ACTIONS(1009), + [anon_sym_LT_LT] = ACTIONS(1013), + [anon_sym_LT_LT_DASH] = ACTIONS(1009), + [anon_sym_LT_LT_LT] = ACTIONS(1009), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1013), + }, + [2078] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(2667), + [anon_sym_DQUOTE] = ACTIONS(6207), + [anon_sym_DOLLAR] = ACTIONS(6209), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [2079] = { + [sym_string] = STATE(2669), + [anon_sym_DASH] = ACTIONS(6211), + [anon_sym_DQUOTE] = ACTIONS(4866), + [anon_sym_DOLLAR] = ACTIONS(6211), + [sym_raw_string] = ACTIONS(6213), + [anon_sym_POUND] = ACTIONS(6211), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6215), + [anon_sym_STAR] = ACTIONS(6217), + [anon_sym_AT] = ACTIONS(6217), + [anon_sym_QMARK] = ACTIONS(6217), + [anon_sym_0] = ACTIONS(6215), + [anon_sym__] = ACTIONS(6215), + }, + [2080] = { + [aux_sym_concatenation_repeat1] = STATE(2664), + [sym__simple_heredoc_body] = ACTIONS(1027), + [sym__heredoc_body_beginning] = ACTIONS(1027), + [sym_file_descriptor] = ACTIONS(1027), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_done] = ACTIONS(1027), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_SEMI_SEMI] = ACTIONS(1027), + [anon_sym_PIPE_AMP] = ACTIONS(1027), + [anon_sym_AMP_AMP] = ACTIONS(1027), + [anon_sym_PIPE_PIPE] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_AMP_GT] = ACTIONS(1029), + [anon_sym_AMP_GT_GT] = ACTIONS(1027), + [anon_sym_LT_AMP] = ACTIONS(1027), + [anon_sym_GT_AMP] = ACTIONS(1027), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_LT_LT_DASH] = ACTIONS(1027), + [anon_sym_LT_LT_LT] = ACTIONS(1027), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + }, + [2081] = { + [sym_subscript] = STATE(2674), + [sym_variable_name] = ACTIONS(6219), + [anon_sym_BANG] = ACTIONS(6221), + [anon_sym_DASH] = ACTIONS(6223), + [anon_sym_DOLLAR] = ACTIONS(6223), + [anon_sym_POUND] = ACTIONS(6221), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6225), + [anon_sym_STAR] = ACTIONS(6227), + [anon_sym_AT] = ACTIONS(6227), + [anon_sym_QMARK] = ACTIONS(6227), + [anon_sym_0] = ACTIONS(6225), + [anon_sym__] = ACTIONS(6225), + }, + [2082] = { + [sym__statements] = STATE(2675), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [2083] = { + [sym__statements] = STATE(2676), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [2084] = { + [sym__statements] = STATE(2677), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [2085] = { + [aux_sym_concatenation_repeat1] = STATE(2664), + [sym__simple_heredoc_body] = ACTIONS(2528), + [sym__heredoc_body_beginning] = ACTIONS(2528), + [sym_file_descriptor] = ACTIONS(2528), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_done] = ACTIONS(2528), + [anon_sym_PIPE] = ACTIONS(2530), + [anon_sym_SEMI_SEMI] = ACTIONS(2528), + [anon_sym_PIPE_AMP] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_GT] = ACTIONS(2530), + [anon_sym_GT_GT] = ACTIONS(2528), + [anon_sym_AMP_GT] = ACTIONS(2530), + [anon_sym_AMP_GT_GT] = ACTIONS(2528), + [anon_sym_LT_AMP] = ACTIONS(2528), + [anon_sym_GT_AMP] = ACTIONS(2528), + [anon_sym_LT_LT] = ACTIONS(2530), + [anon_sym_LT_LT_DASH] = ACTIONS(2528), + [anon_sym_LT_LT_LT] = ACTIONS(2528), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2530), + }, + [2086] = { + [aux_sym_concatenation_repeat1] = STATE(2664), + [sym__simple_heredoc_body] = ACTIONS(2532), + [sym__heredoc_body_beginning] = ACTIONS(2532), + [sym_file_descriptor] = ACTIONS(2532), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_done] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_SEMI_SEMI] = ACTIONS(2532), + [anon_sym_PIPE_AMP] = ACTIONS(2532), + [anon_sym_AMP_AMP] = ACTIONS(2532), + [anon_sym_PIPE_PIPE] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_AMP_GT] = ACTIONS(2534), + [anon_sym_AMP_GT_GT] = ACTIONS(2532), + [anon_sym_LT_AMP] = ACTIONS(2532), + [anon_sym_GT_AMP] = ACTIONS(2532), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_LT_LT_DASH] = ACTIONS(2532), + [anon_sym_LT_LT_LT] = ACTIONS(2532), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2534), + }, + [2087] = { + [sym_file_descriptor] = ACTIONS(2536), + [sym_variable_name] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_LPAREN_LPAREN] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_done] = ACTIONS(6229), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2540), + [anon_sym_typeset] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_readonly] = ACTIONS(2540), + [anon_sym_local] = ACTIONS(2540), + [anon_sym_unset] = ACTIONS(2540), + [anon_sym_unsetenv] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_GT] = ACTIONS(2540), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_AMP_GT] = ACTIONS(2540), + [anon_sym_AMP_GT_GT] = ACTIONS(2536), + [anon_sym_LT_AMP] = ACTIONS(2536), + [anon_sym_GT_AMP] = ACTIONS(2536), + [sym__special_characters] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2536), + [anon_sym_DOLLAR] = ACTIONS(2540), + [sym_raw_string] = ACTIONS(2536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2536), + [anon_sym_BQUOTE] = ACTIONS(2536), + [anon_sym_LT_LPAREN] = ACTIONS(2536), + [anon_sym_GT_LPAREN] = ACTIONS(2536), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2540), + }, + [2088] = { + [sym_file_redirect] = STATE(2088), + [sym_heredoc_redirect] = STATE(2088), + [sym_herestring_redirect] = STATE(2088), + [aux_sym_redirected_statement_repeat1] = STATE(2088), + [sym__simple_heredoc_body] = ACTIONS(2542), + [sym__heredoc_body_beginning] = ACTIONS(2542), + [sym_file_descriptor] = ACTIONS(6231), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_done] = ACTIONS(2542), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_SEMI_SEMI] = ACTIONS(2542), + [anon_sym_PIPE_AMP] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(6234), + [anon_sym_GT] = ACTIONS(6234), + [anon_sym_GT_GT] = ACTIONS(6237), + [anon_sym_AMP_GT] = ACTIONS(6234), + [anon_sym_AMP_GT_GT] = ACTIONS(6237), + [anon_sym_LT_AMP] = ACTIONS(6237), + [anon_sym_GT_AMP] = ACTIONS(6237), + [anon_sym_LT_LT] = ACTIONS(2555), + [anon_sym_LT_LT_DASH] = ACTIONS(2558), + [anon_sym_LT_LT_LT] = ACTIONS(6240), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2547), + }, + [2089] = { + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_done] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(2566), + [anon_sym_EQ_EQ] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2566), + [sym_raw_string] = ACTIONS(2564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2564), + [anon_sym_LT_LPAREN] = ACTIONS(2564), + [anon_sym_GT_LPAREN] = ACTIONS(2564), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2566), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [2090] = { + [aux_sym_concatenation_repeat1] = STATE(1441), + [sym__simple_heredoc_body] = ACTIONS(2568), + [sym__heredoc_body_beginning] = ACTIONS(2568), + [sym_file_descriptor] = ACTIONS(2568), + [sym__concat] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_done] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_SEMI_SEMI] = ACTIONS(2568), + [anon_sym_PIPE_AMP] = ACTIONS(2568), + [anon_sym_AMP_AMP] = ACTIONS(2568), + [anon_sym_PIPE_PIPE] = ACTIONS(2568), + [anon_sym_EQ_TILDE] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_AMP_GT] = ACTIONS(2570), + [anon_sym_AMP_GT_GT] = ACTIONS(2568), + [anon_sym_LT_AMP] = ACTIONS(2568), + [anon_sym_GT_AMP] = ACTIONS(2568), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_LT_LT_DASH] = ACTIONS(2568), + [anon_sym_LT_LT_LT] = ACTIONS(2568), + [sym__special_characters] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2568), + [anon_sym_DOLLAR] = ACTIONS(2570), + [sym_raw_string] = ACTIONS(2568), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2568), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2568), + [anon_sym_BQUOTE] = ACTIONS(2568), + [anon_sym_LT_LPAREN] = ACTIONS(2568), + [anon_sym_GT_LPAREN] = ACTIONS(2568), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2570), + [anon_sym_LF] = ACTIONS(2568), + [anon_sym_AMP] = ACTIONS(2570), + }, + [2091] = { + [aux_sym_concatenation_repeat1] = STATE(1441), + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [sym__concat] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_done] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(2566), + [anon_sym_EQ_EQ] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2566), + [sym_raw_string] = ACTIONS(2564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2564), + [anon_sym_LT_LPAREN] = ACTIONS(2564), + [anon_sym_GT_LPAREN] = ACTIONS(2564), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2566), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [2092] = { + [sym_concatenation] = STATE(2092), + [sym_string] = STATE(1466), + [sym_simple_expansion] = STATE(1466), + [sym_string_expansion] = STATE(1466), + [sym_expansion] = STATE(1466), + [sym_command_substitution] = STATE(1466), + [sym_process_substitution] = STATE(1466), + [aux_sym_command_repeat2] = STATE(2092), + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_done] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(6243), + [anon_sym_EQ_EQ] = ACTIONS(6243), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(6246), + [anon_sym_DQUOTE] = ACTIONS(6249), + [anon_sym_DOLLAR] = ACTIONS(6252), + [sym_raw_string] = ACTIONS(6255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6258), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6261), + [anon_sym_BQUOTE] = ACTIONS(6264), + [anon_sym_LT_LPAREN] = ACTIONS(6267), + [anon_sym_GT_LPAREN] = ACTIONS(6267), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6270), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [2093] = { + [sym_file_descriptor] = ACTIONS(1213), + [sym_variable_name] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_done] = ACTIONS(6229), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_function] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_typeset] = ACTIONS(1217), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_local] = ACTIONS(1217), + [anon_sym_unset] = ACTIONS(1217), + [anon_sym_unsetenv] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_GT] = ACTIONS(1213), + [anon_sym_AMP_GT] = ACTIONS(1217), + [anon_sym_AMP_GT_GT] = ACTIONS(1213), + [anon_sym_LT_AMP] = ACTIONS(1213), + [anon_sym_GT_AMP] = ACTIONS(1213), + [sym__special_characters] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1217), + [sym_raw_string] = ACTIONS(1213), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1213), + [anon_sym_BQUOTE] = ACTIONS(1213), + [anon_sym_LT_LPAREN] = ACTIONS(1213), + [anon_sym_GT_LPAREN] = ACTIONS(1213), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1217), + }, + [2094] = { + [anon_sym_SEMI] = ACTIONS(6273), + [anon_sym_done] = ACTIONS(2538), + [anon_sym_SEMI_SEMI] = ACTIONS(6275), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6275), + [anon_sym_AMP] = ACTIONS(6275), + }, + [2095] = { + [sym_concatenation] = STATE(2092), + [sym_string] = STATE(1466), + [sym_simple_expansion] = STATE(1466), + [sym_string_expansion] = STATE(1466), + [sym_expansion] = STATE(1466), + [sym_command_substitution] = STATE(1466), + [sym_process_substitution] = STATE(1466), + [aux_sym_command_repeat2] = STATE(2092), + [sym__simple_heredoc_body] = ACTIONS(2628), + [sym__heredoc_body_beginning] = ACTIONS(2628), + [sym_file_descriptor] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym_done] = ACTIONS(2630), + [anon_sym_PIPE] = ACTIONS(2630), + [anon_sym_SEMI_SEMI] = ACTIONS(2628), + [anon_sym_PIPE_AMP] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_EQ_TILDE] = ACTIONS(3211), + [anon_sym_EQ_EQ] = ACTIONS(3211), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_GT] = ACTIONS(2630), + [anon_sym_GT_GT] = ACTIONS(2628), + [anon_sym_AMP_GT] = ACTIONS(2630), + [anon_sym_AMP_GT_GT] = ACTIONS(2628), + [anon_sym_LT_AMP] = ACTIONS(2628), + [anon_sym_GT_AMP] = ACTIONS(2628), + [anon_sym_LT_LT] = ACTIONS(2630), + [anon_sym_LT_LT_DASH] = ACTIONS(2628), + [anon_sym_LT_LT_LT] = ACTIONS(2628), + [sym__special_characters] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(3215), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1727), + [anon_sym_LT_LPAREN] = ACTIONS(1729), + [anon_sym_GT_LPAREN] = ACTIONS(1729), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3217), + [anon_sym_LF] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2630), + }, + [2096] = { + [aux_sym_concatenation_repeat1] = STATE(2096), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(3082), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [2097] = { + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_fi] = ACTIONS(1373), + [anon_sym_elif] = ACTIONS(1373), + [anon_sym_else] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [2098] = { + [sym_concatenation] = STATE(2680), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(2680), + [anon_sym_RPAREN] = ACTIONS(6277), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [2099] = { + [aux_sym_concatenation_repeat1] = STATE(2682), + [sym__simple_heredoc_body] = ACTIONS(1393), + [sym__heredoc_body_beginning] = ACTIONS(1393), + [sym_file_descriptor] = ACTIONS(1393), + [sym__concat] = ACTIONS(6279), + [sym_variable_name] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_fi] = ACTIONS(1397), + [anon_sym_elif] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_SEMI_SEMI] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_AMP_GT] = ACTIONS(1397), + [anon_sym_AMP_GT_GT] = ACTIONS(1393), + [anon_sym_LT_AMP] = ACTIONS(1393), + [anon_sym_GT_AMP] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_LT_LT_DASH] = ACTIONS(1393), + [anon_sym_LT_LT_LT] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1397), + [sym_raw_string] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1393), + [anon_sym_GT_LPAREN] = ACTIONS(1393), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1397), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1397), + }, + [2100] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(2685), + [anon_sym_DQUOTE] = ACTIONS(6281), + [anon_sym_DOLLAR] = ACTIONS(6283), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [2101] = { + [sym_string] = STATE(2687), + [anon_sym_DASH] = ACTIONS(6285), + [anon_sym_DQUOTE] = ACTIONS(4904), + [anon_sym_DOLLAR] = ACTIONS(6285), + [sym_raw_string] = ACTIONS(6287), + [anon_sym_POUND] = ACTIONS(6285), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6289), + [anon_sym_STAR] = ACTIONS(6291), + [anon_sym_AT] = ACTIONS(6291), + [anon_sym_QMARK] = ACTIONS(6291), + [anon_sym_0] = ACTIONS(6289), + [anon_sym__] = ACTIONS(6289), + }, + [2102] = { + [aux_sym_concatenation_repeat1] = STATE(2682), + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym__concat] = ACTIONS(6279), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_fi] = ACTIONS(1373), + [anon_sym_elif] = ACTIONS(1373), + [anon_sym_else] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [2103] = { + [sym_subscript] = STATE(2692), + [sym_variable_name] = ACTIONS(6293), + [anon_sym_BANG] = ACTIONS(6295), + [anon_sym_DASH] = ACTIONS(6297), + [anon_sym_DOLLAR] = ACTIONS(6297), + [anon_sym_POUND] = ACTIONS(6295), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6299), + [anon_sym_STAR] = ACTIONS(6301), + [anon_sym_AT] = ACTIONS(6301), + [anon_sym_QMARK] = ACTIONS(6301), + [anon_sym_0] = ACTIONS(6299), + [anon_sym__] = ACTIONS(6299), + }, + [2104] = { + [sym__statements] = STATE(2693), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [2105] = { + [sym__statements] = STATE(2694), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [2106] = { + [sym__statements] = STATE(2695), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [2107] = { + [sym__statements] = STATE(2696), + [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(891), + [sym_variable_assignment] = STATE(892), + [sym_subscript] = STATE(893), + [sym_file_redirect] = STATE(897), + [sym_concatenation] = STATE(894), + [sym_string] = STATE(882), + [sym_simple_expansion] = STATE(882), + [sym_string_expansion] = STATE(882), + [sym_expansion] = STATE(882), + [sym_command_substitution] = STATE(882), + [sym_process_substitution] = STATE(882), + [aux_sym__statements_repeat1] = STATE(895), + [aux_sym_command_repeat1] = STATE(897), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(1759), + [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(6303), + [anon_sym_elif] = ACTIONS(6303), + [anon_sym_else] = ACTIONS(6303), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(1769), + [anon_sym_typeset] = ACTIONS(1769), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_readonly] = ACTIONS(1769), + [anon_sym_local] = ACTIONS(1769), + [anon_sym_unset] = ACTIONS(1771), + [anon_sym_unsetenv] = ACTIONS(1771), + [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(1773), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_DOLLAR] = ACTIONS(1777), + [sym_raw_string] = ACTIONS(1779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1783), + [anon_sym_BQUOTE] = ACTIONS(1785), + [anon_sym_LT_LPAREN] = ACTIONS(1787), + [anon_sym_GT_LPAREN] = ACTIONS(1787), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1789), + }, + [2108] = { + [sym_concatenation] = STATE(2697), + [sym_string] = STATE(2702), + [sym_array] = STATE(2697), + [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__empty_value] = ACTIONS(6305), + [anon_sym_LPAREN] = ACTIONS(6307), + [sym__special_characters] = ACTIONS(6309), + [anon_sym_DQUOTE] = ACTIONS(6311), + [anon_sym_DOLLAR] = ACTIONS(6313), + [sym_raw_string] = ACTIONS(6315), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6317), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6319), + [anon_sym_BQUOTE] = ACTIONS(6321), + [anon_sym_LT_LPAREN] = ACTIONS(6323), + [anon_sym_GT_LPAREN] = ACTIONS(6323), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6315), + }, + [2109] = { + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(6325), + [anon_sym_PLUS_EQ] = ACTIONS(6325), + [sym_comment] = ACTIONS(57), + }, + [2110] = { + [aux_sym_concatenation_repeat1] = STATE(2709), + [sym__simple_heredoc_body] = ACTIONS(933), + [sym__heredoc_body_beginning] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(933), + [sym__concat] = ACTIONS(6327), + [sym_variable_name] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_fi] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(937), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(937), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(937), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [sym__special_characters] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(937), + [sym_raw_string] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(937), + [sym_word] = ACTIONS(937), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(937), + }, + [2111] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(2712), + [anon_sym_DQUOTE] = ACTIONS(6329), + [anon_sym_DOLLAR] = ACTIONS(6331), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [2112] = { + [sym_string] = STATE(2714), + [anon_sym_DASH] = ACTIONS(6333), + [anon_sym_DQUOTE] = ACTIONS(4926), + [anon_sym_DOLLAR] = ACTIONS(6333), + [sym_raw_string] = ACTIONS(6335), + [anon_sym_POUND] = ACTIONS(6333), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6337), + [anon_sym_STAR] = ACTIONS(6339), + [anon_sym_AT] = ACTIONS(6339), + [anon_sym_QMARK] = ACTIONS(6339), + [anon_sym_0] = ACTIONS(6337), + [anon_sym__] = ACTIONS(6337), + }, + [2113] = { + [aux_sym_concatenation_repeat1] = STATE(2709), + [sym__simple_heredoc_body] = ACTIONS(951), + [sym__heredoc_body_beginning] = ACTIONS(951), + [sym_file_descriptor] = ACTIONS(951), + [sym__concat] = ACTIONS(6327), + [sym_variable_name] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_fi] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_SEMI_SEMI] = ACTIONS(951), + [anon_sym_PIPE_AMP] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_LT] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(953), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_AMP_GT] = ACTIONS(953), + [anon_sym_AMP_GT_GT] = ACTIONS(951), + [anon_sym_LT_AMP] = ACTIONS(951), + [anon_sym_GT_AMP] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(953), + [anon_sym_LT_LT_DASH] = ACTIONS(951), + [anon_sym_LT_LT_LT] = ACTIONS(951), + [sym__special_characters] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(953), + [sym_raw_string] = ACTIONS(951), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(951), + [anon_sym_BQUOTE] = ACTIONS(951), + [anon_sym_LT_LPAREN] = ACTIONS(951), + [anon_sym_GT_LPAREN] = ACTIONS(951), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(953), + [sym_word] = ACTIONS(953), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_AMP] = ACTIONS(953), + }, + [2114] = { + [sym_subscript] = STATE(2719), + [sym_variable_name] = ACTIONS(6341), + [anon_sym_BANG] = ACTIONS(6343), + [anon_sym_DASH] = ACTIONS(6345), + [anon_sym_DOLLAR] = ACTIONS(6345), + [anon_sym_POUND] = ACTIONS(6343), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6347), + [anon_sym_STAR] = ACTIONS(6349), + [anon_sym_AT] = ACTIONS(6349), + [anon_sym_QMARK] = ACTIONS(6349), + [anon_sym_0] = ACTIONS(6347), + [anon_sym__] = ACTIONS(6347), + }, + [2115] = { + [sym__statements] = STATE(2720), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [2116] = { + [sym__statements] = STATE(2721), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [2117] = { + [sym__statements] = STATE(2722), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [2118] = { + [anon_sym_EQ] = ACTIONS(6325), + [anon_sym_PLUS_EQ] = ACTIONS(6325), + [sym_comment] = ACTIONS(57), + }, + [2119] = { + [sym_variable_assignment] = STATE(2723), + [sym_subscript] = STATE(2118), + [sym_concatenation] = STATE(2723), + [sym_string] = STATE(2113), + [sym_simple_expansion] = STATE(2113), + [sym_string_expansion] = STATE(2113), + [sym_expansion] = STATE(2113), + [sym_command_substitution] = STATE(2113), + [sym_process_substitution] = STATE(2113), + [aux_sym_declaration_command_repeat1] = STATE(2723), + [sym__simple_heredoc_body] = ACTIONS(965), + [sym__heredoc_body_beginning] = ACTIONS(965), + [sym_file_descriptor] = ACTIONS(965), + [sym_variable_name] = ACTIONS(4922), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_fi] = 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_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(4924), + [anon_sym_DQUOTE] = ACTIONS(4926), + [anon_sym_DOLLAR] = ACTIONS(4928), + [sym_raw_string] = ACTIONS(4930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4932), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4934), + [anon_sym_BQUOTE] = ACTIONS(4936), + [anon_sym_LT_LPAREN] = ACTIONS(4938), + [anon_sym_GT_LPAREN] = ACTIONS(4938), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6351), + [sym_word] = ACTIONS(4942), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + }, + [2120] = { + [aux_sym_concatenation_repeat1] = STATE(2725), + [sym__simple_heredoc_body] = ACTIONS(971), + [sym__heredoc_body_beginning] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(971), + [sym__concat] = ACTIONS(6353), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_fi] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [sym__special_characters] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(975), + [sym_word] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(975), + }, + [2121] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(2728), + [anon_sym_DQUOTE] = ACTIONS(6355), + [anon_sym_DOLLAR] = ACTIONS(6357), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [2122] = { + [sym_string] = STATE(2730), + [anon_sym_DASH] = ACTIONS(6359), + [anon_sym_DQUOTE] = ACTIONS(4946), + [anon_sym_DOLLAR] = ACTIONS(6359), + [sym_raw_string] = ACTIONS(6361), + [anon_sym_POUND] = ACTIONS(6359), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6363), + [anon_sym_STAR] = ACTIONS(6365), + [anon_sym_AT] = ACTIONS(6365), + [anon_sym_QMARK] = ACTIONS(6365), + [anon_sym_0] = ACTIONS(6363), + [anon_sym__] = ACTIONS(6363), + }, + [2123] = { + [aux_sym_concatenation_repeat1] = STATE(2725), + [sym__simple_heredoc_body] = ACTIONS(989), + [sym__heredoc_body_beginning] = ACTIONS(989), + [sym_file_descriptor] = ACTIONS(989), + [sym__concat] = ACTIONS(6353), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_fi] = 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(991), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_AMP_GT] = ACTIONS(991), + [anon_sym_AMP_GT_GT] = ACTIONS(989), + [anon_sym_LT_AMP] = ACTIONS(989), + [anon_sym_GT_AMP] = ACTIONS(989), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_LT_LT_DASH] = ACTIONS(989), + [anon_sym_LT_LT_LT] = ACTIONS(989), + [sym__special_characters] = ACTIONS(989), + [anon_sym_DQUOTE] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(991), + [sym_raw_string] = ACTIONS(989), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(989), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(989), + [anon_sym_LT_LPAREN] = ACTIONS(989), + [anon_sym_GT_LPAREN] = ACTIONS(989), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(991), + [sym_word] = ACTIONS(991), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [2124] = { + [sym_subscript] = STATE(2735), + [sym_variable_name] = ACTIONS(6367), + [anon_sym_BANG] = ACTIONS(6369), + [anon_sym_DASH] = ACTIONS(6371), + [anon_sym_DOLLAR] = ACTIONS(6371), + [anon_sym_POUND] = ACTIONS(6369), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6373), + [anon_sym_STAR] = ACTIONS(6375), + [anon_sym_AT] = ACTIONS(6375), + [anon_sym_QMARK] = ACTIONS(6375), + [anon_sym_0] = ACTIONS(6373), + [anon_sym__] = ACTIONS(6373), + }, + [2125] = { + [sym__statements] = STATE(2736), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [2126] = { + [sym__statements] = STATE(2737), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [2127] = { + [sym__statements] = STATE(2738), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [2128] = { + [sym_concatenation] = STATE(2739), + [sym_string] = STATE(2123), + [sym_simple_expansion] = STATE(2123), + [sym_string_expansion] = STATE(2123), + [sym_expansion] = STATE(2123), + [sym_command_substitution] = STATE(2123), + [sym_process_substitution] = STATE(2123), + [aux_sym_unset_command_repeat1] = STATE(2739), + [sym__simple_heredoc_body] = ACTIONS(1003), + [sym__heredoc_body_beginning] = ACTIONS(1003), + [sym_file_descriptor] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_fi] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_SEMI_SEMI] = ACTIONS(1003), + [anon_sym_PIPE_AMP] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_AMP_GT] = ACTIONS(1005), + [anon_sym_AMP_GT_GT] = ACTIONS(1003), + [anon_sym_LT_AMP] = ACTIONS(1003), + [anon_sym_GT_AMP] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_LT_LT_DASH] = ACTIONS(1003), + [anon_sym_LT_LT_LT] = ACTIONS(1003), + [sym__special_characters] = ACTIONS(4944), + [anon_sym_DQUOTE] = ACTIONS(4946), + [anon_sym_DOLLAR] = ACTIONS(4948), + [sym_raw_string] = ACTIONS(4950), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4952), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4954), + [anon_sym_BQUOTE] = ACTIONS(4956), + [anon_sym_LT_LPAREN] = ACTIONS(4958), + [anon_sym_GT_LPAREN] = ACTIONS(4958), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6377), + [sym_word] = ACTIONS(4962), + [anon_sym_LF] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1005), + }, + [2129] = { + [sym_string] = STATE(2740), + [sym_simple_expansion] = STATE(2740), + [sym_string_expansion] = STATE(2740), + [sym_expansion] = STATE(2740), + [sym_command_substitution] = STATE(2740), + [sym_process_substitution] = STATE(2740), + [sym__special_characters] = ACTIONS(6379), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(6379), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3301), + [anon_sym_BQUOTE] = ACTIONS(3303), + [anon_sym_LT_LPAREN] = ACTIONS(3305), + [anon_sym_GT_LPAREN] = ACTIONS(3305), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6379), + }, + [2130] = { + [aux_sym_concatenation_repeat1] = STATE(2741), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_fi] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_EQ_TILDE] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [2131] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_fi] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1049), + [anon_sym_EQ_EQ] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [2132] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(6381), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [2133] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(6381), + [anon_sym_DOLLAR] = ACTIONS(6383), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [2134] = { + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_fi] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1083), + [anon_sym_EQ_EQ] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [2135] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_fi] = 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_EQ_TILDE] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1087), + [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), + }, + [2136] = { + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_fi] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1091), + [anon_sym_EQ_EQ] = ACTIONS(1091), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + }, + [2137] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(6385), + [sym_comment] = ACTIONS(57), + }, + [2138] = { + [sym_subscript] = STATE(2747), + [sym_variable_name] = ACTIONS(6387), + [anon_sym_DASH] = ACTIONS(6389), + [anon_sym_DOLLAR] = ACTIONS(6389), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6391), + [anon_sym_STAR] = ACTIONS(6393), + [anon_sym_AT] = ACTIONS(6393), + [anon_sym_QMARK] = ACTIONS(6393), + [anon_sym_0] = ACTIONS(6391), + [anon_sym__] = ACTIONS(6391), + }, + [2139] = { + [sym_concatenation] = STATE(2750), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2750), + [anon_sym_RBRACE] = ACTIONS(6395), + [anon_sym_EQ] = ACTIONS(6397), + [anon_sym_DASH] = ACTIONS(6397), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6399), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(6401), + [anon_sym_COLON] = ACTIONS(6397), + [anon_sym_COLON_QMARK] = ACTIONS(6397), + [anon_sym_COLON_DASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6397), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2140] = { + [sym_concatenation] = STATE(2753), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2753), + [anon_sym_RBRACE] = ACTIONS(6403), + [anon_sym_EQ] = ACTIONS(6405), + [anon_sym_DASH] = ACTIONS(6405), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6407), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(6409), + [anon_sym_COLON] = ACTIONS(6405), + [anon_sym_COLON_QMARK] = ACTIONS(6405), + [anon_sym_COLON_DASH] = ACTIONS(6405), + [anon_sym_PERCENT] = ACTIONS(6405), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2141] = { + [anon_sym_RPAREN] = ACTIONS(6411), + [sym_comment] = ACTIONS(57), + }, + [2142] = { + [anon_sym_BQUOTE] = ACTIONS(6411), + [sym_comment] = ACTIONS(57), + }, + [2143] = { + [anon_sym_RPAREN] = ACTIONS(6413), + [sym_comment] = ACTIONS(57), + }, + [2144] = { + [anon_sym_LT] = ACTIONS(6415), + [anon_sym_GT] = ACTIONS(6415), + [anon_sym_GT_GT] = ACTIONS(6417), + [anon_sym_AMP_GT] = ACTIONS(6415), + [anon_sym_AMP_GT_GT] = ACTIONS(6417), + [anon_sym_LT_AMP] = ACTIONS(6417), + [anon_sym_GT_AMP] = ACTIONS(6417), + [sym_comment] = ACTIONS(57), + }, + [2145] = { + [sym_file_descriptor] = ACTIONS(1213), + [sym_variable_name] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_fi] = ACTIONS(4862), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_function] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_typeset] = ACTIONS(1217), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_local] = ACTIONS(1217), + [anon_sym_unset] = ACTIONS(1217), + [anon_sym_unsetenv] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_GT] = ACTIONS(1213), + [anon_sym_AMP_GT] = ACTIONS(1217), + [anon_sym_AMP_GT_GT] = ACTIONS(1213), + [anon_sym_LT_AMP] = ACTIONS(1213), + [anon_sym_GT_AMP] = ACTIONS(1213), + [sym__special_characters] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1217), + [sym_raw_string] = ACTIONS(1213), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1213), + [anon_sym_BQUOTE] = ACTIONS(1213), + [anon_sym_LT_LPAREN] = ACTIONS(1213), + [anon_sym_GT_LPAREN] = ACTIONS(1213), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1217), + }, + [2146] = { + [sym_redirected_statement] = STATE(2757), + [sym_for_statement] = STATE(2757), + [sym_c_style_for_statement] = STATE(2757), + [sym_while_statement] = STATE(2757), + [sym_if_statement] = STATE(2757), + [sym_case_statement] = STATE(2757), + [sym_function_definition] = STATE(2757), + [sym_compound_statement] = STATE(2757), + [sym_subshell] = STATE(2757), + [sym_pipeline] = STATE(2757), + [sym_list] = STATE(2757), + [sym_negated_command] = STATE(2757), + [sym_test_command] = STATE(2757), + [sym_declaration_command] = STATE(2757), + [sym_unset_command] = STATE(2757), + [sym_command] = STATE(2757), + [sym_command_name] = STATE(1492), + [sym_variable_assignment] = STATE(2758), + [sym_subscript] = STATE(1494), + [sym_file_redirect] = STATE(1497), + [sym_concatenation] = STATE(1495), + [sym_string] = STATE(1484), + [sym_simple_expansion] = STATE(1484), + [sym_string_expansion] = STATE(1484), + [sym_expansion] = STATE(1484), + [sym_command_substitution] = STATE(1484), + [sym_process_substitution] = STATE(1484), + [aux_sym_command_repeat1] = STATE(1497), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(3281), + [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(3285), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(3287), + [anon_sym_typeset] = ACTIONS(3287), + [anon_sym_export] = ACTIONS(3287), + [anon_sym_readonly] = ACTIONS(3287), + [anon_sym_local] = ACTIONS(3287), + [anon_sym_unset] = ACTIONS(3289), + [anon_sym_unsetenv] = ACTIONS(3289), + [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(3291), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(3297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3301), + [anon_sym_BQUOTE] = ACTIONS(3303), + [anon_sym_LT_LPAREN] = ACTIONS(3305), + [anon_sym_GT_LPAREN] = ACTIONS(3305), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3307), + }, + [2147] = { + [sym_redirected_statement] = STATE(2759), + [sym_for_statement] = STATE(2759), + [sym_c_style_for_statement] = STATE(2759), + [sym_while_statement] = STATE(2759), + [sym_if_statement] = STATE(2759), + [sym_case_statement] = STATE(2759), + [sym_function_definition] = STATE(2759), + [sym_compound_statement] = STATE(2759), + [sym_subshell] = STATE(2759), + [sym_pipeline] = STATE(2759), + [sym_list] = STATE(2759), + [sym_negated_command] = STATE(2759), + [sym_test_command] = STATE(2759), + [sym_declaration_command] = STATE(2759), + [sym_unset_command] = STATE(2759), + [sym_command] = STATE(2759), + [sym_command_name] = STATE(1492), + [sym_variable_assignment] = STATE(2760), + [sym_subscript] = STATE(1494), + [sym_file_redirect] = STATE(1497), + [sym_concatenation] = STATE(1495), + [sym_string] = STATE(1484), + [sym_simple_expansion] = STATE(1484), + [sym_string_expansion] = STATE(1484), + [sym_expansion] = STATE(1484), + [sym_command_substitution] = STATE(1484), + [sym_process_substitution] = STATE(1484), + [aux_sym_command_repeat1] = STATE(1497), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(3281), + [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(3285), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(3287), + [anon_sym_typeset] = ACTIONS(3287), + [anon_sym_export] = ACTIONS(3287), + [anon_sym_readonly] = ACTIONS(3287), + [anon_sym_local] = ACTIONS(3287), + [anon_sym_unset] = ACTIONS(3289), + [anon_sym_unsetenv] = ACTIONS(3289), + [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(3291), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(3297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3301), + [anon_sym_BQUOTE] = ACTIONS(3303), + [anon_sym_LT_LPAREN] = ACTIONS(3305), + [anon_sym_GT_LPAREN] = ACTIONS(3305), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3307), + }, + [2148] = { + [sym_concatenation] = STATE(632), + [sym_string] = STATE(2762), + [sym_simple_expansion] = STATE(2762), + [sym_string_expansion] = STATE(2762), + [sym_expansion] = STATE(2762), + [sym_command_substitution] = STATE(2762), + [sym_process_substitution] = STATE(2762), + [sym__special_characters] = ACTIONS(6419), + [anon_sym_DQUOTE] = ACTIONS(4866), + [anon_sym_DOLLAR] = ACTIONS(4868), + [sym_raw_string] = ACTIONS(6421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4872), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4874), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LT_LPAREN] = ACTIONS(4878), + [anon_sym_GT_LPAREN] = ACTIONS(4878), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6421), + }, + [2149] = { + [sym_concatenation] = STATE(636), + [sym_string] = STATE(2764), + [sym_simple_expansion] = STATE(2764), + [sym_string_expansion] = STATE(2764), + [sym_expansion] = STATE(2764), + [sym_command_substitution] = STATE(2764), + [sym_process_substitution] = STATE(2764), + [sym__special_characters] = ACTIONS(6423), + [anon_sym_DQUOTE] = ACTIONS(4866), + [anon_sym_DOLLAR] = ACTIONS(4868), + [sym_raw_string] = ACTIONS(6425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4872), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4874), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LT_LPAREN] = ACTIONS(4878), + [anon_sym_GT_LPAREN] = ACTIONS(4878), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6425), + }, + [2150] = { + [anon_sym_SEMI] = ACTIONS(6427), + [anon_sym_fi] = ACTIONS(1215), + [anon_sym_SEMI_SEMI] = ACTIONS(6429), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6429), + [anon_sym_AMP] = ACTIONS(6429), + }, + [2151] = { + [sym_file_redirect] = STATE(2766), + [sym_heredoc_redirect] = STATE(2766), + [sym_herestring_redirect] = STATE(2766), + [aux_sym_redirected_statement_repeat1] = STATE(2766), + [sym__simple_heredoc_body] = ACTIONS(1233), + [sym__heredoc_body_beginning] = ACTIONS(1233), + [sym_file_descriptor] = ACTIONS(4990), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_fi] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1233), + [anon_sym_PIPE_AMP] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5002), + [anon_sym_GT_GT] = ACTIONS(5004), + [anon_sym_AMP_GT] = ACTIONS(5002), + [anon_sym_AMP_GT_GT] = ACTIONS(5004), + [anon_sym_LT_AMP] = ACTIONS(5004), + [anon_sym_GT_AMP] = ACTIONS(5004), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(5006), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1235), + }, + [2152] = { + [sym_concatenation] = STATE(2767), + [sym_string] = STATE(2769), + [sym_simple_expansion] = STATE(2769), + [sym_string_expansion] = STATE(2769), + [sym_expansion] = STATE(2769), + [sym_command_substitution] = STATE(2769), + [sym_process_substitution] = STATE(2769), + [sym_regex] = ACTIONS(6431), + [sym__special_characters] = ACTIONS(6433), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(6435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3301), + [anon_sym_BQUOTE] = ACTIONS(3303), + [anon_sym_LT_LPAREN] = ACTIONS(3305), + [anon_sym_GT_LPAREN] = ACTIONS(3305), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6435), + }, + [2153] = { + [aux_sym_concatenation_repeat1] = STATE(2130), + [sym__simple_heredoc_body] = ACTIONS(1243), + [sym__heredoc_body_beginning] = ACTIONS(1243), + [sym_file_descriptor] = ACTIONS(1243), + [sym__concat] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_fi] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1245), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_LT_LT_DASH] = ACTIONS(1243), + [anon_sym_LT_LT_LT] = ACTIONS(1243), + [sym__special_characters] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1245), + [sym_raw_string] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [anon_sym_LT_LPAREN] = ACTIONS(1243), + [anon_sym_GT_LPAREN] = ACTIONS(1243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1245), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1245), + }, + [2154] = { + [aux_sym_concatenation_repeat1] = STATE(2130), + [sym__simple_heredoc_body] = ACTIONS(1247), + [sym__heredoc_body_beginning] = ACTIONS(1247), + [sym_file_descriptor] = ACTIONS(1247), + [sym__concat] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_fi] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_SEMI_SEMI] = ACTIONS(1247), + [anon_sym_PIPE_AMP] = ACTIONS(1247), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_AMP_GT] = ACTIONS(1249), + [anon_sym_AMP_GT_GT] = ACTIONS(1247), + [anon_sym_LT_AMP] = ACTIONS(1247), + [anon_sym_GT_AMP] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_LT_LT_DASH] = ACTIONS(1247), + [anon_sym_LT_LT_LT] = ACTIONS(1247), + [sym__special_characters] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1247), + [anon_sym_DOLLAR] = ACTIONS(1249), + [sym_raw_string] = ACTIONS(1247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1247), + [anon_sym_BQUOTE] = ACTIONS(1247), + [anon_sym_LT_LPAREN] = ACTIONS(1247), + [anon_sym_GT_LPAREN] = ACTIONS(1247), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1249), + [anon_sym_LF] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1249), + }, + [2155] = { + [sym_concatenation] = STATE(2770), + [sym_string] = STATE(2154), + [sym_simple_expansion] = STATE(2154), + [sym_string_expansion] = STATE(2154), + [sym_expansion] = STATE(2154), + [sym_command_substitution] = STATE(2154), + [sym_process_substitution] = STATE(2154), + [aux_sym_command_repeat2] = STATE(2770), + [sym__simple_heredoc_body] = ACTIONS(1251), + [sym__heredoc_body_beginning] = ACTIONS(1251), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_fi] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(5008), + [anon_sym_EQ_EQ] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(5010), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(5012), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3301), + [anon_sym_BQUOTE] = ACTIONS(3303), + [anon_sym_LT_LPAREN] = ACTIONS(3305), + [anon_sym_GT_LPAREN] = ACTIONS(3305), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5014), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + }, + [2156] = { + [sym_file_redirect] = STATE(2151), + [sym_heredoc_redirect] = STATE(2151), + [sym_heredoc_body] = STATE(2772), + [sym_herestring_redirect] = STATE(2151), + [aux_sym_redirected_statement_repeat1] = STATE(2151), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(4990), + [anon_sym_SEMI] = ACTIONS(6437), + [anon_sym_fi] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(4994), + [anon_sym_SEMI_SEMI] = ACTIONS(6439), + [anon_sym_PIPE_AMP] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(5000), + [anon_sym_PIPE_PIPE] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5002), + [anon_sym_GT_GT] = ACTIONS(5004), + [anon_sym_AMP_GT] = ACTIONS(5002), + [anon_sym_AMP_GT_GT] = ACTIONS(5004), + [anon_sym_LT_AMP] = ACTIONS(5004), + [anon_sym_GT_AMP] = ACTIONS(5004), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(5006), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6439), + [anon_sym_AMP] = ACTIONS(6437), + }, + [2157] = { + [sym_file_redirect] = STATE(2151), + [sym_heredoc_redirect] = STATE(2151), + [sym_heredoc_body] = STATE(2772), + [sym_herestring_redirect] = STATE(2151), + [aux_sym_redirected_statement_repeat1] = STATE(2151), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(6437), + [anon_sym_fi] = ACTIONS(4862), + [anon_sym_PIPE] = ACTIONS(4994), + [anon_sym_SEMI_SEMI] = ACTIONS(6439), + [anon_sym_PIPE_AMP] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(5000), + [anon_sym_PIPE_PIPE] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(5006), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(6439), + [anon_sym_AMP] = ACTIONS(6437), + }, + [2158] = { + [sym_concatenation] = STATE(2773), + [sym_string] = STATE(2154), + [sym_simple_expansion] = STATE(2154), + [sym_string_expansion] = STATE(2154), + [sym_expansion] = STATE(2154), + [sym_command_substitution] = STATE(2154), + [sym_process_substitution] = STATE(2154), + [aux_sym_command_repeat2] = STATE(2773), + [sym__simple_heredoc_body] = ACTIONS(1251), + [sym__heredoc_body_beginning] = ACTIONS(1251), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_fi] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(5008), + [anon_sym_EQ_EQ] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(5010), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(5012), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3301), + [anon_sym_BQUOTE] = ACTIONS(3303), + [anon_sym_LT_LPAREN] = ACTIONS(3305), + [anon_sym_GT_LPAREN] = ACTIONS(3305), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5014), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + }, + [2159] = { + [sym_concatenation] = STATE(2774), + [sym_string] = STATE(2777), + [sym_array] = STATE(2774), + [sym_simple_expansion] = STATE(2777), + [sym_string_expansion] = STATE(2777), + [sym_expansion] = STATE(2777), + [sym_command_substitution] = STATE(2777), + [sym_process_substitution] = STATE(2777), + [sym__empty_value] = ACTIONS(6441), + [anon_sym_LPAREN] = ACTIONS(6443), + [sym__special_characters] = ACTIONS(6445), + [anon_sym_DQUOTE] = ACTIONS(3313), + [anon_sym_DOLLAR] = ACTIONS(3315), + [sym_raw_string] = ACTIONS(6447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3319), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3321), + [anon_sym_BQUOTE] = ACTIONS(3323), + [anon_sym_LT_LPAREN] = ACTIONS(3325), + [anon_sym_GT_LPAREN] = ACTIONS(3325), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6447), + }, + [2160] = { + [sym_string] = STATE(2778), + [sym_simple_expansion] = STATE(2778), + [sym_string_expansion] = STATE(2778), + [sym_expansion] = STATE(2778), + [sym_command_substitution] = STATE(2778), + [sym_process_substitution] = STATE(2778), + [sym__special_characters] = ACTIONS(6449), + [anon_sym_DQUOTE] = ACTIONS(3313), + [anon_sym_DOLLAR] = ACTIONS(3315), + [sym_raw_string] = ACTIONS(6449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3319), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3321), + [anon_sym_BQUOTE] = ACTIONS(3323), + [anon_sym_LT_LPAREN] = ACTIONS(3325), + [anon_sym_GT_LPAREN] = ACTIONS(3325), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6449), + }, + [2161] = { + [aux_sym_concatenation_repeat1] = STATE(2779), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(5020), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_fi] = ACTIONS(1045), + [anon_sym_elif] = ACTIONS(1045), + [anon_sym_else] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1045), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [2162] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [sym_variable_name] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_fi] = ACTIONS(1049), + [anon_sym_elif] = ACTIONS(1049), + [anon_sym_else] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1049), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [2163] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(6451), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [2164] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(6451), + [anon_sym_DOLLAR] = ACTIONS(6453), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [2165] = { + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [sym_variable_name] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_fi] = ACTIONS(1083), + [anon_sym_elif] = ACTIONS(1083), + [anon_sym_else] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1083), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [2166] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1085), + [sym_variable_name] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_fi] = ACTIONS(1087), + [anon_sym_elif] = ACTIONS(1087), + [anon_sym_else] = 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), + }, + [2167] = { + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [sym_variable_name] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_fi] = ACTIONS(1091), + [anon_sym_elif] = ACTIONS(1091), + [anon_sym_else] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1091), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + }, + [2168] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(6455), + [sym_comment] = ACTIONS(57), + }, + [2169] = { + [sym_subscript] = STATE(2785), + [sym_variable_name] = ACTIONS(6457), + [anon_sym_DASH] = ACTIONS(6459), + [anon_sym_DOLLAR] = ACTIONS(6459), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6461), + [anon_sym_STAR] = ACTIONS(6463), + [anon_sym_AT] = ACTIONS(6463), + [anon_sym_QMARK] = ACTIONS(6463), + [anon_sym_0] = ACTIONS(6461), + [anon_sym__] = ACTIONS(6461), + }, + [2170] = { + [sym_concatenation] = STATE(2788), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2788), + [anon_sym_RBRACE] = ACTIONS(6465), + [anon_sym_EQ] = ACTIONS(6467), + [anon_sym_DASH] = ACTIONS(6467), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6469), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(6471), + [anon_sym_COLON] = ACTIONS(6467), + [anon_sym_COLON_QMARK] = ACTIONS(6467), + [anon_sym_COLON_DASH] = ACTIONS(6467), + [anon_sym_PERCENT] = ACTIONS(6467), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2171] = { + [sym_concatenation] = STATE(2791), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2791), + [anon_sym_RBRACE] = ACTIONS(6473), + [anon_sym_EQ] = ACTIONS(6475), + [anon_sym_DASH] = ACTIONS(6475), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6477), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_COLON] = ACTIONS(6475), + [anon_sym_COLON_QMARK] = ACTIONS(6475), + [anon_sym_COLON_DASH] = ACTIONS(6475), + [anon_sym_PERCENT] = ACTIONS(6475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2172] = { + [anon_sym_RPAREN] = ACTIONS(6481), + [sym_comment] = ACTIONS(57), + }, + [2173] = { + [anon_sym_BQUOTE] = ACTIONS(6481), + [sym_comment] = ACTIONS(57), + }, + [2174] = { + [anon_sym_RPAREN] = ACTIONS(6483), + [sym_comment] = ACTIONS(57), + }, + [2175] = { + [sym_variable_assignment] = STATE(2175), + [sym_subscript] = STATE(1507), + [sym_concatenation] = STATE(2175), + [sym_string] = STATE(1502), + [sym_simple_expansion] = STATE(1502), + [sym_string_expansion] = STATE(1502), + [sym_expansion] = STATE(1502), + [sym_command_substitution] = STATE(1502), + [sym_process_substitution] = STATE(1502), + [aux_sym_declaration_command_repeat1] = STATE(2175), + [sym__simple_heredoc_body] = ACTIONS(2149), + [sym__heredoc_body_beginning] = ACTIONS(2149), + [sym_file_descriptor] = ACTIONS(2149), + [sym_variable_name] = ACTIONS(6485), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_fi] = ACTIONS(2154), + [anon_sym_elif] = ACTIONS(2154), + [anon_sym_else] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_SEMI_SEMI] = ACTIONS(2149), + [anon_sym_PIPE_AMP] = ACTIONS(2149), + [anon_sym_AMP_AMP] = ACTIONS(2149), + [anon_sym_PIPE_PIPE] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_GT] = ACTIONS(2154), + [anon_sym_GT_GT] = ACTIONS(2149), + [anon_sym_AMP_GT] = ACTIONS(2154), + [anon_sym_AMP_GT_GT] = ACTIONS(2149), + [anon_sym_LT_AMP] = ACTIONS(2149), + [anon_sym_GT_AMP] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2154), + [anon_sym_LT_LT_DASH] = ACTIONS(2149), + [anon_sym_LT_LT_LT] = ACTIONS(2149), + [sym__special_characters] = ACTIONS(6488), + [anon_sym_DQUOTE] = ACTIONS(6491), + [anon_sym_DOLLAR] = ACTIONS(6494), + [sym_raw_string] = ACTIONS(6497), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6500), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6503), + [anon_sym_BQUOTE] = ACTIONS(6506), + [anon_sym_LT_LPAREN] = ACTIONS(6509), + [anon_sym_GT_LPAREN] = ACTIONS(6509), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6512), + [sym_word] = ACTIONS(6515), + [anon_sym_LF] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2154), + }, + [2176] = { + [sym_string] = STATE(2794), + [sym_simple_expansion] = STATE(2794), + [sym_string_expansion] = STATE(2794), + [sym_expansion] = STATE(2794), + [sym_command_substitution] = STATE(2794), + [sym_process_substitution] = STATE(2794), + [sym__special_characters] = ACTIONS(6518), + [anon_sym_DQUOTE] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [sym_raw_string] = ACTIONS(6518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3341), + [anon_sym_BQUOTE] = ACTIONS(3343), + [anon_sym_LT_LPAREN] = ACTIONS(3345), + [anon_sym_GT_LPAREN] = ACTIONS(3345), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6518), + }, + [2177] = { + [aux_sym_concatenation_repeat1] = STATE(2795), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(5046), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_fi] = ACTIONS(1045), + [anon_sym_elif] = ACTIONS(1045), + [anon_sym_else] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1045), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [2178] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_fi] = ACTIONS(1049), + [anon_sym_elif] = ACTIONS(1049), + [anon_sym_else] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1049), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [2179] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(6520), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [2180] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(6520), + [anon_sym_DOLLAR] = ACTIONS(6522), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [2181] = { + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_fi] = ACTIONS(1083), + [anon_sym_elif] = ACTIONS(1083), + [anon_sym_else] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1083), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [2182] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_fi] = ACTIONS(1087), + [anon_sym_elif] = ACTIONS(1087), + [anon_sym_else] = 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), + }, + [2183] = { + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_fi] = ACTIONS(1091), + [anon_sym_elif] = ACTIONS(1091), + [anon_sym_else] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1091), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + }, + [2184] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(6524), + [sym_comment] = ACTIONS(57), + }, + [2185] = { + [sym_subscript] = STATE(2801), + [sym_variable_name] = ACTIONS(6526), + [anon_sym_DASH] = ACTIONS(6528), + [anon_sym_DOLLAR] = ACTIONS(6528), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6530), + [anon_sym_STAR] = ACTIONS(6532), + [anon_sym_AT] = ACTIONS(6532), + [anon_sym_QMARK] = ACTIONS(6532), + [anon_sym_0] = ACTIONS(6530), + [anon_sym__] = ACTIONS(6530), + }, + [2186] = { + [sym_concatenation] = STATE(2804), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2804), + [anon_sym_RBRACE] = ACTIONS(6534), + [anon_sym_EQ] = ACTIONS(6536), + [anon_sym_DASH] = ACTIONS(6536), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6538), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(6540), + [anon_sym_COLON] = ACTIONS(6536), + [anon_sym_COLON_QMARK] = ACTIONS(6536), + [anon_sym_COLON_DASH] = ACTIONS(6536), + [anon_sym_PERCENT] = ACTIONS(6536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2187] = { + [sym_concatenation] = STATE(2807), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2807), + [anon_sym_RBRACE] = ACTIONS(6542), + [anon_sym_EQ] = ACTIONS(6544), + [anon_sym_DASH] = ACTIONS(6544), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6546), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(6548), + [anon_sym_COLON] = ACTIONS(6544), + [anon_sym_COLON_QMARK] = ACTIONS(6544), + [anon_sym_COLON_DASH] = ACTIONS(6544), + [anon_sym_PERCENT] = ACTIONS(6544), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2188] = { + [anon_sym_RPAREN] = ACTIONS(6550), + [sym_comment] = ACTIONS(57), + }, + [2189] = { + [anon_sym_BQUOTE] = ACTIONS(6550), + [sym_comment] = ACTIONS(57), + }, + [2190] = { + [anon_sym_RPAREN] = ACTIONS(6552), + [sym_comment] = ACTIONS(57), + }, + [2191] = { + [sym_concatenation] = STATE(2191), + [sym_string] = STATE(1512), + [sym_simple_expansion] = STATE(1512), + [sym_string_expansion] = STATE(1512), + [sym_expansion] = STATE(1512), + [sym_command_substitution] = STATE(1512), + [sym_process_substitution] = STATE(1512), + [aux_sym_unset_command_repeat1] = STATE(2191), + [sym__simple_heredoc_body] = ACTIONS(2222), + [sym__heredoc_body_beginning] = ACTIONS(2222), + [sym_file_descriptor] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_fi] = ACTIONS(2224), + [anon_sym_elif] = ACTIONS(2224), + [anon_sym_else] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_SEMI_SEMI] = ACTIONS(2222), + [anon_sym_PIPE_AMP] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2222), + [anon_sym_AMP_GT] = ACTIONS(2224), + [anon_sym_AMP_GT_GT] = ACTIONS(2222), + [anon_sym_LT_AMP] = ACTIONS(2222), + [anon_sym_GT_AMP] = ACTIONS(2222), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_LT_LT_DASH] = ACTIONS(2222), + [anon_sym_LT_LT_LT] = ACTIONS(2222), + [sym__special_characters] = ACTIONS(6554), + [anon_sym_DQUOTE] = ACTIONS(6557), + [anon_sym_DOLLAR] = ACTIONS(6560), + [sym_raw_string] = ACTIONS(6563), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6566), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6569), + [anon_sym_BQUOTE] = ACTIONS(6572), + [anon_sym_LT_LPAREN] = ACTIONS(6575), + [anon_sym_GT_LPAREN] = ACTIONS(6575), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6578), + [sym_word] = ACTIONS(6581), + [anon_sym_LF] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2224), + }, + [2192] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_fi] = ACTIONS(2294), + [anon_sym_elif] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [2193] = { + [aux_sym_concatenation_repeat1] = STATE(2193), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(6584), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_fi] = ACTIONS(2294), + [anon_sym_elif] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [2194] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_fi] = ACTIONS(2301), + [anon_sym_elif] = ACTIONS(2301), + [anon_sym_else] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_EQ_TILDE] = ACTIONS(2301), + [anon_sym_EQ_EQ] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [2195] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(6587), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [2196] = { + [sym_concatenation] = STATE(2814), + [sym_string] = STATE(2813), + [sym_simple_expansion] = STATE(2813), + [sym_string_expansion] = STATE(2813), + [sym_expansion] = STATE(2813), + [sym_command_substitution] = STATE(2813), + [sym_process_substitution] = STATE(2813), + [anon_sym_RBRACE] = ACTIONS(6589), + [sym__special_characters] = ACTIONS(6591), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(6593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6593), + }, + [2197] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(6595), + [sym_comment] = ACTIONS(57), + }, + [2198] = { + [sym_concatenation] = STATE(2818), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2818), + [anon_sym_RBRACE] = ACTIONS(6597), + [anon_sym_EQ] = ACTIONS(6599), + [anon_sym_DASH] = ACTIONS(6599), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(6603), + [anon_sym_COLON] = ACTIONS(6599), + [anon_sym_COLON_QMARK] = ACTIONS(6599), + [anon_sym_COLON_DASH] = ACTIONS(6599), + [anon_sym_PERCENT] = ACTIONS(6599), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2199] = { + [sym_concatenation] = STATE(2820), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2820), + [anon_sym_RBRACE] = ACTIONS(6589), + [anon_sym_EQ] = ACTIONS(6605), + [anon_sym_DASH] = ACTIONS(6605), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6607), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(6609), + [anon_sym_COLON] = ACTIONS(6605), + [anon_sym_COLON_QMARK] = ACTIONS(6605), + [anon_sym_COLON_DASH] = ACTIONS(6605), + [anon_sym_PERCENT] = ACTIONS(6605), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2200] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_fi] = ACTIONS(2394), + [anon_sym_elif] = ACTIONS(2394), + [anon_sym_else] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_EQ_TILDE] = ACTIONS(2394), + [anon_sym_EQ_EQ] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [2201] = { + [sym_concatenation] = STATE(2823), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2823), + [sym_regex] = ACTIONS(6611), + [anon_sym_RBRACE] = ACTIONS(6613), + [anon_sym_EQ] = ACTIONS(6615), + [anon_sym_DASH] = ACTIONS(6615), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6617), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6615), + [anon_sym_COLON_QMARK] = ACTIONS(6615), + [anon_sym_COLON_DASH] = ACTIONS(6615), + [anon_sym_PERCENT] = ACTIONS(6615), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2202] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6613), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2203] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_fi] = ACTIONS(2442), + [anon_sym_elif] = ACTIONS(2442), + [anon_sym_else] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_EQ_TILDE] = ACTIONS(2442), + [anon_sym_EQ_EQ] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [2204] = { + [sym_concatenation] = STATE(2820), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2820), + [sym_regex] = ACTIONS(6619), + [anon_sym_RBRACE] = ACTIONS(6589), + [anon_sym_EQ] = ACTIONS(6605), + [anon_sym_DASH] = ACTIONS(6605), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6607), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6605), + [anon_sym_COLON_QMARK] = ACTIONS(6605), + [anon_sym_COLON_DASH] = ACTIONS(6605), + [anon_sym_PERCENT] = ACTIONS(6605), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2205] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6589), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2206] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_fi] = ACTIONS(2448), + [anon_sym_elif] = ACTIONS(2448), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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_EQ_TILDE] = ACTIONS(2448), + [anon_sym_EQ_EQ] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [2207] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_fi] = ACTIONS(2486), + [anon_sym_elif] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_EQ_TILDE] = ACTIONS(2486), + [anon_sym_EQ_EQ] = ACTIONS(2486), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [2208] = { + [sym__simple_heredoc_body] = ACTIONS(6621), + [sym__heredoc_body_beginning] = ACTIONS(6621), + [sym_file_descriptor] = ACTIONS(6621), + [ts_builtin_sym_end] = ACTIONS(6621), + [anon_sym_SEMI] = ACTIONS(6623), + [anon_sym_done] = ACTIONS(6621), + [anon_sym_fi] = ACTIONS(6621), + [anon_sym_elif] = ACTIONS(6621), + [anon_sym_else] = ACTIONS(6621), + [anon_sym_esac] = ACTIONS(6621), + [anon_sym_PIPE] = ACTIONS(6623), + [anon_sym_RPAREN] = ACTIONS(6621), + [anon_sym_SEMI_SEMI] = ACTIONS(6621), + [anon_sym_PIPE_AMP] = ACTIONS(6621), + [anon_sym_AMP_AMP] = ACTIONS(6621), + [anon_sym_PIPE_PIPE] = ACTIONS(6621), + [anon_sym_LT] = ACTIONS(6623), + [anon_sym_GT] = ACTIONS(6623), + [anon_sym_GT_GT] = ACTIONS(6621), + [anon_sym_AMP_GT] = ACTIONS(6623), + [anon_sym_AMP_GT_GT] = ACTIONS(6621), + [anon_sym_LT_AMP] = ACTIONS(6621), + [anon_sym_GT_AMP] = ACTIONS(6621), + [anon_sym_LT_LT] = ACTIONS(6623), + [anon_sym_LT_LT_DASH] = ACTIONS(6621), + [anon_sym_LT_LT_LT] = ACTIONS(6621), + [anon_sym_BQUOTE] = ACTIONS(6621), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6621), + [anon_sym_AMP] = ACTIONS(6623), + }, + [2209] = { + [anon_sym_fi] = ACTIONS(6625), + [sym_comment] = ACTIONS(57), + }, + [2210] = { + [sym_concatenation] = STATE(1207), + [sym_string] = STATE(2827), + [sym_simple_expansion] = STATE(2827), + [sym_string_expansion] = STATE(2827), + [sym_expansion] = STATE(2827), + [sym_command_substitution] = STATE(2827), + [sym_process_substitution] = STATE(2827), + [sym__special_characters] = ACTIONS(6627), + [anon_sym_DQUOTE] = ACTIONS(4866), + [anon_sym_DOLLAR] = ACTIONS(4868), + [sym_raw_string] = ACTIONS(6629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4872), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4874), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LT_LPAREN] = ACTIONS(4878), + [anon_sym_GT_LPAREN] = ACTIONS(4878), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6629), + }, + [2211] = { + [sym_file_redirect] = STATE(1543), + [sym_heredoc_redirect] = STATE(1543), + [sym_herestring_redirect] = STATE(1543), + [aux_sym_redirected_statement_repeat1] = STATE(1543), + [sym__simple_heredoc_body] = ACTIONS(2516), + [sym__heredoc_body_beginning] = ACTIONS(2516), + [sym_file_descriptor] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_fi] = ACTIONS(2516), + [anon_sym_elif] = ACTIONS(2516), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), + }, + [2212] = { + [sym_file_redirect] = STATE(1543), + [sym_heredoc_redirect] = STATE(1543), + [sym_herestring_redirect] = STATE(1543), + [aux_sym_redirected_statement_repeat1] = STATE(1543), + [sym__simple_heredoc_body] = ACTIONS(2516), + [sym__heredoc_body_beginning] = ACTIONS(2516), + [sym_file_descriptor] = ACTIONS(2516), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_fi] = ACTIONS(2518), + [anon_sym_elif] = ACTIONS(2518), + [anon_sym_else] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), + }, + [2213] = { + [sym_file_redirect] = STATE(1543), + [sym_heredoc_redirect] = STATE(1543), + [sym_herestring_redirect] = STATE(1543), + [aux_sym_redirected_statement_repeat1] = STATE(1543), + [sym__simple_heredoc_body] = ACTIONS(2520), + [sym__heredoc_body_beginning] = ACTIONS(2520), + [sym_file_descriptor] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_fi] = ACTIONS(2520), + [anon_sym_elif] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_PIPE] = ACTIONS(3385), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(3389), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2520), + [anon_sym_AMP_GT] = ACTIONS(2522), + [anon_sym_AMP_GT_GT] = ACTIONS(2520), + [anon_sym_LT_AMP] = ACTIONS(2520), + [anon_sym_GT_AMP] = ACTIONS(2520), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + }, + [2214] = { + [sym_file_redirect] = STATE(1543), + [sym_heredoc_redirect] = STATE(1543), + [sym_herestring_redirect] = STATE(1543), + [aux_sym_redirected_statement_repeat1] = STATE(1543), + [sym__simple_heredoc_body] = ACTIONS(2520), + [sym__heredoc_body_beginning] = ACTIONS(2520), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_fi] = ACTIONS(2522), + [anon_sym_elif] = ACTIONS(2522), + [anon_sym_else] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(3385), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(3389), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + }, + [2215] = { + [aux_sym_concatenation_repeat1] = STATE(2828), + [sym__simple_heredoc_body] = ACTIONS(1009), + [sym__heredoc_body_beginning] = ACTIONS(1009), + [sym_file_descriptor] = ACTIONS(1009), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_fi] = ACTIONS(1009), + [anon_sym_elif] = ACTIONS(1009), + [anon_sym_else] = ACTIONS(1009), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_SEMI_SEMI] = ACTIONS(1009), + [anon_sym_PIPE_AMP] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1009), + [anon_sym_PIPE_PIPE] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_GT] = ACTIONS(1013), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(1013), + [anon_sym_AMP_GT_GT] = ACTIONS(1009), + [anon_sym_LT_AMP] = ACTIONS(1009), + [anon_sym_GT_AMP] = ACTIONS(1009), + [anon_sym_LT_LT] = ACTIONS(1013), + [anon_sym_LT_LT_DASH] = ACTIONS(1009), + [anon_sym_LT_LT_LT] = ACTIONS(1009), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1013), + }, + [2216] = { + [aux_sym_concatenation_repeat1] = STATE(2828), + [sym__simple_heredoc_body] = ACTIONS(1027), + [sym__heredoc_body_beginning] = ACTIONS(1027), + [sym_file_descriptor] = ACTIONS(1027), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_fi] = ACTIONS(1027), + [anon_sym_elif] = ACTIONS(1027), + [anon_sym_else] = ACTIONS(1027), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_SEMI_SEMI] = ACTIONS(1027), + [anon_sym_PIPE_AMP] = ACTIONS(1027), + [anon_sym_AMP_AMP] = ACTIONS(1027), + [anon_sym_PIPE_PIPE] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_AMP_GT] = ACTIONS(1029), + [anon_sym_AMP_GT_GT] = ACTIONS(1027), + [anon_sym_LT_AMP] = ACTIONS(1027), + [anon_sym_GT_AMP] = ACTIONS(1027), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_LT_LT_DASH] = ACTIONS(1027), + [anon_sym_LT_LT_LT] = ACTIONS(1027), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + }, + [2217] = { + [aux_sym_concatenation_repeat1] = STATE(2828), + [sym__simple_heredoc_body] = ACTIONS(2528), + [sym__heredoc_body_beginning] = ACTIONS(2528), + [sym_file_descriptor] = ACTIONS(2528), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_fi] = ACTIONS(2528), + [anon_sym_elif] = ACTIONS(2528), + [anon_sym_else] = ACTIONS(2528), + [anon_sym_PIPE] = ACTIONS(2530), + [anon_sym_SEMI_SEMI] = ACTIONS(2528), + [anon_sym_PIPE_AMP] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_GT] = ACTIONS(2530), + [anon_sym_GT_GT] = ACTIONS(2528), + [anon_sym_AMP_GT] = ACTIONS(2530), + [anon_sym_AMP_GT_GT] = ACTIONS(2528), + [anon_sym_LT_AMP] = ACTIONS(2528), + [anon_sym_GT_AMP] = ACTIONS(2528), + [anon_sym_LT_LT] = ACTIONS(2530), + [anon_sym_LT_LT_DASH] = ACTIONS(2528), + [anon_sym_LT_LT_LT] = ACTIONS(2528), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2530), + }, + [2218] = { + [aux_sym_concatenation_repeat1] = STATE(2828), + [sym__simple_heredoc_body] = ACTIONS(2532), + [sym__heredoc_body_beginning] = ACTIONS(2532), + [sym_file_descriptor] = ACTIONS(2532), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_fi] = ACTIONS(2532), + [anon_sym_elif] = ACTIONS(2532), + [anon_sym_else] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_SEMI_SEMI] = ACTIONS(2532), + [anon_sym_PIPE_AMP] = ACTIONS(2532), + [anon_sym_AMP_AMP] = ACTIONS(2532), + [anon_sym_PIPE_PIPE] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_AMP_GT] = ACTIONS(2534), + [anon_sym_AMP_GT_GT] = ACTIONS(2532), + [anon_sym_LT_AMP] = ACTIONS(2532), + [anon_sym_GT_AMP] = ACTIONS(2532), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_LT_LT_DASH] = ACTIONS(2532), + [anon_sym_LT_LT_LT] = ACTIONS(2532), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2534), + }, + [2219] = { + [sym_file_descriptor] = ACTIONS(2536), + [sym_variable_name] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_LPAREN_LPAREN] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_fi] = ACTIONS(6229), + [anon_sym_elif] = ACTIONS(6229), + [anon_sym_else] = ACTIONS(6229), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2540), + [anon_sym_typeset] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_readonly] = ACTIONS(2540), + [anon_sym_local] = ACTIONS(2540), + [anon_sym_unset] = ACTIONS(2540), + [anon_sym_unsetenv] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_GT] = ACTIONS(2540), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_AMP_GT] = ACTIONS(2540), + [anon_sym_AMP_GT_GT] = ACTIONS(2536), + [anon_sym_LT_AMP] = ACTIONS(2536), + [anon_sym_GT_AMP] = ACTIONS(2536), + [sym__special_characters] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2536), + [anon_sym_DOLLAR] = ACTIONS(2540), + [sym_raw_string] = ACTIONS(2536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2536), + [anon_sym_BQUOTE] = ACTIONS(2536), + [anon_sym_LT_LPAREN] = ACTIONS(2536), + [anon_sym_GT_LPAREN] = ACTIONS(2536), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2540), + }, + [2220] = { + [sym_file_redirect] = STATE(2220), + [sym_heredoc_redirect] = STATE(2220), + [sym_herestring_redirect] = STATE(2220), + [aux_sym_redirected_statement_repeat1] = STATE(2220), + [sym__simple_heredoc_body] = ACTIONS(2542), + [sym__heredoc_body_beginning] = ACTIONS(2542), + [sym_file_descriptor] = ACTIONS(6631), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_fi] = ACTIONS(2542), + [anon_sym_elif] = ACTIONS(2542), + [anon_sym_else] = ACTIONS(2542), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_SEMI_SEMI] = ACTIONS(2542), + [anon_sym_PIPE_AMP] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(6634), + [anon_sym_GT] = ACTIONS(6634), + [anon_sym_GT_GT] = ACTIONS(6637), + [anon_sym_AMP_GT] = ACTIONS(6634), + [anon_sym_AMP_GT_GT] = ACTIONS(6637), + [anon_sym_LT_AMP] = ACTIONS(6637), + [anon_sym_GT_AMP] = ACTIONS(6637), + [anon_sym_LT_LT] = ACTIONS(2555), + [anon_sym_LT_LT_DASH] = ACTIONS(2558), + [anon_sym_LT_LT_LT] = ACTIONS(6640), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2547), + }, + [2221] = { + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_fi] = ACTIONS(2566), + [anon_sym_elif] = ACTIONS(2566), + [anon_sym_else] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(2566), + [anon_sym_EQ_EQ] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2566), + [sym_raw_string] = ACTIONS(2564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2564), + [anon_sym_LT_LPAREN] = ACTIONS(2564), + [anon_sym_GT_LPAREN] = ACTIONS(2564), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2566), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [2222] = { + [aux_sym_concatenation_repeat1] = STATE(1519), + [sym__simple_heredoc_body] = ACTIONS(2568), + [sym__heredoc_body_beginning] = ACTIONS(2568), + [sym_file_descriptor] = ACTIONS(2568), + [sym__concat] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_fi] = ACTIONS(2570), + [anon_sym_elif] = ACTIONS(2570), + [anon_sym_else] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_SEMI_SEMI] = ACTIONS(2568), + [anon_sym_PIPE_AMP] = ACTIONS(2568), + [anon_sym_AMP_AMP] = ACTIONS(2568), + [anon_sym_PIPE_PIPE] = ACTIONS(2568), + [anon_sym_EQ_TILDE] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_AMP_GT] = ACTIONS(2570), + [anon_sym_AMP_GT_GT] = ACTIONS(2568), + [anon_sym_LT_AMP] = ACTIONS(2568), + [anon_sym_GT_AMP] = ACTIONS(2568), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_LT_LT_DASH] = ACTIONS(2568), + [anon_sym_LT_LT_LT] = ACTIONS(2568), + [sym__special_characters] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2568), + [anon_sym_DOLLAR] = ACTIONS(2570), + [sym_raw_string] = ACTIONS(2568), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2568), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2568), + [anon_sym_BQUOTE] = ACTIONS(2568), + [anon_sym_LT_LPAREN] = ACTIONS(2568), + [anon_sym_GT_LPAREN] = ACTIONS(2568), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2570), + [anon_sym_LF] = ACTIONS(2568), + [anon_sym_AMP] = ACTIONS(2570), + }, + [2223] = { + [aux_sym_concatenation_repeat1] = STATE(1519), + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [sym__concat] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_fi] = ACTIONS(2566), + [anon_sym_elif] = ACTIONS(2566), + [anon_sym_else] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(2566), + [anon_sym_EQ_EQ] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2566), + [sym_raw_string] = ACTIONS(2564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2564), + [anon_sym_LT_LPAREN] = ACTIONS(2564), + [anon_sym_GT_LPAREN] = ACTIONS(2564), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2566), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [2224] = { + [sym_concatenation] = STATE(2224), + [sym_string] = STATE(1546), + [sym_simple_expansion] = STATE(1546), + [sym_string_expansion] = STATE(1546), + [sym_expansion] = STATE(1546), + [sym_command_substitution] = STATE(1546), + [sym_process_substitution] = STATE(1546), + [aux_sym_command_repeat2] = STATE(2224), + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_fi] = ACTIONS(2566), + [anon_sym_elif] = ACTIONS(2566), + [anon_sym_else] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(6643), + [anon_sym_EQ_EQ] = ACTIONS(6643), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(6646), + [anon_sym_DQUOTE] = ACTIONS(6649), + [anon_sym_DOLLAR] = ACTIONS(6652), + [sym_raw_string] = ACTIONS(6655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6658), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6661), + [anon_sym_BQUOTE] = ACTIONS(6664), + [anon_sym_LT_LPAREN] = ACTIONS(6667), + [anon_sym_GT_LPAREN] = ACTIONS(6667), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6670), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [2225] = { + [sym_file_descriptor] = ACTIONS(1213), + [sym_variable_name] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_fi] = ACTIONS(6229), + [anon_sym_elif] = ACTIONS(6229), + [anon_sym_else] = ACTIONS(6229), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_function] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_typeset] = ACTIONS(1217), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_local] = ACTIONS(1217), + [anon_sym_unset] = ACTIONS(1217), + [anon_sym_unsetenv] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_GT] = ACTIONS(1213), + [anon_sym_AMP_GT] = ACTIONS(1217), + [anon_sym_AMP_GT_GT] = ACTIONS(1213), + [anon_sym_LT_AMP] = ACTIONS(1213), + [anon_sym_GT_AMP] = ACTIONS(1213), + [sym__special_characters] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1217), + [sym_raw_string] = ACTIONS(1213), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1213), + [anon_sym_BQUOTE] = ACTIONS(1213), + [anon_sym_LT_LPAREN] = ACTIONS(1213), + [anon_sym_GT_LPAREN] = ACTIONS(1213), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1217), + }, + [2226] = { + [anon_sym_SEMI] = ACTIONS(6673), + [anon_sym_fi] = ACTIONS(2538), + [anon_sym_elif] = ACTIONS(2538), + [anon_sym_else] = ACTIONS(2538), + [anon_sym_SEMI_SEMI] = ACTIONS(6675), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6675), + [anon_sym_AMP] = ACTIONS(6675), + }, + [2227] = { + [sym_concatenation] = STATE(2224), + [sym_string] = STATE(1546), + [sym_simple_expansion] = STATE(1546), + [sym_string_expansion] = STATE(1546), + [sym_expansion] = STATE(1546), + [sym_command_substitution] = STATE(1546), + [sym_process_substitution] = STATE(1546), + [aux_sym_command_repeat2] = STATE(2224), + [sym__simple_heredoc_body] = ACTIONS(2628), + [sym__heredoc_body_beginning] = ACTIONS(2628), + [sym_file_descriptor] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym_fi] = ACTIONS(2630), + [anon_sym_elif] = ACTIONS(2630), + [anon_sym_else] = ACTIONS(2630), + [anon_sym_PIPE] = ACTIONS(2630), + [anon_sym_SEMI_SEMI] = ACTIONS(2628), + [anon_sym_PIPE_AMP] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_EQ_TILDE] = ACTIONS(3399), + [anon_sym_EQ_EQ] = ACTIONS(3399), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_GT] = ACTIONS(2630), + [anon_sym_GT_GT] = ACTIONS(2628), + [anon_sym_AMP_GT] = ACTIONS(2630), + [anon_sym_AMP_GT_GT] = ACTIONS(2628), + [anon_sym_LT_AMP] = ACTIONS(2628), + [anon_sym_GT_AMP] = ACTIONS(2628), + [anon_sym_LT_LT] = ACTIONS(2630), + [anon_sym_LT_LT_DASH] = ACTIONS(2628), + [anon_sym_LT_LT_LT] = ACTIONS(2628), + [sym__special_characters] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_DOLLAR] = ACTIONS(1777), + [sym_raw_string] = ACTIONS(3403), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1783), + [anon_sym_BQUOTE] = ACTIONS(1785), + [anon_sym_LT_LPAREN] = ACTIONS(1787), + [anon_sym_GT_LPAREN] = ACTIONS(1787), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3405), + [anon_sym_LF] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2630), + }, + [2228] = { + [sym_concatenation] = STATE(2832), + [sym_string] = STATE(2831), + [sym_simple_expansion] = STATE(2831), + [sym_string_expansion] = STATE(2831), + [sym_expansion] = STATE(2831), + [sym_command_substitution] = STATE(2831), + [sym_process_substitution] = STATE(2831), + [sym__special_characters] = ACTIONS(6677), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(6679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6679), + }, + [2229] = { + [sym__statements] = STATE(2847), + [sym_redirected_statement] = STATE(2848), + [sym_for_statement] = STATE(2848), + [sym_c_style_for_statement] = STATE(2848), + [sym_while_statement] = STATE(2848), + [sym_if_statement] = STATE(2848), + [sym_case_statement] = STATE(2848), + [sym_function_definition] = STATE(2848), + [sym_compound_statement] = STATE(2848), + [sym_subshell] = STATE(2848), + [sym_pipeline] = STATE(2848), + [sym_list] = STATE(2848), + [sym_negated_command] = STATE(2848), + [sym_test_command] = STATE(2848), + [sym_declaration_command] = STATE(2848), + [sym_unset_command] = STATE(2848), + [sym_command] = STATE(2848), + [sym_command_name] = STATE(2849), + [sym_variable_assignment] = STATE(2850), + [sym_subscript] = STATE(2851), + [sym_file_redirect] = STATE(2854), + [sym_concatenation] = STATE(2852), + [sym_string] = STATE(2841), + [sym_simple_expansion] = STATE(2841), + [sym_string_expansion] = STATE(2841), + [sym_expansion] = STATE(2841), + [sym_command_substitution] = STATE(2841), + [sym_process_substitution] = STATE(2841), + [aux_sym__statements_repeat1] = STATE(2853), + [aux_sym_command_repeat1] = STATE(2854), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(6681), + [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(6683), + [anon_sym_SEMI_SEMI] = ACTIONS(6685), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(6687), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(6689), + [anon_sym_typeset] = ACTIONS(6689), + [anon_sym_export] = ACTIONS(6689), + [anon_sym_readonly] = ACTIONS(6689), + [anon_sym_local] = ACTIONS(6689), + [anon_sym_unset] = ACTIONS(6691), + [anon_sym_unsetenv] = ACTIONS(6691), + [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(6693), + [anon_sym_DQUOTE] = ACTIONS(6695), + [anon_sym_DOLLAR] = ACTIONS(6697), + [sym_raw_string] = ACTIONS(6699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6703), + [anon_sym_BQUOTE] = ACTIONS(6705), + [anon_sym_LT_LPAREN] = ACTIONS(6707), + [anon_sym_GT_LPAREN] = ACTIONS(6707), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6709), + }, + [2230] = { + [aux_sym_case_item_repeat1] = STATE(2856), + [anon_sym_PIPE] = ACTIONS(5149), + [anon_sym_RPAREN] = ACTIONS(6711), + [sym_comment] = ACTIONS(57), + }, + [2231] = { + [aux_sym_concatenation_repeat1] = STATE(2857), + [sym__concat] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(1043), + [anon_sym_RPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + }, + [2232] = { + [sym__statements] = STATE(2859), + [sym_redirected_statement] = STATE(2848), + [sym_for_statement] = STATE(2848), + [sym_c_style_for_statement] = STATE(2848), + [sym_while_statement] = STATE(2848), + [sym_if_statement] = STATE(2848), + [sym_case_statement] = STATE(2848), + [sym_function_definition] = STATE(2848), + [sym_compound_statement] = STATE(2848), + [sym_subshell] = STATE(2848), + [sym_pipeline] = STATE(2848), + [sym_list] = STATE(2848), + [sym_negated_command] = STATE(2848), + [sym_test_command] = STATE(2848), + [sym_declaration_command] = STATE(2848), + [sym_unset_command] = STATE(2848), + [sym_command] = STATE(2848), + [sym_command_name] = STATE(2849), + [sym_variable_assignment] = STATE(2850), + [sym_subscript] = STATE(2851), + [sym_file_redirect] = STATE(2854), + [sym_concatenation] = STATE(2852), + [sym_string] = STATE(2841), + [sym_simple_expansion] = STATE(2841), + [sym_string_expansion] = STATE(2841), + [sym_expansion] = STATE(2841), + [sym_command_substitution] = STATE(2841), + [sym_process_substitution] = STATE(2841), + [aux_sym__statements_repeat1] = STATE(2853), + [aux_sym_command_repeat1] = STATE(2854), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(6681), + [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(6713), + [anon_sym_SEMI_SEMI] = ACTIONS(6715), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(6687), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(6689), + [anon_sym_typeset] = ACTIONS(6689), + [anon_sym_export] = ACTIONS(6689), + [anon_sym_readonly] = ACTIONS(6689), + [anon_sym_local] = ACTIONS(6689), + [anon_sym_unset] = ACTIONS(6691), + [anon_sym_unsetenv] = ACTIONS(6691), + [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(6693), + [anon_sym_DQUOTE] = ACTIONS(6695), + [anon_sym_DOLLAR] = ACTIONS(6697), + [sym_raw_string] = ACTIONS(6699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6703), + [anon_sym_BQUOTE] = ACTIONS(6705), + [anon_sym_LT_LPAREN] = ACTIONS(6707), + [anon_sym_GT_LPAREN] = ACTIONS(6707), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6709), + }, + [2233] = { + [aux_sym_case_item_repeat1] = STATE(2856), + [anon_sym_PIPE] = ACTIONS(5149), + [anon_sym_RPAREN] = ACTIONS(6717), + [sym_comment] = ACTIONS(57), + }, + [2234] = { + [sym__simple_heredoc_body] = ACTIONS(6719), + [sym__heredoc_body_beginning] = ACTIONS(6719), + [sym_file_descriptor] = ACTIONS(6719), + [ts_builtin_sym_end] = ACTIONS(6719), + [anon_sym_SEMI] = ACTIONS(6721), + [anon_sym_done] = ACTIONS(6719), + [anon_sym_fi] = ACTIONS(6719), + [anon_sym_elif] = ACTIONS(6719), + [anon_sym_else] = ACTIONS(6719), + [anon_sym_esac] = ACTIONS(6719), + [anon_sym_PIPE] = ACTIONS(6721), + [anon_sym_RPAREN] = ACTIONS(6719), + [anon_sym_SEMI_SEMI] = ACTIONS(6719), + [anon_sym_PIPE_AMP] = ACTIONS(6719), + [anon_sym_AMP_AMP] = ACTIONS(6719), + [anon_sym_PIPE_PIPE] = ACTIONS(6719), + [anon_sym_LT] = ACTIONS(6721), + [anon_sym_GT] = ACTIONS(6721), + [anon_sym_GT_GT] = ACTIONS(6719), + [anon_sym_AMP_GT] = ACTIONS(6721), + [anon_sym_AMP_GT_GT] = ACTIONS(6719), + [anon_sym_LT_AMP] = ACTIONS(6719), + [anon_sym_GT_AMP] = ACTIONS(6719), + [anon_sym_LT_LT] = ACTIONS(6721), + [anon_sym_LT_LT_DASH] = ACTIONS(6719), + [anon_sym_LT_LT_LT] = ACTIONS(6719), + [anon_sym_BQUOTE] = ACTIONS(6719), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6719), + [anon_sym_AMP] = ACTIONS(6721), + }, + [2235] = { + [anon_sym_esac] = ACTIONS(6723), + [sym_comment] = ACTIONS(57), + }, + [2236] = { + [sym_case_item] = STATE(2236), + [sym_concatenation] = STATE(2864), + [sym_string] = STATE(2863), + [sym_simple_expansion] = STATE(2863), + [sym_string_expansion] = STATE(2863), + [sym_expansion] = STATE(2863), + [sym_command_substitution] = STATE(2863), + [sym_process_substitution] = STATE(2863), + [aux_sym_case_statement_repeat1] = STATE(2236), + [sym__special_characters] = ACTIONS(6725), + [anon_sym_DQUOTE] = ACTIONS(6728), + [anon_sym_DOLLAR] = ACTIONS(6731), + [sym_raw_string] = ACTIONS(6734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6740), + [anon_sym_BQUOTE] = ACTIONS(6743), + [anon_sym_LT_LPAREN] = ACTIONS(6746), + [anon_sym_GT_LPAREN] = ACTIONS(6746), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6734), + }, + [2237] = { + [sym_case_item] = STATE(2236), + [sym_last_case_item] = STATE(2865), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2236), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3413), + }, + [2238] = { + [sym__simple_heredoc_body] = ACTIONS(6749), + [sym__heredoc_body_beginning] = ACTIONS(6749), + [sym_file_descriptor] = ACTIONS(6749), + [ts_builtin_sym_end] = ACTIONS(6749), + [anon_sym_SEMI] = ACTIONS(6751), + [anon_sym_done] = ACTIONS(6749), + [anon_sym_fi] = ACTIONS(6749), + [anon_sym_elif] = ACTIONS(6749), + [anon_sym_else] = ACTIONS(6749), + [anon_sym_esac] = ACTIONS(6749), + [anon_sym_PIPE] = ACTIONS(6751), + [anon_sym_RPAREN] = ACTIONS(6749), + [anon_sym_SEMI_SEMI] = ACTIONS(6749), + [anon_sym_PIPE_AMP] = ACTIONS(6749), + [anon_sym_AMP_AMP] = ACTIONS(6749), + [anon_sym_PIPE_PIPE] = ACTIONS(6749), + [anon_sym_LT] = ACTIONS(6751), + [anon_sym_GT] = ACTIONS(6751), + [anon_sym_GT_GT] = ACTIONS(6749), + [anon_sym_AMP_GT] = ACTIONS(6751), + [anon_sym_AMP_GT_GT] = ACTIONS(6749), + [anon_sym_LT_AMP] = ACTIONS(6749), + [anon_sym_GT_AMP] = ACTIONS(6749), + [anon_sym_LT_LT] = ACTIONS(6751), + [anon_sym_LT_LT_DASH] = ACTIONS(6749), + [anon_sym_LT_LT_LT] = ACTIONS(6749), + [anon_sym_BQUOTE] = ACTIONS(6749), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6749), + [anon_sym_AMP] = ACTIONS(6751), + }, + [2239] = { + [anon_sym_esac] = ACTIONS(6753), + [sym_comment] = ACTIONS(57), + }, + [2240] = { + [sym_case_item] = STATE(2236), + [sym_last_case_item] = STATE(2867), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2236), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3413), + }, + [2241] = { + [sym__concat] = ACTIONS(5525), + [anon_sym_in] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5525), + }, + [2242] = { + [sym__concat] = ACTIONS(5533), + [anon_sym_in] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5533), + }, + [2243] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(6755), + [sym_comment] = ACTIONS(57), + }, + [2244] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(6757), + [sym_comment] = ACTIONS(57), + }, + [2245] = { + [anon_sym_RBRACE] = ACTIONS(6757), + [sym_comment] = ACTIONS(57), + }, + [2246] = { + [sym_concatenation] = STATE(2871), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2871), + [anon_sym_RBRACE] = ACTIONS(6759), + [anon_sym_EQ] = ACTIONS(6761), + [anon_sym_DASH] = ACTIONS(6761), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6761), + [anon_sym_COLON_QMARK] = ACTIONS(6761), + [anon_sym_COLON_DASH] = ACTIONS(6761), + [anon_sym_PERCENT] = ACTIONS(6761), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2247] = { + [sym__concat] = ACTIONS(5577), + [anon_sym_in] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5577), + }, + [2248] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6759), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2249] = { + [sym_concatenation] = STATE(2872), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2872), + [anon_sym_RBRACE] = ACTIONS(6757), + [anon_sym_EQ] = ACTIONS(6765), + [anon_sym_DASH] = ACTIONS(6765), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6767), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6765), + [anon_sym_COLON_QMARK] = ACTIONS(6765), + [anon_sym_COLON_DASH] = ACTIONS(6765), + [anon_sym_PERCENT] = ACTIONS(6765), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2250] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6757), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2251] = { + [sym__concat] = ACTIONS(5622), + [anon_sym_in] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5622), + }, + [2252] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6769), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2253] = { + [aux_sym_concatenation_repeat1] = STATE(2253), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(4364), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [2254] = { + [aux_sym_concatenation_repeat1] = STATE(2254), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [2255] = { + [sym__simple_heredoc_body] = ACTIONS(4334), + [sym__heredoc_body_beginning] = ACTIONS(4334), + [sym_file_descriptor] = ACTIONS(4334), + [sym_variable_name] = ACTIONS(4334), + [anon_sym_SEMI] = ACTIONS(4336), + [anon_sym_PIPE] = ACTIONS(4336), + [anon_sym_SEMI_SEMI] = ACTIONS(4334), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_PIPE_AMP] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4336), + [anon_sym_GT] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4334), + [anon_sym_AMP_GT] = ACTIONS(4336), + [anon_sym_AMP_GT_GT] = ACTIONS(4334), + [anon_sym_LT_AMP] = ACTIONS(4334), + [anon_sym_GT_AMP] = ACTIONS(4334), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_LT_LT_DASH] = ACTIONS(4334), + [anon_sym_LT_LT_LT] = ACTIONS(4334), + [sym__special_characters] = ACTIONS(4336), + [anon_sym_DQUOTE] = ACTIONS(4334), + [anon_sym_DOLLAR] = ACTIONS(4336), + [sym_raw_string] = ACTIONS(4334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4334), + [anon_sym_BQUOTE] = ACTIONS(4334), + [anon_sym_LT_LPAREN] = ACTIONS(4334), + [anon_sym_GT_LPAREN] = ACTIONS(4334), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4336), + [anon_sym_LF] = ACTIONS(4334), + [anon_sym_AMP] = ACTIONS(4336), + }, + [2256] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [2257] = { + [aux_sym_concatenation_repeat1] = STATE(2257), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(6771), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [2258] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [sym_variable_name] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [2259] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(6774), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [2260] = { + [sym_concatenation] = STATE(2878), + [sym_string] = STATE(2877), + [sym_simple_expansion] = STATE(2877), + [sym_string_expansion] = STATE(2877), + [sym_expansion] = STATE(2877), + [sym_command_substitution] = STATE(2877), + [sym_process_substitution] = STATE(2877), + [anon_sym_RBRACE] = ACTIONS(6776), + [sym__special_characters] = ACTIONS(6778), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(6780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6780), + }, + [2261] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(6782), + [sym_comment] = ACTIONS(57), + }, + [2262] = { + [sym_concatenation] = STATE(2882), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2882), + [anon_sym_RBRACE] = ACTIONS(6784), + [anon_sym_EQ] = ACTIONS(6786), + [anon_sym_DASH] = ACTIONS(6786), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(6790), + [anon_sym_COLON] = ACTIONS(6786), + [anon_sym_COLON_QMARK] = ACTIONS(6786), + [anon_sym_COLON_DASH] = ACTIONS(6786), + [anon_sym_PERCENT] = ACTIONS(6786), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2263] = { + [sym_concatenation] = STATE(2884), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2884), + [anon_sym_RBRACE] = ACTIONS(6776), + [anon_sym_EQ] = ACTIONS(6792), + [anon_sym_DASH] = ACTIONS(6792), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(6796), + [anon_sym_COLON] = ACTIONS(6792), + [anon_sym_COLON_QMARK] = ACTIONS(6792), + [anon_sym_COLON_DASH] = ACTIONS(6792), + [anon_sym_PERCENT] = ACTIONS(6792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2264] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [sym_variable_name] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_RBRACE] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2394), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [2265] = { + [sym_concatenation] = STATE(2887), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2887), + [sym_regex] = ACTIONS(6798), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6802), + [anon_sym_DASH] = ACTIONS(6802), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6802), + [anon_sym_COLON_QMARK] = ACTIONS(6802), + [anon_sym_COLON_DASH] = ACTIONS(6802), + [anon_sym_PERCENT] = ACTIONS(6802), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2266] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2267] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [sym_variable_name] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [2268] = { + [sym_concatenation] = STATE(2884), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2884), + [sym_regex] = ACTIONS(6806), + [anon_sym_RBRACE] = ACTIONS(6776), + [anon_sym_EQ] = ACTIONS(6792), + [anon_sym_DASH] = ACTIONS(6792), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6792), + [anon_sym_COLON_QMARK] = ACTIONS(6792), + [anon_sym_COLON_DASH] = ACTIONS(6792), + [anon_sym_PERCENT] = ACTIONS(6792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2269] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6776), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2270] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [sym_variable_name] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [anon_sym_SEMI_SEMI] = ACTIONS(2446), + [anon_sym_RBRACE] = 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), + [sym__special_characters] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [2271] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [sym_variable_name] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [2272] = { + [sym_do_group] = STATE(2890), + [sym_compound_statement] = STATE(2890), + [anon_sym_SEMI] = ACTIONS(6808), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(191), + [sym_comment] = ACTIONS(57), + }, + [2273] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(6810), + [anon_sym_AMP_AMP] = ACTIONS(553), + [anon_sym_PIPE_PIPE] = ACTIONS(553), + [anon_sym_EQ_TILDE] = ACTIONS(555), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_PLUS_EQ] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_DASH_EQ] = ACTIONS(553), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(553), + }, + [2274] = { + [sym__expression] = STATE(2892), + [sym_binary_expression] = STATE(2892), + [sym_unary_expression] = STATE(2892), + [sym_postfix_expression] = STATE(2892), + [sym_parenthesized_expression] = STATE(2892), + [sym_concatenation] = STATE(2892), + [sym_string] = STATE(46), + [sym_simple_expansion] = STATE(46), + [sym_string_expansion] = STATE(46), + [sym_expansion] = STATE(46), + [sym_command_substitution] = STATE(46), + [sym_process_substitution] = STATE(46), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6810), + [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), + }, + [2275] = { + [anon_sym_SEMI] = ACTIONS(6812), + [anon_sym_SEMI_SEMI] = ACTIONS(6814), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_PLUS_EQ] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1453), + [anon_sym_LF] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6812), + }, + [2276] = { + [sym_do_group] = STATE(2894), + [anon_sym_do] = ACTIONS(1907), + [sym_comment] = ACTIONS(57), + }, + [2277] = { + [sym__simple_heredoc_body] = ACTIONS(4854), + [sym__heredoc_body_beginning] = ACTIONS(4854), + [sym_file_descriptor] = ACTIONS(4854), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_SEMI_SEMI] = ACTIONS(4854), + [anon_sym_RBRACE] = ACTIONS(4854), + [anon_sym_PIPE_AMP] = ACTIONS(4854), + [anon_sym_AMP_AMP] = ACTIONS(4854), + [anon_sym_PIPE_PIPE] = ACTIONS(4854), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_GT_GT] = ACTIONS(4854), + [anon_sym_AMP_GT] = ACTIONS(4856), + [anon_sym_AMP_GT_GT] = ACTIONS(4854), + [anon_sym_LT_AMP] = ACTIONS(4854), + [anon_sym_GT_AMP] = ACTIONS(4854), + [anon_sym_LT_LT] = ACTIONS(4856), + [anon_sym_LT_LT_DASH] = ACTIONS(4854), + [anon_sym_LT_LT_LT] = ACTIONS(4854), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4854), + [anon_sym_AMP] = ACTIONS(4856), + }, + [2278] = { + [sym__simple_heredoc_body] = ACTIONS(5108), + [sym__heredoc_body_beginning] = ACTIONS(5108), + [sym_file_descriptor] = ACTIONS(5108), + [anon_sym_SEMI] = ACTIONS(5110), + [anon_sym_PIPE] = ACTIONS(5110), + [anon_sym_SEMI_SEMI] = ACTIONS(5108), + [anon_sym_RBRACE] = ACTIONS(5108), + [anon_sym_PIPE_AMP] = ACTIONS(5108), + [anon_sym_AMP_AMP] = ACTIONS(5108), + [anon_sym_PIPE_PIPE] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5110), + [anon_sym_GT] = ACTIONS(5110), + [anon_sym_GT_GT] = ACTIONS(5108), + [anon_sym_AMP_GT] = ACTIONS(5110), + [anon_sym_AMP_GT_GT] = ACTIONS(5108), + [anon_sym_LT_AMP] = ACTIONS(5108), + [anon_sym_GT_AMP] = ACTIONS(5108), + [anon_sym_LT_LT] = ACTIONS(5110), + [anon_sym_LT_LT_DASH] = ACTIONS(5108), + [anon_sym_LT_LT_LT] = ACTIONS(5108), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5108), + [anon_sym_AMP] = ACTIONS(5110), + }, + [2279] = { + [anon_sym_fi] = ACTIONS(6816), + [sym_comment] = ACTIONS(57), + }, + [2280] = { + [sym_elif_clause] = STATE(1550), + [sym_else_clause] = STATE(2896), + [aux_sym_if_statement_repeat1] = STATE(1550), + [anon_sym_fi] = ACTIONS(6816), + [anon_sym_elif] = ACTIONS(3377), + [anon_sym_else] = ACTIONS(3379), + [sym_comment] = ACTIONS(57), + }, + [2281] = { + [sym__simple_heredoc_body] = ACTIONS(5145), + [sym__heredoc_body_beginning] = ACTIONS(5145), + [sym_file_descriptor] = ACTIONS(5145), + [anon_sym_SEMI] = ACTIONS(5147), + [anon_sym_PIPE] = ACTIONS(5147), + [anon_sym_SEMI_SEMI] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(5145), + [anon_sym_PIPE_AMP] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5147), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_GT_GT] = ACTIONS(5145), + [anon_sym_AMP_GT] = ACTIONS(5147), + [anon_sym_AMP_GT_GT] = ACTIONS(5145), + [anon_sym_LT_AMP] = ACTIONS(5145), + [anon_sym_GT_AMP] = ACTIONS(5145), + [anon_sym_LT_LT] = ACTIONS(5147), + [anon_sym_LT_LT_DASH] = ACTIONS(5145), + [anon_sym_LT_LT_LT] = ACTIONS(5145), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5145), + [anon_sym_AMP] = ACTIONS(5147), + }, + [2282] = { + [anon_sym_esac] = ACTIONS(6818), + [sym_comment] = ACTIONS(57), + }, + [2283] = { + [sym_case_item] = STATE(2236), + [sym_last_case_item] = STATE(2898), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2236), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3413), + }, + [2284] = { + [sym_case_item] = STATE(2899), + [sym_last_case_item] = STATE(2898), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2899), + [anon_sym_esac] = ACTIONS(6820), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3415), + }, + [2285] = { + [sym__simple_heredoc_body] = ACTIONS(5159), + [sym__heredoc_body_beginning] = ACTIONS(5159), + [sym_file_descriptor] = ACTIONS(5159), + [anon_sym_SEMI] = ACTIONS(5161), + [anon_sym_PIPE] = ACTIONS(5161), + [anon_sym_SEMI_SEMI] = ACTIONS(5159), + [anon_sym_RBRACE] = ACTIONS(5159), + [anon_sym_PIPE_AMP] = ACTIONS(5159), + [anon_sym_AMP_AMP] = ACTIONS(5159), + [anon_sym_PIPE_PIPE] = ACTIONS(5159), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_GT_GT] = ACTIONS(5159), + [anon_sym_AMP_GT] = ACTIONS(5161), + [anon_sym_AMP_GT_GT] = ACTIONS(5159), + [anon_sym_LT_AMP] = ACTIONS(5159), + [anon_sym_GT_AMP] = ACTIONS(5159), + [anon_sym_LT_LT] = ACTIONS(5161), + [anon_sym_LT_LT_DASH] = ACTIONS(5159), + [anon_sym_LT_LT_LT] = ACTIONS(5159), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5159), + [anon_sym_AMP] = ACTIONS(5161), + }, + [2286] = { + [anon_sym_esac] = ACTIONS(6822), + [sym_comment] = ACTIONS(57), + }, + [2287] = { + [sym_case_item] = STATE(2236), + [sym_last_case_item] = STATE(2901), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2236), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3413), + }, + [2288] = { + [sym_case_item] = STATE(2902), + [sym_last_case_item] = STATE(2901), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2902), + [anon_sym_esac] = ACTIONS(6824), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3415), + }, + [2289] = { + [sym__simple_heredoc_body] = ACTIONS(5195), + [sym__heredoc_body_beginning] = ACTIONS(5195), + [sym_file_descriptor] = ACTIONS(5195), + [anon_sym_SEMI] = ACTIONS(5197), + [anon_sym_PIPE] = ACTIONS(5197), + [anon_sym_SEMI_SEMI] = ACTIONS(5195), + [anon_sym_RBRACE] = ACTIONS(5195), + [anon_sym_PIPE_AMP] = ACTIONS(5195), + [anon_sym_AMP_AMP] = ACTIONS(5195), + [anon_sym_PIPE_PIPE] = ACTIONS(5195), + [anon_sym_LT] = ACTIONS(5197), + [anon_sym_GT] = ACTIONS(5197), + [anon_sym_GT_GT] = ACTIONS(5195), + [anon_sym_AMP_GT] = ACTIONS(5197), + [anon_sym_AMP_GT_GT] = ACTIONS(5195), + [anon_sym_LT_AMP] = ACTIONS(5195), + [anon_sym_GT_AMP] = ACTIONS(5195), + [anon_sym_LT_LT] = ACTIONS(5197), + [anon_sym_LT_LT_DASH] = ACTIONS(5195), + [anon_sym_LT_LT_LT] = ACTIONS(5195), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5195), + [anon_sym_AMP] = ACTIONS(5197), + }, + [2290] = { + [sym__simple_heredoc_body] = ACTIONS(2646), + [sym__heredoc_body_beginning] = ACTIONS(2646), + [sym_file_descriptor] = ACTIONS(2646), + [sym_variable_name] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_SEMI_SEMI] = ACTIONS(2646), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_PIPE_AMP] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_PIPE_PIPE] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_GT] = ACTIONS(2648), + [anon_sym_GT_GT] = ACTIONS(2646), + [anon_sym_AMP_GT] = ACTIONS(2648), + [anon_sym_AMP_GT_GT] = ACTIONS(2646), + [anon_sym_LT_AMP] = ACTIONS(2646), + [anon_sym_GT_AMP] = ACTIONS(2646), + [anon_sym_LT_LT] = ACTIONS(2648), + [anon_sym_LT_LT_DASH] = ACTIONS(2646), + [anon_sym_LT_LT_LT] = ACTIONS(2646), + [sym__special_characters] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2648), + [sym_raw_string] = ACTIONS(2646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2646), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2646), + [anon_sym_BQUOTE] = ACTIONS(2646), + [anon_sym_LT_LPAREN] = ACTIONS(2646), + [anon_sym_GT_LPAREN] = ACTIONS(2646), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2648), + [sym_word] = ACTIONS(2648), + [anon_sym_LF] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2648), + }, + [2291] = { + [sym_concatenation] = STATE(1243), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1243), + [anon_sym_RPAREN] = ACTIONS(6826), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [2292] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [sym_variable_name] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_RBRACE] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4003), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [2293] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [sym_variable_name] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4017), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4017), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [2294] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(6828), + [sym_comment] = ACTIONS(57), + }, + [2295] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(6830), + [sym_comment] = ACTIONS(57), + }, + [2296] = { + [anon_sym_RBRACE] = ACTIONS(6830), + [sym_comment] = ACTIONS(57), + }, + [2297] = { + [sym_concatenation] = STATE(2908), + [sym_string] = STATE(2907), + [sym_simple_expansion] = STATE(2907), + [sym_string_expansion] = STATE(2907), + [sym_expansion] = STATE(2907), + [sym_command_substitution] = STATE(2907), + [sym_process_substitution] = STATE(2907), + [anon_sym_RBRACE] = ACTIONS(6830), + [sym__special_characters] = ACTIONS(6832), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(6834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6834), + }, + [2298] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [sym_variable_name] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_RBRACE] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4053), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4053), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [2299] = { + [sym_concatenation] = STATE(2911), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2911), + [sym_regex] = ACTIONS(6836), + [anon_sym_RBRACE] = ACTIONS(6838), + [anon_sym_EQ] = ACTIONS(6840), + [anon_sym_DASH] = ACTIONS(6840), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6842), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6840), + [anon_sym_COLON_QMARK] = ACTIONS(6840), + [anon_sym_COLON_DASH] = ACTIONS(6840), + [anon_sym_PERCENT] = ACTIONS(6840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2300] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6838), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2301] = { + [sym_concatenation] = STATE(2913), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2913), + [sym_regex] = ACTIONS(6844), + [anon_sym_RBRACE] = ACTIONS(6830), + [anon_sym_EQ] = ACTIONS(6846), + [anon_sym_DASH] = ACTIONS(6846), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6846), + [anon_sym_COLON_QMARK] = ACTIONS(6846), + [anon_sym_COLON_DASH] = ACTIONS(6846), + [anon_sym_PERCENT] = ACTIONS(6846), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2302] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6830), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2303] = { + [sym_concatenation] = STATE(2915), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2915), + [anon_sym_RBRACE] = ACTIONS(6850), + [anon_sym_EQ] = ACTIONS(6852), + [anon_sym_DASH] = ACTIONS(6852), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6852), + [anon_sym_COLON_QMARK] = ACTIONS(6852), + [anon_sym_COLON_DASH] = ACTIONS(6852), + [anon_sym_PERCENT] = ACTIONS(6852), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2304] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [sym_variable_name] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_RBRACE] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4109), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [2305] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6850), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2306] = { + [sym_concatenation] = STATE(2913), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2913), + [anon_sym_RBRACE] = ACTIONS(6830), + [anon_sym_EQ] = ACTIONS(6846), + [anon_sym_DASH] = ACTIONS(6846), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6846), + [anon_sym_COLON_QMARK] = ACTIONS(6846), + [anon_sym_COLON_DASH] = ACTIONS(6846), + [anon_sym_PERCENT] = ACTIONS(6846), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2307] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_RBRACE] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4003), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [2308] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4017), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4017), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [2309] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(6856), + [sym_comment] = ACTIONS(57), + }, + [2310] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(6858), + [sym_comment] = ACTIONS(57), + }, + [2311] = { + [anon_sym_RBRACE] = ACTIONS(6858), + [sym_comment] = ACTIONS(57), + }, + [2312] = { + [sym_concatenation] = STATE(2920), + [sym_string] = STATE(2919), + [sym_simple_expansion] = STATE(2919), + [sym_string_expansion] = STATE(2919), + [sym_expansion] = STATE(2919), + [sym_command_substitution] = STATE(2919), + [sym_process_substitution] = STATE(2919), + [anon_sym_RBRACE] = ACTIONS(6858), + [sym__special_characters] = ACTIONS(6860), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(6862), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6862), + }, + [2313] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_RBRACE] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4053), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4053), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [2314] = { + [sym_concatenation] = STATE(2923), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2923), + [sym_regex] = ACTIONS(6864), + [anon_sym_RBRACE] = ACTIONS(6866), + [anon_sym_EQ] = ACTIONS(6868), + [anon_sym_DASH] = ACTIONS(6868), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6870), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6868), + [anon_sym_COLON_QMARK] = ACTIONS(6868), + [anon_sym_COLON_DASH] = ACTIONS(6868), + [anon_sym_PERCENT] = ACTIONS(6868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2315] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6866), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2316] = { + [sym_concatenation] = STATE(2925), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2925), + [sym_regex] = ACTIONS(6872), + [anon_sym_RBRACE] = ACTIONS(6858), + [anon_sym_EQ] = ACTIONS(6874), + [anon_sym_DASH] = ACTIONS(6874), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6874), + [anon_sym_COLON_QMARK] = ACTIONS(6874), + [anon_sym_COLON_DASH] = ACTIONS(6874), + [anon_sym_PERCENT] = ACTIONS(6874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2317] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6858), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2318] = { + [sym_concatenation] = STATE(2927), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2927), + [anon_sym_RBRACE] = ACTIONS(6878), + [anon_sym_EQ] = ACTIONS(6880), + [anon_sym_DASH] = ACTIONS(6880), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6880), + [anon_sym_COLON_QMARK] = ACTIONS(6880), + [anon_sym_COLON_DASH] = ACTIONS(6880), + [anon_sym_PERCENT] = ACTIONS(6880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2319] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_RBRACE] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4109), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [2320] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6878), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2321] = { + [sym_concatenation] = STATE(2925), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2925), + [anon_sym_RBRACE] = ACTIONS(6858), + [anon_sym_EQ] = ACTIONS(6874), + [anon_sym_DASH] = ACTIONS(6874), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6874), + [anon_sym_COLON_QMARK] = ACTIONS(6874), + [anon_sym_COLON_DASH] = ACTIONS(6874), + [anon_sym_PERCENT] = ACTIONS(6874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2322] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_RBRACE] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_EQ_TILDE] = ACTIONS(5527), + [anon_sym_EQ_EQ] = ACTIONS(5527), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5527), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [2323] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_RBRACE] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_EQ_TILDE] = ACTIONS(5535), + [anon_sym_EQ_EQ] = ACTIONS(5535), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5535), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [2324] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(6884), + [sym_comment] = ACTIONS(57), + }, + [2325] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(6886), + [sym_comment] = ACTIONS(57), + }, + [2326] = { + [anon_sym_RBRACE] = ACTIONS(6886), + [sym_comment] = ACTIONS(57), + }, + [2327] = { + [sym_concatenation] = STATE(2931), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2931), + [anon_sym_RBRACE] = ACTIONS(6888), + [anon_sym_EQ] = ACTIONS(6890), + [anon_sym_DASH] = ACTIONS(6890), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6890), + [anon_sym_COLON_QMARK] = ACTIONS(6890), + [anon_sym_COLON_DASH] = ACTIONS(6890), + [anon_sym_PERCENT] = ACTIONS(6890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2328] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_RBRACE] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_EQ_TILDE] = ACTIONS(5579), + [anon_sym_EQ_EQ] = ACTIONS(5579), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5579), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [2329] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6888), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2330] = { + [sym_concatenation] = STATE(2932), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2932), + [anon_sym_RBRACE] = ACTIONS(6886), + [anon_sym_EQ] = ACTIONS(6894), + [anon_sym_DASH] = ACTIONS(6894), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6896), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6894), + [anon_sym_COLON_QMARK] = ACTIONS(6894), + [anon_sym_COLON_DASH] = ACTIONS(6894), + [anon_sym_PERCENT] = ACTIONS(6894), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2331] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6886), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2332] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_RBRACE] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_EQ_TILDE] = ACTIONS(5624), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5624), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [2333] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6898), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2334] = { + [aux_sym_concatenation_repeat1] = STATE(2334), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(3718), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [2335] = { + [sym_file_descriptor] = ACTIONS(4334), + [sym_variable_name] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4336), + [anon_sym_GT] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4334), + [anon_sym_AMP_GT] = ACTIONS(4336), + [anon_sym_AMP_GT_GT] = ACTIONS(4334), + [anon_sym_LT_AMP] = ACTIONS(4334), + [anon_sym_GT_AMP] = ACTIONS(4334), + [sym__special_characters] = ACTIONS(4334), + [anon_sym_DQUOTE] = ACTIONS(4334), + [anon_sym_DOLLAR] = ACTIONS(4336), + [sym_raw_string] = ACTIONS(4334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4334), + [anon_sym_BQUOTE] = ACTIONS(4334), + [anon_sym_LT_LPAREN] = ACTIONS(4334), + [anon_sym_GT_LPAREN] = ACTIONS(4334), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4334), + }, + [2336] = { + [sym__concat] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_RBRACK] = ACTIONS(5525), + [anon_sym_EQ_TILDE] = ACTIONS(5525), + [anon_sym_EQ_EQ] = ACTIONS(5525), + [anon_sym_EQ] = ACTIONS(5527), + [anon_sym_PLUS_EQ] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_BANG_EQ] = ACTIONS(5525), + [anon_sym_PLUS] = ACTIONS(5527), + [anon_sym_DASH] = ACTIONS(5527), + [anon_sym_DASH_EQ] = ACTIONS(5525), + [anon_sym_LT_EQ] = ACTIONS(5525), + [anon_sym_GT_EQ] = ACTIONS(5525), + [anon_sym_PLUS_PLUS] = ACTIONS(5525), + [anon_sym_DASH_DASH] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5525), + }, + [2337] = { + [sym__concat] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_RBRACK] = ACTIONS(5533), + [anon_sym_EQ_TILDE] = ACTIONS(5533), + [anon_sym_EQ_EQ] = ACTIONS(5533), + [anon_sym_EQ] = ACTIONS(5535), + [anon_sym_PLUS_EQ] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_BANG_EQ] = ACTIONS(5533), + [anon_sym_PLUS] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(5535), + [anon_sym_DASH_EQ] = ACTIONS(5533), + [anon_sym_LT_EQ] = ACTIONS(5533), + [anon_sym_GT_EQ] = ACTIONS(5533), + [anon_sym_PLUS_PLUS] = ACTIONS(5533), + [anon_sym_DASH_DASH] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5533), + }, + [2338] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(6900), + [sym_comment] = ACTIONS(57), + }, + [2339] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(6902), + [sym_comment] = ACTIONS(57), + }, + [2340] = { + [anon_sym_RBRACE] = ACTIONS(6902), + [sym_comment] = ACTIONS(57), + }, + [2341] = { + [sym_concatenation] = STATE(2937), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2937), + [anon_sym_RBRACE] = ACTIONS(6904), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_DASH] = ACTIONS(6906), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6908), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6906), + [anon_sym_COLON_QMARK] = ACTIONS(6906), + [anon_sym_COLON_DASH] = ACTIONS(6906), + [anon_sym_PERCENT] = ACTIONS(6906), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2342] = { + [sym__concat] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_RBRACK] = ACTIONS(5577), + [anon_sym_EQ_TILDE] = ACTIONS(5577), + [anon_sym_EQ_EQ] = ACTIONS(5577), + [anon_sym_EQ] = ACTIONS(5579), + [anon_sym_PLUS_EQ] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_BANG_EQ] = ACTIONS(5577), + [anon_sym_PLUS] = ACTIONS(5579), + [anon_sym_DASH] = ACTIONS(5579), + [anon_sym_DASH_EQ] = ACTIONS(5577), + [anon_sym_LT_EQ] = ACTIONS(5577), + [anon_sym_GT_EQ] = ACTIONS(5577), + [anon_sym_PLUS_PLUS] = ACTIONS(5577), + [anon_sym_DASH_DASH] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5577), + }, + [2343] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6904), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2344] = { + [sym_concatenation] = STATE(2938), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2938), + [anon_sym_RBRACE] = ACTIONS(6902), + [anon_sym_EQ] = ACTIONS(6910), + [anon_sym_DASH] = ACTIONS(6910), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6912), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6910), + [anon_sym_COLON_QMARK] = ACTIONS(6910), + [anon_sym_COLON_DASH] = ACTIONS(6910), + [anon_sym_PERCENT] = ACTIONS(6910), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2345] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6902), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2346] = { + [sym__concat] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_RBRACK] = ACTIONS(5622), + [anon_sym_EQ_TILDE] = ACTIONS(5622), + [anon_sym_EQ_EQ] = ACTIONS(5622), + [anon_sym_EQ] = ACTIONS(5624), + [anon_sym_PLUS_EQ] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5622), + [anon_sym_PLUS] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5624), + [anon_sym_DASH_EQ] = ACTIONS(5622), + [anon_sym_LT_EQ] = ACTIONS(5622), + [anon_sym_GT_EQ] = ACTIONS(5622), + [anon_sym_PLUS_PLUS] = ACTIONS(5622), + [anon_sym_DASH_DASH] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5622), + }, + [2347] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6914), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2348] = { + [sym__simple_heredoc_body] = ACTIONS(4334), + [sym__heredoc_body_beginning] = ACTIONS(4334), + [sym_file_descriptor] = ACTIONS(4334), + [sym_variable_name] = ACTIONS(4334), + [ts_builtin_sym_end] = ACTIONS(4334), + [anon_sym_SEMI] = ACTIONS(4336), + [anon_sym_PIPE] = ACTIONS(4336), + [anon_sym_RPAREN] = ACTIONS(4334), + [anon_sym_SEMI_SEMI] = ACTIONS(4334), + [anon_sym_PIPE_AMP] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4336), + [anon_sym_GT] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4334), + [anon_sym_AMP_GT] = ACTIONS(4336), + [anon_sym_AMP_GT_GT] = ACTIONS(4334), + [anon_sym_LT_AMP] = ACTIONS(4334), + [anon_sym_GT_AMP] = ACTIONS(4334), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_LT_LT_DASH] = ACTIONS(4334), + [anon_sym_LT_LT_LT] = ACTIONS(4334), + [sym__special_characters] = ACTIONS(4334), + [anon_sym_DQUOTE] = ACTIONS(4334), + [anon_sym_DOLLAR] = ACTIONS(4336), + [sym_raw_string] = ACTIONS(4334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4334), + [anon_sym_BQUOTE] = ACTIONS(4334), + [anon_sym_LT_LPAREN] = ACTIONS(4334), + [anon_sym_GT_LPAREN] = ACTIONS(4334), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4336), + [sym_word] = ACTIONS(4336), + [anon_sym_LF] = ACTIONS(4334), + [anon_sym_AMP] = ACTIONS(4336), + }, + [2349] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [sym_variable_name] = ACTIONS(5525), + [ts_builtin_sym_end] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_RPAREN] = ACTIONS(5525), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5527), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [2350] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [sym_variable_name] = ACTIONS(5533), + [ts_builtin_sym_end] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_RPAREN] = ACTIONS(5533), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5535), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [2351] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(6916), + [sym_comment] = ACTIONS(57), + }, + [2352] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(6918), + [sym_comment] = ACTIONS(57), + }, + [2353] = { + [anon_sym_RBRACE] = ACTIONS(6918), + [sym_comment] = ACTIONS(57), + }, + [2354] = { + [sym_concatenation] = STATE(2943), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2943), + [anon_sym_RBRACE] = ACTIONS(6920), + [anon_sym_EQ] = ACTIONS(6922), + [anon_sym_DASH] = ACTIONS(6922), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6922), + [anon_sym_COLON_QMARK] = ACTIONS(6922), + [anon_sym_COLON_DASH] = ACTIONS(6922), + [anon_sym_PERCENT] = ACTIONS(6922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2355] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [sym_variable_name] = ACTIONS(5577), + [ts_builtin_sym_end] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_RPAREN] = ACTIONS(5577), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5579), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [2356] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6920), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2357] = { + [sym_concatenation] = STATE(2944), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2944), + [anon_sym_RBRACE] = ACTIONS(6918), + [anon_sym_EQ] = ACTIONS(6926), + [anon_sym_DASH] = ACTIONS(6926), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6928), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6926), + [anon_sym_COLON_QMARK] = ACTIONS(6926), + [anon_sym_COLON_DASH] = ACTIONS(6926), + [anon_sym_PERCENT] = ACTIONS(6926), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2358] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6918), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2359] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [sym_variable_name] = ACTIONS(5622), + [ts_builtin_sym_end] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_RPAREN] = ACTIONS(5622), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5624), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [2360] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6930), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2361] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [ts_builtin_sym_end] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_RPAREN] = ACTIONS(5525), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5527), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [2362] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [ts_builtin_sym_end] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_RPAREN] = ACTIONS(5533), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5535), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [2363] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(6932), + [sym_comment] = ACTIONS(57), + }, + [2364] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(6934), + [sym_comment] = ACTIONS(57), + }, + [2365] = { + [anon_sym_RBRACE] = ACTIONS(6934), + [sym_comment] = ACTIONS(57), + }, + [2366] = { + [sym_concatenation] = STATE(2949), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2949), + [anon_sym_RBRACE] = ACTIONS(6936), + [anon_sym_EQ] = ACTIONS(6938), + [anon_sym_DASH] = ACTIONS(6938), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6938), + [anon_sym_COLON_QMARK] = ACTIONS(6938), + [anon_sym_COLON_DASH] = ACTIONS(6938), + [anon_sym_PERCENT] = ACTIONS(6938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2367] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [ts_builtin_sym_end] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_RPAREN] = ACTIONS(5577), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5579), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [2368] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6936), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2369] = { + [sym_concatenation] = STATE(2950), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2950), + [anon_sym_RBRACE] = ACTIONS(6934), + [anon_sym_EQ] = ACTIONS(6942), + [anon_sym_DASH] = ACTIONS(6942), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6942), + [anon_sym_COLON_QMARK] = ACTIONS(6942), + [anon_sym_COLON_DASH] = ACTIONS(6942), + [anon_sym_PERCENT] = ACTIONS(6942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2370] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6934), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2371] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [ts_builtin_sym_end] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_RPAREN] = ACTIONS(5622), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5624), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [2372] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6946), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2373] = { + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [sym_variable_name] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5525), + }, + [2374] = { + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [sym_variable_name] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5533), + }, + [2375] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(6948), + [sym_comment] = ACTIONS(57), + }, + [2376] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(6950), + [sym_comment] = ACTIONS(57), + }, + [2377] = { + [anon_sym_RBRACE] = ACTIONS(6950), + [sym_comment] = ACTIONS(57), + }, + [2378] = { + [sym_concatenation] = STATE(2955), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2955), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_EQ] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(6954), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6956), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6954), + [anon_sym_COLON_QMARK] = ACTIONS(6954), + [anon_sym_COLON_DASH] = ACTIONS(6954), + [anon_sym_PERCENT] = ACTIONS(6954), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2379] = { + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [sym_variable_name] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5577), + }, + [2380] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2381] = { + [sym_concatenation] = STATE(2956), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2956), + [anon_sym_RBRACE] = ACTIONS(6950), + [anon_sym_EQ] = ACTIONS(6958), + [anon_sym_DASH] = ACTIONS(6958), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6960), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6958), + [anon_sym_COLON_QMARK] = ACTIONS(6958), + [anon_sym_COLON_DASH] = ACTIONS(6958), + [anon_sym_PERCENT] = ACTIONS(6958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2382] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6950), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2383] = { + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [sym_variable_name] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5622), + }, + [2384] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6962), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2385] = { + [sym__concat] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5527), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym__string_content] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5527), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5527), + [anon_sym_BQUOTE] = ACTIONS(5527), + [sym_comment] = ACTIONS(343), + }, + [2386] = { + [sym__concat] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5535), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym__string_content] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5535), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5535), + [anon_sym_BQUOTE] = ACTIONS(5535), + [sym_comment] = ACTIONS(343), + }, + [2387] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(6964), + [sym_comment] = ACTIONS(57), + }, + [2388] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(6966), + [sym_comment] = ACTIONS(57), + }, + [2389] = { + [anon_sym_RBRACE] = ACTIONS(6966), + [sym_comment] = ACTIONS(57), + }, + [2390] = { + [sym_concatenation] = STATE(2961), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2961), + [anon_sym_RBRACE] = ACTIONS(6968), + [anon_sym_EQ] = ACTIONS(6970), + [anon_sym_DASH] = ACTIONS(6970), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6970), + [anon_sym_COLON_QMARK] = ACTIONS(6970), + [anon_sym_COLON_DASH] = ACTIONS(6970), + [anon_sym_PERCENT] = ACTIONS(6970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2391] = { + [sym__concat] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5579), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym__string_content] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5579), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5579), + [anon_sym_BQUOTE] = ACTIONS(5579), + [sym_comment] = ACTIONS(343), + }, + [2392] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6968), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2393] = { + [sym_concatenation] = STATE(2962), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2962), + [anon_sym_RBRACE] = ACTIONS(6966), + [anon_sym_EQ] = ACTIONS(6974), + [anon_sym_DASH] = ACTIONS(6974), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(6976), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6974), + [anon_sym_COLON_QMARK] = ACTIONS(6974), + [anon_sym_COLON_DASH] = ACTIONS(6974), + [anon_sym_PERCENT] = ACTIONS(6974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2394] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6966), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2395] = { + [sym__concat] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5624), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym__string_content] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5624), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5624), + [anon_sym_BQUOTE] = ACTIONS(5624), + [sym_comment] = ACTIONS(343), + }, + [2396] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6978), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2397] = { + [sym__concat] = ACTIONS(6980), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_EQ] = ACTIONS(6982), + [anon_sym_DASH] = ACTIONS(6982), + [sym__special_characters] = ACTIONS(6982), + [anon_sym_DQUOTE] = ACTIONS(4292), + [anon_sym_DOLLAR] = ACTIONS(6982), + [sym_raw_string] = ACTIONS(4292), + [anon_sym_POUND] = ACTIONS(4292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4292), + [anon_sym_SLASH] = ACTIONS(4292), + [anon_sym_COLON] = ACTIONS(6982), + [anon_sym_COLON_QMARK] = ACTIONS(6982), + [anon_sym_COLON_DASH] = ACTIONS(6982), + [anon_sym_PERCENT] = ACTIONS(6982), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4292), + [anon_sym_BQUOTE] = ACTIONS(4292), + [anon_sym_LT_LPAREN] = ACTIONS(4292), + [anon_sym_GT_LPAREN] = ACTIONS(4292), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(6982), + }, + [2398] = { + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_EQ] = ACTIONS(6982), + [anon_sym_DASH] = ACTIONS(6982), + [sym__special_characters] = ACTIONS(6982), + [anon_sym_DQUOTE] = ACTIONS(4292), + [anon_sym_DOLLAR] = ACTIONS(6982), + [sym_raw_string] = ACTIONS(4292), + [anon_sym_POUND] = ACTIONS(4292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4292), + [anon_sym_SLASH] = ACTIONS(4292), + [anon_sym_COLON] = ACTIONS(6982), + [anon_sym_COLON_QMARK] = ACTIONS(6982), + [anon_sym_COLON_DASH] = ACTIONS(6982), + [anon_sym_PERCENT] = ACTIONS(6982), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4292), + [anon_sym_BQUOTE] = ACTIONS(4292), + [anon_sym_LT_LPAREN] = ACTIONS(4292), + [anon_sym_GT_LPAREN] = ACTIONS(4292), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(6982), + }, + [2399] = { + [sym__concat] = ACTIONS(6984), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_EQ] = ACTIONS(6986), + [anon_sym_DASH] = ACTIONS(6986), + [sym__special_characters] = ACTIONS(6986), + [anon_sym_DQUOTE] = ACTIONS(4296), + [anon_sym_DOLLAR] = ACTIONS(6986), + [sym_raw_string] = ACTIONS(4296), + [anon_sym_POUND] = ACTIONS(4296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4296), + [anon_sym_SLASH] = ACTIONS(4296), + [anon_sym_COLON] = ACTIONS(6986), + [anon_sym_COLON_QMARK] = ACTIONS(6986), + [anon_sym_COLON_DASH] = ACTIONS(6986), + [anon_sym_PERCENT] = ACTIONS(6986), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4296), + [anon_sym_BQUOTE] = ACTIONS(4296), + [anon_sym_LT_LPAREN] = ACTIONS(4296), + [anon_sym_GT_LPAREN] = ACTIONS(4296), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(6986), + }, + [2400] = { + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_EQ] = ACTIONS(6986), + [anon_sym_DASH] = ACTIONS(6986), + [sym__special_characters] = ACTIONS(6986), + [anon_sym_DQUOTE] = ACTIONS(4296), + [anon_sym_DOLLAR] = ACTIONS(6986), + [sym_raw_string] = ACTIONS(4296), + [anon_sym_POUND] = ACTIONS(4296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4296), + [anon_sym_SLASH] = ACTIONS(4296), + [anon_sym_COLON] = ACTIONS(6986), + [anon_sym_COLON_QMARK] = ACTIONS(6986), + [anon_sym_COLON_DASH] = ACTIONS(6986), + [anon_sym_PERCENT] = ACTIONS(6986), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4296), + [anon_sym_BQUOTE] = ACTIONS(4296), + [anon_sym_LT_LPAREN] = ACTIONS(4296), + [anon_sym_GT_LPAREN] = ACTIONS(4296), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(6986), + }, + [2401] = { + [sym__concat] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + }, + [2402] = { + [aux_sym_concatenation_repeat1] = STATE(2402), + [sym__concat] = ACTIONS(6988), + [anon_sym_RBRACE] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + }, + [2403] = { + [sym__concat] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + }, + [2404] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(6991), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [2405] = { + [sym_concatenation] = STATE(2970), + [sym_string] = STATE(2969), + [sym_simple_expansion] = STATE(2969), + [sym_string_expansion] = STATE(2969), + [sym_expansion] = STATE(2969), + [sym_command_substitution] = STATE(2969), + [sym_process_substitution] = STATE(2969), + [anon_sym_RBRACE] = ACTIONS(6993), + [sym__special_characters] = ACTIONS(6995), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(6997), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6997), + }, + [2406] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(6999), + [sym_comment] = ACTIONS(57), + }, + [2407] = { + [sym_concatenation] = STATE(2974), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2974), + [anon_sym_RBRACE] = ACTIONS(7001), + [anon_sym_EQ] = ACTIONS(7003), + [anon_sym_DASH] = ACTIONS(7003), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7005), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7007), + [anon_sym_COLON] = ACTIONS(7003), + [anon_sym_COLON_QMARK] = ACTIONS(7003), + [anon_sym_COLON_DASH] = ACTIONS(7003), + [anon_sym_PERCENT] = ACTIONS(7003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2408] = { + [sym_concatenation] = STATE(2976), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2976), + [anon_sym_RBRACE] = ACTIONS(6993), + [anon_sym_EQ] = ACTIONS(7009), + [anon_sym_DASH] = ACTIONS(7009), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7011), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7013), + [anon_sym_COLON] = ACTIONS(7009), + [anon_sym_COLON_QMARK] = ACTIONS(7009), + [anon_sym_COLON_DASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7009), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2409] = { + [sym__concat] = ACTIONS(2392), + [anon_sym_RBRACE] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + }, + [2410] = { + [sym_concatenation] = STATE(2979), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2979), + [sym_regex] = ACTIONS(7015), + [anon_sym_RBRACE] = ACTIONS(7017), + [anon_sym_EQ] = ACTIONS(7019), + [anon_sym_DASH] = ACTIONS(7019), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7021), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7019), + [anon_sym_COLON_QMARK] = ACTIONS(7019), + [anon_sym_COLON_DASH] = ACTIONS(7019), + [anon_sym_PERCENT] = ACTIONS(7019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2411] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7017), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2412] = { + [sym__concat] = ACTIONS(2440), + [anon_sym_RBRACE] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + }, + [2413] = { + [sym_concatenation] = STATE(2976), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2976), + [sym_regex] = ACTIONS(7023), + [anon_sym_RBRACE] = ACTIONS(6993), + [anon_sym_EQ] = ACTIONS(7009), + [anon_sym_DASH] = ACTIONS(7009), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7011), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7009), + [anon_sym_COLON_QMARK] = ACTIONS(7009), + [anon_sym_COLON_DASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7009), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2414] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(6993), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2415] = { + [sym__concat] = ACTIONS(2446), + [anon_sym_RBRACE] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + }, + [2416] = { + [sym__concat] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + }, + [2417] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [ts_builtin_sym_end] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_RPAREN] = ACTIONS(7025), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_EQ_TILDE] = ACTIONS(7027), + [anon_sym_EQ_EQ] = ACTIONS(7027), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [2418] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [ts_builtin_sym_end] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_RPAREN] = ACTIONS(7029), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_EQ_TILDE] = ACTIONS(7031), + [anon_sym_EQ_EQ] = ACTIONS(7031), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [2419] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [ts_builtin_sym_end] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_RPAREN] = ACTIONS(7033), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_EQ_TILDE] = ACTIONS(7035), + [anon_sym_EQ_EQ] = ACTIONS(7035), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [2420] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7037), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2421] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2422] = { + [sym__concat] = ACTIONS(4001), + [anon_sym_RBRACE] = ACTIONS(4001), + [anon_sym_EQ] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [sym__special_characters] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_POUND] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_COLON] = ACTIONS(4003), + [anon_sym_COLON_QMARK] = ACTIONS(4003), + [anon_sym_COLON_DASH] = ACTIONS(4003), + [anon_sym_PERCENT] = ACTIONS(4003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(4003), + }, + [2423] = { + [sym__concat] = ACTIONS(4015), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_EQ] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [sym__special_characters] = ACTIONS(4017), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_POUND] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_COLON] = ACTIONS(4017), + [anon_sym_COLON_QMARK] = ACTIONS(4017), + [anon_sym_COLON_DASH] = ACTIONS(4017), + [anon_sym_PERCENT] = ACTIONS(4017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(4017), + }, + [2424] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7041), + [sym_comment] = ACTIONS(57), + }, + [2425] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7043), + [sym_comment] = ACTIONS(57), + }, + [2426] = { + [anon_sym_RBRACE] = ACTIONS(7043), + [sym_comment] = ACTIONS(57), + }, + [2427] = { + [sym_concatenation] = STATE(2987), + [sym_string] = STATE(2986), + [sym_simple_expansion] = STATE(2986), + [sym_string_expansion] = STATE(2986), + [sym_expansion] = STATE(2986), + [sym_command_substitution] = STATE(2986), + [sym_process_substitution] = STATE(2986), + [anon_sym_RBRACE] = ACTIONS(7043), + [sym__special_characters] = ACTIONS(7045), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(7047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7047), + }, + [2428] = { + [sym__concat] = ACTIONS(4051), + [anon_sym_RBRACE] = ACTIONS(4051), + [anon_sym_EQ] = ACTIONS(4053), + [anon_sym_DASH] = ACTIONS(4053), + [sym__special_characters] = ACTIONS(4053), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_POUND] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_COLON] = ACTIONS(4053), + [anon_sym_COLON_QMARK] = ACTIONS(4053), + [anon_sym_COLON_DASH] = ACTIONS(4053), + [anon_sym_PERCENT] = ACTIONS(4053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(4053), + }, + [2429] = { + [sym_concatenation] = STATE(2990), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2990), + [sym_regex] = ACTIONS(7049), + [anon_sym_RBRACE] = ACTIONS(7051), + [anon_sym_EQ] = ACTIONS(7053), + [anon_sym_DASH] = ACTIONS(7053), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7053), + [anon_sym_COLON_QMARK] = ACTIONS(7053), + [anon_sym_COLON_DASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2430] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7051), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2431] = { + [sym_concatenation] = STATE(2992), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2992), + [sym_regex] = ACTIONS(7057), + [anon_sym_RBRACE] = ACTIONS(7043), + [anon_sym_EQ] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7059), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7059), + [anon_sym_COLON_QMARK] = ACTIONS(7059), + [anon_sym_COLON_DASH] = ACTIONS(7059), + [anon_sym_PERCENT] = ACTIONS(7059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2432] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7043), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2433] = { + [sym_concatenation] = STATE(2994), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2994), + [anon_sym_RBRACE] = ACTIONS(7063), + [anon_sym_EQ] = ACTIONS(7065), + [anon_sym_DASH] = ACTIONS(7065), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7065), + [anon_sym_COLON_QMARK] = ACTIONS(7065), + [anon_sym_COLON_DASH] = ACTIONS(7065), + [anon_sym_PERCENT] = ACTIONS(7065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2434] = { + [sym__concat] = ACTIONS(4107), + [anon_sym_RBRACE] = ACTIONS(4107), + [anon_sym_EQ] = ACTIONS(4109), + [anon_sym_DASH] = ACTIONS(4109), + [sym__special_characters] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_POUND] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [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(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(4109), + }, + [2435] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7063), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2436] = { + [sym_concatenation] = STATE(2992), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(2992), + [anon_sym_RBRACE] = ACTIONS(7043), + [anon_sym_EQ] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7059), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7059), + [anon_sym_COLON_QMARK] = ACTIONS(7059), + [anon_sym_COLON_DASH] = ACTIONS(7059), + [anon_sym_PERCENT] = ACTIONS(7059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2437] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [ts_builtin_sym_end] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_RPAREN] = ACTIONS(7069), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_EQ_TILDE] = ACTIONS(7071), + [anon_sym_EQ_EQ] = ACTIONS(7071), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [2438] = { + [aux_sym_concatenation_repeat1] = STATE(2438), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(4364), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [2439] = { + [aux_sym_concatenation_repeat1] = STATE(2439), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [2440] = { + [sym__heredoc_body_middle] = ACTIONS(4015), + [sym__heredoc_body_end] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + }, + [2441] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7073), + [sym_comment] = ACTIONS(57), + }, + [2442] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7075), + [sym_comment] = ACTIONS(57), + }, + [2443] = { + [anon_sym_RBRACE] = ACTIONS(7075), + [sym_comment] = ACTIONS(57), + }, + [2444] = { + [sym_concatenation] = STATE(2999), + [sym_string] = STATE(2998), + [sym_simple_expansion] = STATE(2998), + [sym_string_expansion] = STATE(2998), + [sym_expansion] = STATE(2998), + [sym_command_substitution] = STATE(2998), + [sym_process_substitution] = STATE(2998), + [anon_sym_RBRACE] = ACTIONS(7075), + [sym__special_characters] = ACTIONS(7077), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(7079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7079), + }, + [2445] = { + [sym__heredoc_body_middle] = ACTIONS(4051), + [sym__heredoc_body_end] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + }, + [2446] = { + [sym_concatenation] = STATE(3002), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3002), + [sym_regex] = ACTIONS(7081), + [anon_sym_RBRACE] = ACTIONS(7083), + [anon_sym_EQ] = ACTIONS(7085), + [anon_sym_DASH] = ACTIONS(7085), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7087), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_COLON_QMARK] = ACTIONS(7085), + [anon_sym_COLON_DASH] = ACTIONS(7085), + [anon_sym_PERCENT] = ACTIONS(7085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2447] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7083), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2448] = { + [sym_concatenation] = STATE(3004), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3004), + [sym_regex] = ACTIONS(7089), + [anon_sym_RBRACE] = ACTIONS(7075), + [anon_sym_EQ] = ACTIONS(7091), + [anon_sym_DASH] = ACTIONS(7091), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7093), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7091), + [anon_sym_COLON_QMARK] = ACTIONS(7091), + [anon_sym_COLON_DASH] = ACTIONS(7091), + [anon_sym_PERCENT] = ACTIONS(7091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2449] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7075), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2450] = { + [sym_concatenation] = STATE(3006), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3006), + [anon_sym_RBRACE] = ACTIONS(7095), + [anon_sym_EQ] = ACTIONS(7097), + [anon_sym_DASH] = ACTIONS(7097), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7097), + [anon_sym_COLON_QMARK] = ACTIONS(7097), + [anon_sym_COLON_DASH] = ACTIONS(7097), + [anon_sym_PERCENT] = ACTIONS(7097), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2451] = { + [sym__heredoc_body_middle] = ACTIONS(4107), + [sym__heredoc_body_end] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + }, + [2452] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7095), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2453] = { + [sym_concatenation] = STATE(3004), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3004), + [anon_sym_RBRACE] = ACTIONS(7075), + [anon_sym_EQ] = ACTIONS(7091), + [anon_sym_DASH] = ACTIONS(7091), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7093), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7091), + [anon_sym_COLON_QMARK] = ACTIONS(7091), + [anon_sym_COLON_DASH] = ACTIONS(7091), + [anon_sym_PERCENT] = ACTIONS(7091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2454] = { + [aux_sym_concatenation_repeat1] = STATE(2456), + [sym__simple_heredoc_body] = ACTIONS(1353), + [sym__heredoc_body_beginning] = ACTIONS(1353), + [sym_file_descriptor] = ACTIONS(1353), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_SEMI_SEMI] = ACTIONS(1353), + [anon_sym_PIPE_AMP] = ACTIONS(1353), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_GT] = ACTIONS(1355), + [anon_sym_GT_GT] = ACTIONS(1353), + [anon_sym_AMP_GT] = ACTIONS(1355), + [anon_sym_AMP_GT_GT] = ACTIONS(1353), + [anon_sym_LT_AMP] = ACTIONS(1353), + [anon_sym_GT_AMP] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(1355), + [anon_sym_LT_LT_DASH] = ACTIONS(1353), + [anon_sym_LT_LT_LT] = ACTIONS(1353), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1355), + }, + [2455] = { + [aux_sym_concatenation_repeat1] = STATE(2456), + [sym__simple_heredoc_body] = ACTIONS(1357), + [sym__heredoc_body_beginning] = ACTIONS(1357), + [sym_file_descriptor] = ACTIONS(1357), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_SEMI_SEMI] = ACTIONS(1357), + [anon_sym_PIPE_AMP] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1357), + [anon_sym_AMP_GT] = ACTIONS(1359), + [anon_sym_AMP_GT_GT] = ACTIONS(1357), + [anon_sym_LT_AMP] = ACTIONS(1357), + [anon_sym_GT_AMP] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_LT_LT_DASH] = ACTIONS(1357), + [anon_sym_LT_LT_LT] = ACTIONS(1357), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), + }, + [2456] = { + [aux_sym_concatenation_repeat1] = STATE(3007), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [2457] = { + [sym__concat] = ACTIONS(4001), + [anon_sym_RPAREN] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4001), + }, + [2458] = { + [sym__concat] = ACTIONS(4015), + [anon_sym_RPAREN] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4015), + }, + [2459] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7101), + [sym_comment] = ACTIONS(57), + }, + [2460] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7103), + [sym_comment] = ACTIONS(57), + }, + [2461] = { + [anon_sym_RBRACE] = ACTIONS(7103), + [sym_comment] = ACTIONS(57), + }, + [2462] = { + [sym_concatenation] = STATE(3012), + [sym_string] = STATE(3011), + [sym_simple_expansion] = STATE(3011), + [sym_string_expansion] = STATE(3011), + [sym_expansion] = STATE(3011), + [sym_command_substitution] = STATE(3011), + [sym_process_substitution] = STATE(3011), + [anon_sym_RBRACE] = ACTIONS(7103), + [sym__special_characters] = ACTIONS(7105), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(7107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7107), + }, + [2463] = { + [sym__concat] = ACTIONS(4051), + [anon_sym_RPAREN] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4051), + }, + [2464] = { + [sym_concatenation] = STATE(3015), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3015), + [sym_regex] = ACTIONS(7109), + [anon_sym_RBRACE] = ACTIONS(7111), + [anon_sym_EQ] = ACTIONS(7113), + [anon_sym_DASH] = ACTIONS(7113), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7113), + [anon_sym_COLON_QMARK] = ACTIONS(7113), + [anon_sym_COLON_DASH] = ACTIONS(7113), + [anon_sym_PERCENT] = ACTIONS(7113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2465] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7111), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2466] = { + [sym_concatenation] = STATE(3017), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3017), + [sym_regex] = ACTIONS(7117), + [anon_sym_RBRACE] = ACTIONS(7103), + [anon_sym_EQ] = ACTIONS(7119), + [anon_sym_DASH] = ACTIONS(7119), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7119), + [anon_sym_COLON_QMARK] = ACTIONS(7119), + [anon_sym_COLON_DASH] = ACTIONS(7119), + [anon_sym_PERCENT] = ACTIONS(7119), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2467] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7103), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2468] = { + [sym_concatenation] = STATE(3019), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3019), + [anon_sym_RBRACE] = ACTIONS(7123), + [anon_sym_EQ] = ACTIONS(7125), + [anon_sym_DASH] = ACTIONS(7125), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7127), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7125), + [anon_sym_COLON_QMARK] = ACTIONS(7125), + [anon_sym_COLON_DASH] = ACTIONS(7125), + [anon_sym_PERCENT] = ACTIONS(7125), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2469] = { + [sym__concat] = ACTIONS(4107), + [anon_sym_RPAREN] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4107), + }, + [2470] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7123), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2471] = { + [sym_concatenation] = STATE(3017), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3017), + [anon_sym_RBRACE] = ACTIONS(7103), + [anon_sym_EQ] = ACTIONS(7119), + [anon_sym_DASH] = ACTIONS(7119), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7119), + [anon_sym_COLON_QMARK] = ACTIONS(7119), + [anon_sym_COLON_DASH] = ACTIONS(7119), + [anon_sym_PERCENT] = ACTIONS(7119), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2472] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [sym_variable_name] = ACTIONS(5525), + [ts_builtin_sym_end] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_RPAREN] = ACTIONS(5525), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [2473] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [sym_variable_name] = ACTIONS(5533), + [ts_builtin_sym_end] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_RPAREN] = ACTIONS(5533), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [2474] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7129), + [sym_comment] = ACTIONS(57), + }, + [2475] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7131), + [sym_comment] = ACTIONS(57), + }, + [2476] = { + [anon_sym_RBRACE] = ACTIONS(7131), + [sym_comment] = ACTIONS(57), + }, + [2477] = { + [sym_concatenation] = STATE(3023), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3023), + [anon_sym_RBRACE] = ACTIONS(7133), + [anon_sym_EQ] = ACTIONS(7135), + [anon_sym_DASH] = ACTIONS(7135), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7137), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7135), + [anon_sym_COLON_QMARK] = ACTIONS(7135), + [anon_sym_COLON_DASH] = ACTIONS(7135), + [anon_sym_PERCENT] = ACTIONS(7135), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2478] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [sym_variable_name] = ACTIONS(5577), + [ts_builtin_sym_end] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_RPAREN] = ACTIONS(5577), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [2479] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7133), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2480] = { + [sym_concatenation] = STATE(3024), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3024), + [anon_sym_RBRACE] = ACTIONS(7131), + [anon_sym_EQ] = ACTIONS(7139), + [anon_sym_DASH] = ACTIONS(7139), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7141), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7139), + [anon_sym_COLON_QMARK] = ACTIONS(7139), + [anon_sym_COLON_DASH] = ACTIONS(7139), + [anon_sym_PERCENT] = ACTIONS(7139), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2481] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7131), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2482] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [sym_variable_name] = ACTIONS(5622), + [ts_builtin_sym_end] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_RPAREN] = ACTIONS(5622), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [2483] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7143), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2484] = { + [sym__simple_heredoc_body] = ACTIONS(7145), + [sym__heredoc_body_beginning] = ACTIONS(7145), + [sym_file_descriptor] = ACTIONS(7145), + [ts_builtin_sym_end] = ACTIONS(7145), + [anon_sym_SEMI] = ACTIONS(7147), + [anon_sym_done] = ACTIONS(7145), + [anon_sym_fi] = ACTIONS(7145), + [anon_sym_elif] = ACTIONS(7145), + [anon_sym_else] = ACTIONS(7145), + [anon_sym_esac] = ACTIONS(7145), + [anon_sym_PIPE] = ACTIONS(7147), + [anon_sym_RPAREN] = ACTIONS(7145), + [anon_sym_SEMI_SEMI] = ACTIONS(7145), + [anon_sym_PIPE_AMP] = ACTIONS(7145), + [anon_sym_AMP_AMP] = ACTIONS(7145), + [anon_sym_PIPE_PIPE] = ACTIONS(7145), + [anon_sym_LT] = ACTIONS(7147), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_GT_GT] = ACTIONS(7145), + [anon_sym_AMP_GT] = ACTIONS(7147), + [anon_sym_AMP_GT_GT] = ACTIONS(7145), + [anon_sym_LT_AMP] = ACTIONS(7145), + [anon_sym_GT_AMP] = ACTIONS(7145), + [anon_sym_LT_LT] = ACTIONS(7147), + [anon_sym_LT_LT_DASH] = ACTIONS(7145), + [anon_sym_LT_LT_LT] = ACTIONS(7145), + [anon_sym_BQUOTE] = ACTIONS(7145), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(7145), + [anon_sym_AMP] = ACTIONS(7147), + }, + [2485] = { + [sym_do_group] = STATE(3026), + [sym_compound_statement] = STATE(3026), + [anon_sym_do] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), + }, + [2486] = { + [sym_do_group] = STATE(3026), + [sym_compound_statement] = STATE(3026), + [anon_sym_SEMI] = ACTIONS(7149), + [anon_sym_do] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), + }, + [2487] = { + [sym__concat] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_EQ_TILDE] = ACTIONS(5525), + [anon_sym_EQ_EQ] = ACTIONS(5525), + [anon_sym_EQ] = ACTIONS(5527), + [anon_sym_PLUS_EQ] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_BANG_EQ] = ACTIONS(5525), + [anon_sym_PLUS] = ACTIONS(5527), + [anon_sym_DASH] = ACTIONS(5527), + [anon_sym_DASH_EQ] = ACTIONS(5525), + [anon_sym_LT_EQ] = ACTIONS(5525), + [anon_sym_GT_EQ] = ACTIONS(5525), + [anon_sym_PLUS_PLUS] = ACTIONS(5525), + [anon_sym_DASH_DASH] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5525), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [2488] = { + [sym__concat] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_EQ_TILDE] = ACTIONS(5533), + [anon_sym_EQ_EQ] = ACTIONS(5533), + [anon_sym_EQ] = ACTIONS(5535), + [anon_sym_PLUS_EQ] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_BANG_EQ] = ACTIONS(5533), + [anon_sym_PLUS] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(5535), + [anon_sym_DASH_EQ] = ACTIONS(5533), + [anon_sym_LT_EQ] = ACTIONS(5533), + [anon_sym_GT_EQ] = ACTIONS(5533), + [anon_sym_PLUS_PLUS] = ACTIONS(5533), + [anon_sym_DASH_DASH] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5533), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [2489] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7151), + [sym_comment] = ACTIONS(57), + }, + [2490] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7153), + [sym_comment] = ACTIONS(57), + }, + [2491] = { + [anon_sym_RBRACE] = ACTIONS(7153), + [sym_comment] = ACTIONS(57), + }, + [2492] = { + [sym_concatenation] = STATE(3031), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3031), + [anon_sym_RBRACE] = ACTIONS(7155), + [anon_sym_EQ] = ACTIONS(7157), + [anon_sym_DASH] = ACTIONS(7157), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7157), + [anon_sym_COLON_QMARK] = ACTIONS(7157), + [anon_sym_COLON_DASH] = ACTIONS(7157), + [anon_sym_PERCENT] = ACTIONS(7157), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2493] = { + [sym__concat] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_EQ_TILDE] = ACTIONS(5577), + [anon_sym_EQ_EQ] = ACTIONS(5577), + [anon_sym_EQ] = ACTIONS(5579), + [anon_sym_PLUS_EQ] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_BANG_EQ] = ACTIONS(5577), + [anon_sym_PLUS] = ACTIONS(5579), + [anon_sym_DASH] = ACTIONS(5579), + [anon_sym_DASH_EQ] = ACTIONS(5577), + [anon_sym_LT_EQ] = ACTIONS(5577), + [anon_sym_GT_EQ] = ACTIONS(5577), + [anon_sym_PLUS_PLUS] = ACTIONS(5577), + [anon_sym_DASH_DASH] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5577), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [2494] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7155), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2495] = { + [sym_concatenation] = STATE(3032), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3032), + [anon_sym_RBRACE] = ACTIONS(7153), + [anon_sym_EQ] = ACTIONS(7161), + [anon_sym_DASH] = ACTIONS(7161), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7163), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7161), + [anon_sym_COLON_QMARK] = ACTIONS(7161), + [anon_sym_COLON_DASH] = ACTIONS(7161), + [anon_sym_PERCENT] = ACTIONS(7161), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2496] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7153), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2497] = { + [sym__concat] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_EQ_TILDE] = ACTIONS(5622), + [anon_sym_EQ_EQ] = ACTIONS(5622), + [anon_sym_EQ] = ACTIONS(5624), + [anon_sym_PLUS_EQ] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5622), + [anon_sym_PLUS] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5624), + [anon_sym_DASH_EQ] = ACTIONS(5622), + [anon_sym_LT_EQ] = ACTIONS(5622), + [anon_sym_GT_EQ] = ACTIONS(5622), + [anon_sym_PLUS_PLUS] = ACTIONS(5622), + [anon_sym_DASH_DASH] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5622), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [2498] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7165), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2499] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(7167), + [anon_sym_AMP_AMP] = ACTIONS(553), + [anon_sym_PIPE_PIPE] = ACTIONS(553), + [anon_sym_EQ_TILDE] = ACTIONS(555), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_PLUS_EQ] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_DASH_EQ] = ACTIONS(553), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(553), + }, + [2500] = { + [sym__concat] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4001), + }, + [2501] = { + [sym__concat] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4015), + }, + [2502] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7169), + [sym_comment] = ACTIONS(57), + }, + [2503] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7171), + [sym_comment] = ACTIONS(57), + }, + [2504] = { + [anon_sym_RBRACE] = ACTIONS(7171), + [sym_comment] = ACTIONS(57), + }, + [2505] = { + [sym_concatenation] = STATE(3039), + [sym_string] = STATE(3038), + [sym_simple_expansion] = STATE(3038), + [sym_string_expansion] = STATE(3038), + [sym_expansion] = STATE(3038), + [sym_command_substitution] = STATE(3038), + [sym_process_substitution] = STATE(3038), + [anon_sym_RBRACE] = ACTIONS(7171), + [sym__special_characters] = ACTIONS(7173), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(7175), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7175), + }, + [2506] = { + [sym__concat] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4051), + }, + [2507] = { + [sym_concatenation] = STATE(3042), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3042), + [sym_regex] = ACTIONS(7177), + [anon_sym_RBRACE] = ACTIONS(7179), + [anon_sym_EQ] = ACTIONS(7181), + [anon_sym_DASH] = ACTIONS(7181), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7181), + [anon_sym_COLON_QMARK] = ACTIONS(7181), + [anon_sym_COLON_DASH] = ACTIONS(7181), + [anon_sym_PERCENT] = ACTIONS(7181), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2508] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7179), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2509] = { + [sym_concatenation] = STATE(3044), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3044), + [sym_regex] = ACTIONS(7185), + [anon_sym_RBRACE] = ACTIONS(7171), + [anon_sym_EQ] = ACTIONS(7187), + [anon_sym_DASH] = ACTIONS(7187), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7189), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7187), + [anon_sym_COLON_QMARK] = ACTIONS(7187), + [anon_sym_COLON_DASH] = ACTIONS(7187), + [anon_sym_PERCENT] = ACTIONS(7187), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2510] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7171), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2511] = { + [sym_concatenation] = STATE(3046), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3046), + [anon_sym_RBRACE] = ACTIONS(7191), + [anon_sym_EQ] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7193), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7195), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7193), + [anon_sym_COLON_QMARK] = ACTIONS(7193), + [anon_sym_COLON_DASH] = ACTIONS(7193), + [anon_sym_PERCENT] = ACTIONS(7193), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2512] = { + [sym__concat] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4107), + }, + [2513] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7191), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2514] = { + [sym_concatenation] = STATE(3044), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3044), + [anon_sym_RBRACE] = ACTIONS(7171), + [anon_sym_EQ] = ACTIONS(7187), + [anon_sym_DASH] = ACTIONS(7187), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7189), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7187), + [anon_sym_COLON_QMARK] = ACTIONS(7187), + [anon_sym_COLON_DASH] = ACTIONS(7187), + [anon_sym_PERCENT] = ACTIONS(7187), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2515] = { + [sym__concat] = ACTIONS(5525), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_RPAREN] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_EQ_TILDE] = ACTIONS(5525), + [anon_sym_EQ_EQ] = ACTIONS(5525), + [anon_sym_EQ] = ACTIONS(5527), + [anon_sym_PLUS_EQ] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_BANG_EQ] = ACTIONS(5525), + [anon_sym_PLUS] = ACTIONS(5527), + [anon_sym_DASH] = ACTIONS(5527), + [anon_sym_DASH_EQ] = ACTIONS(5525), + [anon_sym_LT_EQ] = ACTIONS(5525), + [anon_sym_GT_EQ] = ACTIONS(5525), + [anon_sym_PLUS_PLUS] = ACTIONS(5525), + [anon_sym_DASH_DASH] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5525), + }, + [2516] = { + [sym__concat] = ACTIONS(5533), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_RPAREN] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_EQ_TILDE] = ACTIONS(5533), + [anon_sym_EQ_EQ] = ACTIONS(5533), + [anon_sym_EQ] = ACTIONS(5535), + [anon_sym_PLUS_EQ] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_BANG_EQ] = ACTIONS(5533), + [anon_sym_PLUS] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(5535), + [anon_sym_DASH_EQ] = ACTIONS(5533), + [anon_sym_LT_EQ] = ACTIONS(5533), + [anon_sym_GT_EQ] = ACTIONS(5533), + [anon_sym_PLUS_PLUS] = ACTIONS(5533), + [anon_sym_DASH_DASH] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5533), + }, + [2517] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7197), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(6108), }, [2518] = { - [sym__simple_heredoc_body] = ACTIONS(2984), - [sym__heredoc_body_beginning] = ACTIONS(2984), - [sym_file_descriptor] = ACTIONS(2984), - [sym__concat] = ACTIONS(2984), - [anon_sym_SEMI] = ACTIONS(2986), - [anon_sym_esac] = ACTIONS(2986), - [anon_sym_PIPE] = ACTIONS(2986), - [anon_sym_SEMI_SEMI] = ACTIONS(2984), - [anon_sym_PIPE_AMP] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_EQ_TILDE] = ACTIONS(2986), - [anon_sym_EQ_EQ] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_GT] = ACTIONS(2986), - [anon_sym_GT_GT] = ACTIONS(2984), - [anon_sym_AMP_GT] = ACTIONS(2986), - [anon_sym_AMP_GT_GT] = ACTIONS(2984), - [anon_sym_LT_AMP] = ACTIONS(2984), - [anon_sym_GT_AMP] = ACTIONS(2984), - [anon_sym_LT_LT] = ACTIONS(2986), - [anon_sym_LT_LT_DASH] = ACTIONS(2984), - [anon_sym_LT_LT_LT] = ACTIONS(2984), - [sym__special_characters] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [sym_raw_string] = ACTIONS(2984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2984), - [anon_sym_BQUOTE] = ACTIONS(2984), - [anon_sym_LT_LPAREN] = ACTIONS(2984), - [anon_sym_GT_LPAREN] = ACTIONS(2984), + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7199), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), }, [2519] = { - [sym_concatenation] = STATE(2666), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2666), - [sym_regex] = ACTIONS(6110), - [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_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), + [anon_sym_RBRACE] = ACTIONS(7199), + [sym_comment] = ACTIONS(57), }, [2520] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6112), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(3050), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3050), + [anon_sym_RBRACE] = ACTIONS(7201), + [anon_sym_EQ] = ACTIONS(7203), + [anon_sym_DASH] = ACTIONS(7203), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7205), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7203), + [anon_sym_COLON_QMARK] = ACTIONS(7203), + [anon_sym_COLON_DASH] = ACTIONS(7203), + [anon_sym_PERCENT] = ACTIONS(7203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2521] = { - [sym_concatenation] = STATE(2668), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2668), - [sym_regex] = ACTIONS(6118), - [anon_sym_RBRACE] = ACTIONS(6104), - [anon_sym_EQ] = ACTIONS(6120), - [anon_sym_DASH] = ACTIONS(6120), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6122), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6120), - [anon_sym_COLON_QMARK] = ACTIONS(6120), - [anon_sym_COLON_DASH] = ACTIONS(6120), - [anon_sym_PERCENT] = ACTIONS(6120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__concat] = ACTIONS(5577), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_RPAREN] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_EQ_TILDE] = ACTIONS(5577), + [anon_sym_EQ_EQ] = ACTIONS(5577), + [anon_sym_EQ] = ACTIONS(5579), + [anon_sym_PLUS_EQ] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_BANG_EQ] = ACTIONS(5577), + [anon_sym_PLUS] = ACTIONS(5579), + [anon_sym_DASH] = ACTIONS(5579), + [anon_sym_DASH_EQ] = ACTIONS(5577), + [anon_sym_LT_EQ] = ACTIONS(5577), + [anon_sym_GT_EQ] = ACTIONS(5577), + [anon_sym_PLUS_PLUS] = ACTIONS(5577), + [anon_sym_DASH_DASH] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5577), }, [2522] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6104), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7201), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2523] = { - [sym_concatenation] = STATE(2670), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2670), - [anon_sym_RBRACE] = ACTIONS(6124), - [anon_sym_EQ] = ACTIONS(6126), - [anon_sym_DASH] = ACTIONS(6126), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6128), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6126), - [anon_sym_COLON_QMARK] = ACTIONS(6126), - [anon_sym_COLON_DASH] = ACTIONS(6126), - [anon_sym_PERCENT] = ACTIONS(6126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(3051), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3051), + [anon_sym_RBRACE] = ACTIONS(7199), + [anon_sym_EQ] = ACTIONS(7207), + [anon_sym_DASH] = ACTIONS(7207), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7209), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7207), + [anon_sym_COLON_QMARK] = ACTIONS(7207), + [anon_sym_COLON_DASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2524] = { - [sym__simple_heredoc_body] = ACTIONS(3040), - [sym__heredoc_body_beginning] = ACTIONS(3040), - [sym_file_descriptor] = ACTIONS(3040), - [sym__concat] = ACTIONS(3040), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_esac] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_SEMI_SEMI] = ACTIONS(3040), - [anon_sym_PIPE_AMP] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_EQ_TILDE] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_GT_GT] = ACTIONS(3040), - [anon_sym_AMP_GT] = ACTIONS(3042), - [anon_sym_AMP_GT_GT] = ACTIONS(3040), - [anon_sym_LT_AMP] = ACTIONS(3040), - [anon_sym_GT_AMP] = ACTIONS(3040), - [anon_sym_LT_LT] = ACTIONS(3042), - [anon_sym_LT_LT_DASH] = ACTIONS(3040), - [anon_sym_LT_LT_LT] = ACTIONS(3040), - [sym__special_characters] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [sym_raw_string] = ACTIONS(3040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), - [anon_sym_BQUOTE] = ACTIONS(3040), - [anon_sym_LT_LPAREN] = ACTIONS(3040), - [anon_sym_GT_LPAREN] = ACTIONS(3040), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3042), - [anon_sym_LF] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7199), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2525] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6124), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__concat] = ACTIONS(5622), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_RPAREN] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_EQ_TILDE] = ACTIONS(5622), + [anon_sym_EQ_EQ] = ACTIONS(5622), + [anon_sym_EQ] = ACTIONS(5624), + [anon_sym_PLUS_EQ] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5622), + [anon_sym_PLUS] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5624), + [anon_sym_DASH_EQ] = ACTIONS(5622), + [anon_sym_LT_EQ] = ACTIONS(5622), + [anon_sym_GT_EQ] = ACTIONS(5622), + [anon_sym_PLUS_PLUS] = ACTIONS(5622), + [anon_sym_DASH_DASH] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5622), }, [2526] = { - [sym_concatenation] = STATE(2668), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2668), - [anon_sym_RBRACE] = ACTIONS(6104), - [anon_sym_EQ] = ACTIONS(6120), - [anon_sym_DASH] = ACTIONS(6120), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6122), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6120), - [anon_sym_COLON_QMARK] = ACTIONS(6120), - [anon_sym_COLON_DASH] = ACTIONS(6120), - [anon_sym_PERCENT] = ACTIONS(6120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7211), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2527] = { - [sym__simple_heredoc_body] = ACTIONS(3095), - [sym__heredoc_body_beginning] = ACTIONS(3095), - [sym_file_descriptor] = ACTIONS(3095), - [sym__concat] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_esac] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_EQ_TILDE] = ACTIONS(3097), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_AMP_GT] = ACTIONS(3097), - [anon_sym_AMP_GT_GT] = ACTIONS(3095), - [anon_sym_LT_AMP] = ACTIONS(3095), - [anon_sym_GT_AMP] = ACTIONS(3095), - [anon_sym_LT_LT] = ACTIONS(3097), - [anon_sym_LT_LT_DASH] = ACTIONS(3095), - [anon_sym_LT_LT_LT] = ACTIONS(3095), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [sym_raw_string] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), - [anon_sym_BQUOTE] = ACTIONS(3095), - [anon_sym_LT_LPAREN] = ACTIONS(3095), - [anon_sym_GT_LPAREN] = ACTIONS(3095), + [sym__concat] = ACTIONS(7025), + [anon_sym_RPAREN_RPAREN] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7025), + [anon_sym_EQ_TILDE] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7025), + [anon_sym_EQ] = ACTIONS(7027), + [anon_sym_PLUS_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_BANG_EQ] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7027), + [anon_sym_DASH] = ACTIONS(7027), + [anon_sym_DASH_EQ] = ACTIONS(7025), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7025), + [anon_sym_PLUS_PLUS] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7025), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3097), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), + [sym_test_operator] = ACTIONS(7025), }, [2528] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6130), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), + [sym__concat] = ACTIONS(7029), + [anon_sym_RPAREN_RPAREN] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7029), + [anon_sym_EQ_TILDE] = ACTIONS(7029), + [anon_sym_EQ_EQ] = ACTIONS(7029), + [anon_sym_EQ] = ACTIONS(7031), + [anon_sym_PLUS_EQ] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_BANG_EQ] = ACTIONS(7029), + [anon_sym_PLUS] = ACTIONS(7031), + [anon_sym_DASH] = ACTIONS(7031), + [anon_sym_DASH_EQ] = ACTIONS(7029), + [anon_sym_LT_EQ] = ACTIONS(7029), + [anon_sym_GT_EQ] = ACTIONS(7029), + [anon_sym_PLUS_PLUS] = ACTIONS(7029), + [anon_sym_DASH_DASH] = ACTIONS(7029), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_test_operator] = ACTIONS(7029), }, [2529] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(6130), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym__concat] = ACTIONS(7033), + [anon_sym_RPAREN_RPAREN] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7033), + [anon_sym_EQ_TILDE] = ACTIONS(7033), + [anon_sym_EQ_EQ] = ACTIONS(7033), + [anon_sym_EQ] = ACTIONS(7035), + [anon_sym_PLUS_EQ] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_BANG_EQ] = ACTIONS(7033), + [anon_sym_PLUS] = ACTIONS(7035), + [anon_sym_DASH] = ACTIONS(7035), + [anon_sym_DASH_EQ] = ACTIONS(7033), + [anon_sym_LT_EQ] = ACTIONS(7033), + [anon_sym_GT_EQ] = ACTIONS(7033), + [anon_sym_PLUS_PLUS] = ACTIONS(7033), + [anon_sym_DASH_DASH] = ACTIONS(7033), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), + [sym_test_operator] = ACTIONS(7033), }, [2530] = { - [anon_sym_SEMI] = ACTIONS(6132), - [anon_sym_RPAREN] = ACTIONS(6130), - [anon_sym_SEMI_SEMI] = ACTIONS(6134), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6134), - [anon_sym_AMP] = ACTIONS(6134), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7213), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2531] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(6130), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7215), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2532] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(6130), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym__concat] = ACTIONS(7069), + [anon_sym_RPAREN_RPAREN] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7069), + [anon_sym_EQ_TILDE] = ACTIONS(7069), + [anon_sym_EQ_EQ] = ACTIONS(7069), + [anon_sym_EQ] = ACTIONS(7071), + [anon_sym_PLUS_EQ] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_BANG_EQ] = ACTIONS(7069), + [anon_sym_PLUS] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(7071), + [anon_sym_DASH_EQ] = ACTIONS(7069), + [anon_sym_LT_EQ] = ACTIONS(7069), + [anon_sym_GT_EQ] = ACTIONS(7069), + [anon_sym_PLUS_PLUS] = ACTIONS(7069), + [anon_sym_DASH_DASH] = ACTIONS(7069), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), + [sym_test_operator] = ACTIONS(7069), }, [2533] = { - [anon_sym_SEMI] = ACTIONS(6136), - [anon_sym_SEMI_SEMI] = ACTIONS(6138), - [anon_sym_BQUOTE] = ACTIONS(6130), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [sym_variable_name] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6138), - [anon_sym_AMP] = ACTIONS(6138), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), }, [2534] = { - [sym__simple_heredoc_body] = ACTIONS(3125), - [sym__heredoc_body_beginning] = ACTIONS(3125), - [sym_file_descriptor] = ACTIONS(3125), - [sym__concat] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_esac] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_SEMI_SEMI] = ACTIONS(3125), - [anon_sym_PIPE_AMP] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_EQ_TILDE] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_AMP_GT] = ACTIONS(3127), - [anon_sym_AMP_GT_GT] = ACTIONS(3125), - [anon_sym_LT_AMP] = ACTIONS(3125), - [anon_sym_GT_AMP] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_LT_LT_DASH] = ACTIONS(3125), - [anon_sym_LT_LT_LT] = ACTIONS(3125), - [sym__special_characters] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [anon_sym_DOLLAR] = ACTIONS(3127), - [sym_raw_string] = ACTIONS(3125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3125), - [anon_sym_BQUOTE] = ACTIONS(3125), - [anon_sym_LT_LPAREN] = ACTIONS(3125), - [anon_sym_GT_LPAREN] = ACTIONS(3125), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [sym_variable_name] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3127), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), }, [2535] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6140), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7217), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), }, [2536] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(6140), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7219), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), }, [2537] = { - [anon_sym_SEMI] = ACTIONS(6142), - [anon_sym_RPAREN] = ACTIONS(6140), - [anon_sym_SEMI_SEMI] = ACTIONS(6144), + [anon_sym_RBRACE] = ACTIONS(7219), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6144), - [anon_sym_AMP] = ACTIONS(6144), }, [2538] = { - [aux_sym_concatenation_repeat1] = STATE(2541), - [sym__simple_heredoc_body] = ACTIONS(1071), - [sym__heredoc_body_beginning] = ACTIONS(1071), - [sym_file_descriptor] = ACTIONS(1071), - [sym__concat] = ACTIONS(5818), - [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_concatenation] = STATE(3059), + [sym_string] = STATE(3058), + [sym_simple_expansion] = STATE(3058), + [sym_string_expansion] = STATE(3058), + [sym_expansion] = STATE(3058), + [sym_command_substitution] = STATE(3058), + [sym_process_substitution] = STATE(3058), + [anon_sym_RBRACE] = ACTIONS(7219), + [sym__special_characters] = ACTIONS(7221), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(7223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [sym_word] = ACTIONS(7223), }, [2539] = { - [aux_sym_concatenation_repeat1] = STATE(2541), - [sym__simple_heredoc_body] = ACTIONS(1075), - [sym__heredoc_body_beginning] = ACTIONS(1075), - [sym_file_descriptor] = ACTIONS(1075), - [sym__concat] = ACTIONS(5818), - [anon_sym_SEMI] = ACTIONS(1077), - [anon_sym_esac] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(1077), - [anon_sym_SEMI_SEMI] = ACTIONS(1075), - [anon_sym_PIPE_AMP] = ACTIONS(1075), - [anon_sym_AMP_AMP] = ACTIONS(1075), - [anon_sym_PIPE_PIPE] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1077), - [anon_sym_GT] = ACTIONS(1077), - [anon_sym_GT_GT] = ACTIONS(1075), - [anon_sym_AMP_GT] = ACTIONS(1077), - [anon_sym_AMP_GT_GT] = ACTIONS(1075), - [anon_sym_LT_AMP] = ACTIONS(1075), - [anon_sym_GT_AMP] = ACTIONS(1075), - [anon_sym_LT_LT] = ACTIONS(1077), - [anon_sym_LT_LT_DASH] = ACTIONS(1075), - [anon_sym_LT_LT_LT] = ACTIONS(1075), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [sym_variable_name] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1077), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), }, [2540] = { - [sym_string] = STATE(2676), - [sym_simple_expansion] = STATE(2676), - [sym_string_expansion] = STATE(2676), - [sym_expansion] = STATE(2676), - [sym_command_substitution] = STATE(2676), - [sym_process_substitution] = STATE(2676), - [sym__special_characters] = ACTIONS(6146), - [anon_sym_DQUOTE] = ACTIONS(5454), - [anon_sym_DOLLAR] = ACTIONS(5456), - [sym_raw_string] = ACTIONS(6146), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5460), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5462), - [anon_sym_BQUOTE] = ACTIONS(5464), - [anon_sym_LT_LPAREN] = ACTIONS(5466), - [anon_sym_GT_LPAREN] = ACTIONS(5466), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(6146), + [sym_concatenation] = STATE(3062), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3062), + [sym_regex] = ACTIONS(7225), + [anon_sym_RBRACE] = ACTIONS(7227), + [anon_sym_EQ] = ACTIONS(7229), + [anon_sym_DASH] = ACTIONS(7229), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7229), + [anon_sym_COLON_QMARK] = ACTIONS(7229), + [anon_sym_COLON_DASH] = ACTIONS(7229), + [anon_sym_PERCENT] = ACTIONS(7229), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2541] = { - [aux_sym_concatenation_repeat1] = STATE(2677), - [sym__simple_heredoc_body] = ACTIONS(779), - [sym__heredoc_body_beginning] = ACTIONS(779), - [sym_file_descriptor] = ACTIONS(779), - [sym__concat] = ACTIONS(5818), - [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), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7227), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2542] = { - [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), + [sym_concatenation] = STATE(3064), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3064), + [sym_regex] = ACTIONS(7233), + [anon_sym_RBRACE] = ACTIONS(7219), + [anon_sym_EQ] = ACTIONS(7235), + [anon_sym_DASH] = ACTIONS(7235), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7235), + [anon_sym_COLON_QMARK] = ACTIONS(7235), + [anon_sym_COLON_DASH] = ACTIONS(7235), + [anon_sym_PERCENT] = ACTIONS(7235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2543] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(6148), - [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), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7219), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2544] = { - [sym_simple_expansion] = STATE(143), - [sym_expansion] = STATE(143), - [sym_command_substitution] = STATE(143), - [aux_sym_string_repeat1] = STATE(455), - [anon_sym_DQUOTE] = ACTIONS(6148), - [anon_sym_DOLLAR] = ACTIONS(6150), - [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), + [sym_concatenation] = STATE(3066), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3066), + [anon_sym_RBRACE] = ACTIONS(7239), + [anon_sym_EQ] = ACTIONS(7241), + [anon_sym_DASH] = ACTIONS(7241), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7241), + [anon_sym_COLON_QMARK] = ACTIONS(7241), + [anon_sym_COLON_DASH] = ACTIONS(7241), + [anon_sym_PERCENT] = ACTIONS(7241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2545] = { - [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_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [sym_variable_name] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(817), - [anon_sym_AMP] = ACTIONS(819), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), }, [2546] = { - [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), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7239), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2547] = { - [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), + [sym_concatenation] = STATE(3064), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3064), + [anon_sym_RBRACE] = ACTIONS(7219), + [anon_sym_EQ] = ACTIONS(7235), + [anon_sym_DASH] = ACTIONS(7235), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7235), + [anon_sym_COLON_QMARK] = ACTIONS(7235), + [anon_sym_COLON_DASH] = ACTIONS(7235), + [anon_sym_PERCENT] = ACTIONS(7235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2548] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(6152), + [sym_do_group] = STATE(3067), + [sym_compound_statement] = STATE(3067), + [anon_sym_do] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(113), [sym_comment] = ACTIONS(57), }, [2549] = { - [sym_subscript] = STATE(2683), - [sym_variable_name] = ACTIONS(6154), - [anon_sym_DASH] = ACTIONS(6156), - [anon_sym_DOLLAR] = ACTIONS(6156), + [sym_file_descriptor] = ACTIONS(5745), + [anon_sym_SEMI] = ACTIONS(5747), + [anon_sym_PIPE] = ACTIONS(5747), + [anon_sym_SEMI_SEMI] = ACTIONS(5745), + [anon_sym_PIPE_AMP] = ACTIONS(5745), + [anon_sym_AMP_AMP] = ACTIONS(5745), + [anon_sym_PIPE_PIPE] = ACTIONS(5745), + [anon_sym_LT] = ACTIONS(5747), + [anon_sym_GT] = ACTIONS(5747), + [anon_sym_GT_GT] = ACTIONS(5745), + [anon_sym_AMP_GT] = ACTIONS(5747), + [anon_sym_AMP_GT_GT] = ACTIONS(5745), + [anon_sym_LT_AMP] = ACTIONS(5745), + [anon_sym_GT_AMP] = ACTIONS(5745), + [anon_sym_LT_LT] = ACTIONS(5747), + [anon_sym_LT_LT_DASH] = ACTIONS(5745), + [anon_sym_LT_LT_LT] = ACTIONS(5745), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(6160), - [anon_sym_AT] = ACTIONS(6160), - [anon_sym_QMARK] = ACTIONS(6160), - [anon_sym_0] = ACTIONS(6158), - [anon_sym__] = ACTIONS(6158), + [anon_sym_LF] = ACTIONS(5745), + [anon_sym_AMP] = ACTIONS(5747), }, [2550] = { - [sym_concatenation] = STATE(2686), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2686), - [anon_sym_RBRACE] = ACTIONS(6162), - [anon_sym_EQ] = ACTIONS(6164), - [anon_sym_DASH] = ACTIONS(6164), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(6168), - [anon_sym_COLON] = ACTIONS(6164), - [anon_sym_COLON_QMARK] = ACTIONS(6164), - [anon_sym_COLON_DASH] = ACTIONS(6164), - [anon_sym_PERCENT] = ACTIONS(6164), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_do_group] = STATE(3067), + [sym_compound_statement] = STATE(3067), + [anon_sym_SEMI] = ACTIONS(7245), + [anon_sym_do] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(113), + [sym_comment] = ACTIONS(57), }, [2551] = { - [sym_concatenation] = STATE(2689), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2689), - [anon_sym_RBRACE] = ACTIONS(6170), - [anon_sym_EQ] = ACTIONS(6172), - [anon_sym_DASH] = ACTIONS(6172), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(6176), - [anon_sym_COLON] = ACTIONS(6172), - [anon_sym_COLON_QMARK] = ACTIONS(6172), - [anon_sym_COLON_DASH] = ACTIONS(6172), - [anon_sym_PERCENT] = ACTIONS(6172), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [anon_sym_RPAREN_RPAREN] = ACTIONS(7247), + [anon_sym_AMP_AMP] = ACTIONS(553), + [anon_sym_PIPE_PIPE] = ACTIONS(553), + [anon_sym_EQ_TILDE] = ACTIONS(555), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_PLUS_EQ] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_DASH_EQ] = ACTIONS(553), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(553), }, [2552] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2692), - [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(6178), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6180), - [anon_sym_SEMI_SEMI] = ACTIONS(6182), - [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__expression] = STATE(3070), + [sym_binary_expression] = STATE(3070), + [sym_unary_expression] = STATE(3070), + [sym_postfix_expression] = STATE(3070), + [sym_parenthesized_expression] = STATE(3070), + [sym_concatenation] = STATE(3070), + [sym_string] = STATE(46), + [sym_simple_expansion] = STATE(46), + [sym_string_expansion] = STATE(46), + [sym_expansion] = STATE(46), + [sym_command_substitution] = STATE(46), + [sym_process_substitution] = STATE(46), + [anon_sym_RPAREN_RPAREN] = ACTIONS(7247), + [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), - [anon_sym_LF] = ACTIONS(6182), - [anon_sym_AMP] = ACTIONS(6178), + [sym_word] = ACTIONS(93), + [sym_test_operator] = ACTIONS(95), }, [2553] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2692), - [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(6178), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6180), - [anon_sym_SEMI_SEMI] = ACTIONS(6182), - [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_file_descriptor] = ACTIONS(5818), + [anon_sym_SEMI] = ACTIONS(5820), + [anon_sym_PIPE] = ACTIONS(5820), + [anon_sym_SEMI_SEMI] = ACTIONS(5818), + [anon_sym_PIPE_AMP] = ACTIONS(5818), + [anon_sym_AMP_AMP] = ACTIONS(5818), + [anon_sym_PIPE_PIPE] = ACTIONS(5818), + [anon_sym_LT] = ACTIONS(5820), + [anon_sym_GT] = ACTIONS(5820), + [anon_sym_GT_GT] = ACTIONS(5818), + [anon_sym_AMP_GT] = ACTIONS(5820), + [anon_sym_AMP_GT_GT] = ACTIONS(5818), + [anon_sym_LT_AMP] = ACTIONS(5818), + [anon_sym_GT_AMP] = ACTIONS(5818), + [anon_sym_LT_LT] = ACTIONS(5820), + [anon_sym_LT_LT_DASH] = ACTIONS(5818), + [anon_sym_LT_LT_LT] = ACTIONS(5818), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(6182), - [anon_sym_AMP] = ACTIONS(6178), + [anon_sym_LF] = ACTIONS(5818), + [anon_sym_AMP] = ACTIONS(5820), }, [2554] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(2693), - [sym_for_statement] = STATE(2693), - [sym_c_style_for_statement] = STATE(2693), - [sym_while_statement] = STATE(2693), - [sym_if_statement] = STATE(2693), - [sym_case_statement] = STATE(2693), - [sym_function_definition] = STATE(2693), - [sym_compound_statement] = STATE(2693), - [sym_subshell] = STATE(2693), - [sym_pipeline] = STATE(2693), - [sym_list] = STATE(2693), - [sym_negated_command] = STATE(2693), - [sym_test_command] = STATE(2693), - [sym_declaration_command] = STATE(2693), - [sym_unset_command] = STATE(2693), - [sym_command] = STATE(2693), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(2694), - [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_file_descriptor] = ACTIONS(6621), + [anon_sym_SEMI] = ACTIONS(6623), + [anon_sym_PIPE] = ACTIONS(6623), + [anon_sym_SEMI_SEMI] = ACTIONS(6621), + [anon_sym_PIPE_AMP] = ACTIONS(6621), + [anon_sym_AMP_AMP] = ACTIONS(6621), + [anon_sym_PIPE_PIPE] = ACTIONS(6621), + [anon_sym_LT] = ACTIONS(6623), + [anon_sym_GT] = ACTIONS(6623), + [anon_sym_GT_GT] = ACTIONS(6621), + [anon_sym_AMP_GT] = ACTIONS(6623), + [anon_sym_AMP_GT_GT] = ACTIONS(6621), + [anon_sym_LT_AMP] = ACTIONS(6621), + [anon_sym_GT_AMP] = ACTIONS(6621), + [anon_sym_LT_LT] = ACTIONS(6623), + [anon_sym_LT_LT_DASH] = ACTIONS(6621), + [anon_sym_LT_LT_LT] = ACTIONS(6621), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(141), + [anon_sym_LF] = ACTIONS(6621), + [anon_sym_AMP] = ACTIONS(6623), }, [2555] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2696), - [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(6184), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(6186), - [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(6180), + [anon_sym_fi] = ACTIONS(7249), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6186), - [anon_sym_AMP] = ACTIONS(6184), }, [2556] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2696), - [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(6184), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(6186), - [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(6180), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_file_descriptor] = ACTIONS(6719), + [anon_sym_SEMI] = ACTIONS(6721), + [anon_sym_PIPE] = ACTIONS(6721), + [anon_sym_SEMI_SEMI] = ACTIONS(6719), + [anon_sym_PIPE_AMP] = ACTIONS(6719), + [anon_sym_AMP_AMP] = ACTIONS(6719), + [anon_sym_PIPE_PIPE] = ACTIONS(6719), + [anon_sym_LT] = ACTIONS(6721), + [anon_sym_GT] = ACTIONS(6721), + [anon_sym_GT_GT] = ACTIONS(6719), + [anon_sym_AMP_GT] = ACTIONS(6721), + [anon_sym_AMP_GT_GT] = ACTIONS(6719), + [anon_sym_LT_AMP] = ACTIONS(6719), + [anon_sym_GT_AMP] = ACTIONS(6719), + [anon_sym_LT_LT] = ACTIONS(6721), + [anon_sym_LT_LT_DASH] = ACTIONS(6719), + [anon_sym_LT_LT_LT] = ACTIONS(6719), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(6186), - [anon_sym_AMP] = ACTIONS(6184), + [anon_sym_LF] = ACTIONS(6719), + [anon_sym_AMP] = ACTIONS(6721), }, [2557] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(2697), - [sym_for_statement] = STATE(2697), - [sym_c_style_for_statement] = STATE(2697), - [sym_while_statement] = STATE(2697), - [sym_if_statement] = STATE(2697), - [sym_case_statement] = STATE(2697), - [sym_function_definition] = STATE(2697), - [sym_compound_statement] = STATE(2697), - [sym_subshell] = STATE(2697), - [sym_pipeline] = STATE(2697), - [sym_list] = STATE(2697), - [sym_negated_command] = STATE(2697), - [sym_test_command] = STATE(2697), - [sym_declaration_command] = STATE(2697), - [sym_unset_command] = STATE(2697), - [sym_command] = STATE(2697), - [sym_command_name] = STATE(162), - [sym_variable_assignment] = STATE(2698), - [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), + [anon_sym_esac] = ACTIONS(7251), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(109), }, [2558] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2701), - [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(6188), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6190), - [anon_sym_SEMI_SEMI] = ACTIONS(6192), - [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_case_item] = STATE(2236), + [sym_last_case_item] = STATE(3073), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2236), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6192), - [anon_sym_AMP] = ACTIONS(6188), + [sym_word] = ACTIONS(3413), }, [2559] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2701), - [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(6188), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6190), - [anon_sym_SEMI_SEMI] = ACTIONS(6192), - [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_file_descriptor] = ACTIONS(6749), + [anon_sym_SEMI] = ACTIONS(6751), + [anon_sym_PIPE] = ACTIONS(6751), + [anon_sym_SEMI_SEMI] = ACTIONS(6749), + [anon_sym_PIPE_AMP] = ACTIONS(6749), + [anon_sym_AMP_AMP] = ACTIONS(6749), + [anon_sym_PIPE_PIPE] = ACTIONS(6749), + [anon_sym_LT] = ACTIONS(6751), + [anon_sym_GT] = ACTIONS(6751), + [anon_sym_GT_GT] = ACTIONS(6749), + [anon_sym_AMP_GT] = ACTIONS(6751), + [anon_sym_AMP_GT_GT] = ACTIONS(6749), + [anon_sym_LT_AMP] = ACTIONS(6749), + [anon_sym_GT_AMP] = ACTIONS(6749), + [anon_sym_LT_LT] = ACTIONS(6751), + [anon_sym_LT_LT_DASH] = ACTIONS(6749), + [anon_sym_LT_LT_LT] = ACTIONS(6749), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(6192), - [anon_sym_AMP] = ACTIONS(6188), + [anon_sym_LF] = ACTIONS(6749), + [anon_sym_AMP] = ACTIONS(6751), }, [2560] = { - [sym__terminated_statement] = STATE(187), - [sym_redirected_statement] = STATE(2702), - [sym_for_statement] = STATE(2702), - [sym_c_style_for_statement] = STATE(2702), - [sym_while_statement] = STATE(2702), - [sym_if_statement] = STATE(2702), - [sym_case_statement] = STATE(2702), - [sym_function_definition] = STATE(2702), - [sym_compound_statement] = STATE(2702), - [sym_subshell] = STATE(2702), - [sym_pipeline] = STATE(2702), - [sym_list] = STATE(2702), - [sym_negated_command] = STATE(2702), - [sym_test_command] = STATE(2702), - [sym_declaration_command] = STATE(2702), - [sym_unset_command] = STATE(2702), - [sym_command] = STATE(2702), - [sym_command_name] = STATE(83), - [sym_variable_assignment] = STATE(2703), - [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), + [anon_sym_esac] = ACTIONS(7253), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(141), }, [2561] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_esac] = ACTIONS(6194), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(6196), - [anon_sym_DQUOTE] = ACTIONS(6198), - [anon_sym_DOLLAR] = ACTIONS(6196), - [sym_raw_string] = ACTIONS(6198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6198), - [anon_sym_BQUOTE] = ACTIONS(6198), - [anon_sym_LT_LPAREN] = ACTIONS(6198), - [anon_sym_GT_LPAREN] = ACTIONS(6198), + [sym_case_item] = STATE(2236), + [sym_last_case_item] = STATE(3075), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2236), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(6196), + [sym_word] = ACTIONS(3413), }, [2562] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_esac] = ACTIONS(6200), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(6202), - [anon_sym_DQUOTE] = ACTIONS(6204), - [anon_sym_DOLLAR] = ACTIONS(6202), - [sym_raw_string] = ACTIONS(6204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6204), - [anon_sym_BQUOTE] = ACTIONS(6204), - [anon_sym_LT_LPAREN] = ACTIONS(6204), - [anon_sym_GT_LPAREN] = ACTIONS(6204), + [sym_file_descriptor] = ACTIONS(4334), + [sym_variable_name] = ACTIONS(4334), + [anon_sym_SEMI] = ACTIONS(4336), + [anon_sym_PIPE] = ACTIONS(4336), + [anon_sym_SEMI_SEMI] = ACTIONS(4334), + [anon_sym_PIPE_AMP] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4336), + [anon_sym_GT] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4334), + [anon_sym_AMP_GT] = ACTIONS(4336), + [anon_sym_AMP_GT_GT] = ACTIONS(4334), + [anon_sym_LT_AMP] = ACTIONS(4334), + [anon_sym_GT_AMP] = ACTIONS(4334), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_LT_LT_DASH] = ACTIONS(4334), + [anon_sym_LT_LT_LT] = ACTIONS(4334), + [sym__special_characters] = ACTIONS(4334), + [anon_sym_DQUOTE] = ACTIONS(4334), + [anon_sym_DOLLAR] = ACTIONS(4336), + [sym_raw_string] = ACTIONS(4334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4334), + [anon_sym_BQUOTE] = ACTIONS(4334), + [anon_sym_LT_LPAREN] = ACTIONS(4334), + [anon_sym_GT_LPAREN] = ACTIONS(4334), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(6202), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4336), + [sym_word] = ACTIONS(4336), + [anon_sym_LF] = ACTIONS(4334), + [anon_sym_AMP] = ACTIONS(4336), }, [2563] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(5448), - [anon_sym_DQUOTE] = ACTIONS(5450), - [anon_sym_DOLLAR] = ACTIONS(5448), - [sym_raw_string] = ACTIONS(5450), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5450), - [anon_sym_BQUOTE] = ACTIONS(5450), - [anon_sym_LT_LPAREN] = ACTIONS(5450), - [anon_sym_GT_LPAREN] = ACTIONS(5450), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [sym_variable_name] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5448), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5527), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), }, [2564] = { - [sym__special_characters] = ACTIONS(5450), - [anon_sym_DQUOTE] = ACTIONS(5450), - [anon_sym_DOLLAR] = ACTIONS(5448), - [sym_raw_string] = ACTIONS(5450), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5450), - [anon_sym_BQUOTE] = ACTIONS(5450), - [anon_sym_LT_LPAREN] = ACTIONS(5450), - [anon_sym_GT_LPAREN] = ACTIONS(5450), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [sym_variable_name] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5450), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5535), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), }, [2565] = { - [sym_file_redirect] = STATE(276), - [sym_heredoc_redirect] = STATE(276), - [sym_heredoc_body] = STATE(987), - [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(2058), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(6206), - [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), + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7255), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2058), }, [2566] = { - [sym_file_redirect] = STATE(276), - [sym_heredoc_redirect] = STATE(276), - [sym_heredoc_body] = STATE(987), - [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(2058), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(6206), - [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), + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7257), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2058), }, [2567] = { - [sym__terminated_statement] = STATE(2567), - [sym_redirected_statement] = STATE(526), - [sym_for_statement] = STATE(526), - [sym_c_style_for_statement] = STATE(526), - [sym_while_statement] = STATE(526), - [sym_if_statement] = STATE(526), - [sym_case_statement] = STATE(526), - [sym_function_definition] = STATE(526), - [sym_compound_statement] = STATE(526), - [sym_subshell] = STATE(526), - [sym_pipeline] = STATE(526), - [sym_list] = STATE(526), - [sym_negated_command] = STATE(526), - [sym_test_command] = STATE(526), - [sym_declaration_command] = STATE(526), - [sym_unset_command] = STATE(526), - [sym_command] = STATE(526), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(527), - [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(2567), - [aux_sym_command_repeat1] = STATE(63), - [sym_file_descriptor] = ACTIONS(977), - [sym_variable_name] = ACTIONS(980), - [anon_sym_for] = ACTIONS(983), - [anon_sym_LPAREN_LPAREN] = ACTIONS(986), - [anon_sym_while] = ACTIONS(989), - [anon_sym_if] = ACTIONS(992), - [anon_sym_case] = ACTIONS(995), - [anon_sym_SEMI_SEMI] = ACTIONS(1445), - [anon_sym_function] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1013), - [anon_sym_declare] = ACTIONS(1016), - [anon_sym_typeset] = ACTIONS(1016), - [anon_sym_export] = ACTIONS(1016), - [anon_sym_readonly] = ACTIONS(1016), - [anon_sym_local] = ACTIONS(1016), - [anon_sym_unset] = ACTIONS(1019), - [anon_sym_unsetenv] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1022), - [anon_sym_GT] = ACTIONS(1022), - [anon_sym_GT_GT] = ACTIONS(1025), - [anon_sym_AMP_GT] = ACTIONS(1022), - [anon_sym_AMP_GT_GT] = ACTIONS(1025), - [anon_sym_LT_AMP] = ACTIONS(1025), - [anon_sym_GT_AMP] = ACTIONS(1025), - [sym__special_characters] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1034), - [sym_raw_string] = ACTIONS(1037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), - [anon_sym_BQUOTE] = ACTIONS(1046), - [anon_sym_LT_LPAREN] = ACTIONS(1049), - [anon_sym_GT_LPAREN] = ACTIONS(1049), + [anon_sym_RBRACE] = ACTIONS(7257), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1052), }, [2568] = { - [sym__terminated_statement] = STATE(2567), - [sym_redirected_statement] = STATE(2706), - [sym_for_statement] = STATE(2706), - [sym_c_style_for_statement] = STATE(2706), - [sym_while_statement] = STATE(2706), - [sym_if_statement] = STATE(2706), - [sym_case_statement] = STATE(2706), - [sym_function_definition] = STATE(2706), - [sym_compound_statement] = STATE(2706), - [sym_subshell] = STATE(2706), - [sym_pipeline] = STATE(2706), - [sym_list] = STATE(2706), - [sym_negated_command] = STATE(2706), - [sym_test_command] = STATE(2706), - [sym_declaration_command] = STATE(2706), - [sym_unset_command] = STATE(2706), - [sym_command] = STATE(2706), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(2707), - [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(2567), - [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(6208), - [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), + [sym_concatenation] = STATE(3079), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3079), + [anon_sym_RBRACE] = ACTIONS(7259), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7261), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7263), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7261), + [anon_sym_COLON_QMARK] = ACTIONS(7261), + [anon_sym_COLON_DASH] = ACTIONS(7261), + [anon_sym_PERCENT] = ACTIONS(7261), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2569] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(5490), - [anon_sym_DQUOTE] = ACTIONS(5492), - [anon_sym_DOLLAR] = ACTIONS(5490), - [sym_raw_string] = ACTIONS(5492), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5492), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5492), - [anon_sym_BQUOTE] = ACTIONS(5492), - [anon_sym_LT_LPAREN] = ACTIONS(5492), - [anon_sym_GT_LPAREN] = ACTIONS(5492), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [sym_variable_name] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5490), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5579), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), }, [2570] = { - [sym__special_characters] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5492), - [anon_sym_DOLLAR] = ACTIONS(5490), - [sym_raw_string] = ACTIONS(5492), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5492), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5492), - [anon_sym_BQUOTE] = ACTIONS(5492), - [anon_sym_LT_LPAREN] = ACTIONS(5492), - [anon_sym_GT_LPAREN] = ACTIONS(5492), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5492), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7259), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2571] = { - [sym_file_redirect] = STATE(276), - [sym_heredoc_redirect] = STATE(276), - [sym_heredoc_body] = STATE(987), - [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(2058), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(6210), - [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(2060), - [anon_sym_AMP] = ACTIONS(2058), + [sym_concatenation] = STATE(3080), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3080), + [anon_sym_RBRACE] = ACTIONS(7257), + [anon_sym_EQ] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7265), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7267), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7265), + [anon_sym_COLON_QMARK] = ACTIONS(7265), + [anon_sym_COLON_DASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7265), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2572] = { - [sym_file_redirect] = STATE(276), - [sym_heredoc_redirect] = STATE(276), - [sym_heredoc_body] = STATE(987), - [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(2058), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(6210), - [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(2060), - [anon_sym_AMP] = ACTIONS(2058), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7257), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2573] = { - [sym__terminated_statement] = STATE(2567), - [sym_redirected_statement] = STATE(2710), - [sym_for_statement] = STATE(2710), - [sym_c_style_for_statement] = STATE(2710), - [sym_while_statement] = STATE(2710), - [sym_if_statement] = STATE(2710), - [sym_case_statement] = STATE(2710), - [sym_function_definition] = STATE(2710), - [sym_compound_statement] = STATE(2710), - [sym_subshell] = STATE(2710), - [sym_pipeline] = STATE(2710), - [sym_list] = STATE(2710), - [sym_negated_command] = STATE(2710), - [sym_test_command] = STATE(2710), - [sym_declaration_command] = STATE(2710), - [sym_unset_command] = STATE(2710), - [sym_command] = STATE(2710), - [sym_command_name] = STATE(60), - [sym_variable_assignment] = STATE(2711), - [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(2567), - [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(6212), - [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_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [sym_variable_name] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(109), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5624), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), }, [2574] = { - [sym__concat] = ACTIONS(5216), - [anon_sym_RBRACE] = ACTIONS(5216), - [sym_comment] = ACTIONS(57), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7269), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2575] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_RBRACE] = ACTIONS(5220), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5527), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), }, [2576] = { - [sym__simple_heredoc_body] = ACTIONS(3258), - [sym__heredoc_body_beginning] = ACTIONS(3258), - [sym_file_descriptor] = ACTIONS(3258), - [sym_variable_name] = ACTIONS(3258), - [anon_sym_SEMI] = ACTIONS(3260), - [anon_sym_esac] = ACTIONS(3260), - [anon_sym_PIPE] = ACTIONS(3260), - [anon_sym_SEMI_SEMI] = ACTIONS(3258), - [anon_sym_PIPE_AMP] = ACTIONS(3258), - [anon_sym_AMP_AMP] = ACTIONS(3258), - [anon_sym_PIPE_PIPE] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_GT] = ACTIONS(3260), - [anon_sym_GT_GT] = ACTIONS(3258), - [anon_sym_AMP_GT] = ACTIONS(3260), - [anon_sym_AMP_GT_GT] = ACTIONS(3258), - [anon_sym_LT_AMP] = ACTIONS(3258), - [anon_sym_GT_AMP] = ACTIONS(3258), - [anon_sym_LT_LT] = ACTIONS(3260), - [anon_sym_LT_LT_DASH] = ACTIONS(3258), - [anon_sym_LT_LT_LT] = ACTIONS(3258), - [sym__special_characters] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_DOLLAR] = ACTIONS(3260), - [sym_raw_string] = ACTIONS(3258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3258), - [anon_sym_BQUOTE] = ACTIONS(3258), - [anon_sym_LT_LPAREN] = ACTIONS(3258), - [anon_sym_GT_LPAREN] = ACTIONS(3258), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3260), - [anon_sym_LF] = ACTIONS(3258), - [anon_sym_AMP] = ACTIONS(3260), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5535), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), }, [2577] = { - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(1730), - [sym_variable_name] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_esac] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7271), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), }, [2578] = { - [aux_sym_concatenation_repeat1] = STATE(2578), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(6214), - [sym_variable_name] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_esac] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), - [sym__special_characters] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1732), - [sym_raw_string] = ACTIONS(1730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(1730), - [anon_sym_GT_LPAREN] = ACTIONS(1730), + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7273), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1732), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), }, [2579] = { - [sym__simple_heredoc_body] = ACTIONS(1737), - [sym__heredoc_body_beginning] = ACTIONS(1737), - [sym_file_descriptor] = ACTIONS(1737), - [sym__concat] = ACTIONS(1737), - [sym_variable_name] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_esac] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_SEMI_SEMI] = ACTIONS(1737), - [anon_sym_PIPE_AMP] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1737), - [anon_sym_AMP_GT] = ACTIONS(1739), - [anon_sym_AMP_GT_GT] = ACTIONS(1737), - [anon_sym_LT_AMP] = ACTIONS(1737), - [anon_sym_GT_AMP] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_LT_LT_DASH] = ACTIONS(1737), - [anon_sym_LT_LT_LT] = ACTIONS(1737), - [sym__special_characters] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1739), - [sym_raw_string] = ACTIONS(1737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1737), - [anon_sym_BQUOTE] = ACTIONS(1737), - [anon_sym_LT_LPAREN] = ACTIONS(1737), - [anon_sym_GT_LPAREN] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(7273), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1739), - [anon_sym_LF] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1739), }, [2580] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(6217), - [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), + [sym_concatenation] = STATE(3085), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3085), + [anon_sym_RBRACE] = ACTIONS(7275), + [anon_sym_EQ] = ACTIONS(7277), + [anon_sym_DASH] = ACTIONS(7277), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7277), + [anon_sym_COLON_QMARK] = ACTIONS(7277), + [anon_sym_COLON_DASH] = ACTIONS(7277), + [anon_sym_PERCENT] = ACTIONS(7277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2581] = { - [sym_concatenation] = STATE(2716), - [sym_string] = STATE(2715), - [sym_simple_expansion] = STATE(2715), - [sym_string_expansion] = STATE(2715), - [sym_expansion] = STATE(2715), - [sym_command_substitution] = STATE(2715), - [sym_process_substitution] = STATE(2715), - [anon_sym_RBRACE] = ACTIONS(6219), - [sym__special_characters] = ACTIONS(6221), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(6223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(6223), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5579), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), }, [2582] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(6225), - [sym_comment] = ACTIONS(57), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7275), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2583] = { - [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(6227), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_DASH] = ACTIONS(6229), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(6233), - [anon_sym_COLON] = ACTIONS(6229), - [anon_sym_COLON_QMARK] = ACTIONS(6229), - [anon_sym_COLON_DASH] = ACTIONS(6229), - [anon_sym_PERCENT] = ACTIONS(6229), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(3086), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3086), + [anon_sym_RBRACE] = ACTIONS(7273), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_DASH] = ACTIONS(7281), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7281), + [anon_sym_COLON_QMARK] = ACTIONS(7281), + [anon_sym_COLON_DASH] = ACTIONS(7281), + [anon_sym_PERCENT] = ACTIONS(7281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2584] = { - [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(6219), - [anon_sym_EQ] = ACTIONS(6235), - [anon_sym_DASH] = ACTIONS(6235), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6237), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(6239), - [anon_sym_COLON] = ACTIONS(6235), - [anon_sym_COLON_QMARK] = ACTIONS(6235), - [anon_sym_COLON_DASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7273), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2585] = { - [sym__simple_heredoc_body] = ACTIONS(1838), - [sym__heredoc_body_beginning] = ACTIONS(1838), - [sym_file_descriptor] = ACTIONS(1838), - [sym__concat] = ACTIONS(1838), - [sym_variable_name] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_esac] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1840), - [anon_sym_SEMI_SEMI] = ACTIONS(1838), - [anon_sym_PIPE_AMP] = ACTIONS(1838), - [anon_sym_AMP_AMP] = ACTIONS(1838), - [anon_sym_PIPE_PIPE] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_GT_GT] = ACTIONS(1838), - [anon_sym_AMP_GT] = ACTIONS(1840), - [anon_sym_AMP_GT_GT] = ACTIONS(1838), - [anon_sym_LT_AMP] = ACTIONS(1838), - [anon_sym_GT_AMP] = ACTIONS(1838), - [anon_sym_LT_LT] = ACTIONS(1840), - [anon_sym_LT_LT_DASH] = ACTIONS(1838), - [anon_sym_LT_LT_LT] = ACTIONS(1838), - [sym__special_characters] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1840), - [sym_raw_string] = ACTIONS(1838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_LT_LPAREN] = ACTIONS(1838), - [anon_sym_GT_LPAREN] = ACTIONS(1838), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1840), - [anon_sym_LF] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1840), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5624), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), }, [2586] = { - [sym_concatenation] = STATE(2725), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2725), - [sym_regex] = ACTIONS(6241), - [anon_sym_RBRACE] = ACTIONS(6243), - [anon_sym_EQ] = ACTIONS(6245), - [anon_sym_DASH] = ACTIONS(6245), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [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(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7285), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2587] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6243), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_EQ_TILDE] = ACTIONS(7027), + [anon_sym_EQ_EQ] = ACTIONS(7027), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), }, [2588] = { - [sym__simple_heredoc_body] = ACTIONS(1886), - [sym__heredoc_body_beginning] = ACTIONS(1886), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_esac] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1886), - [anon_sym_LT_LT_LT] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_EQ_TILDE] = ACTIONS(7031), + [anon_sym_EQ_EQ] = ACTIONS(7031), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1888), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), }, [2589] = { - [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), - [sym_regex] = ACTIONS(6249), - [anon_sym_RBRACE] = ACTIONS(6219), - [anon_sym_EQ] = ACTIONS(6235), - [anon_sym_DASH] = ACTIONS(6235), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6237), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6235), - [anon_sym_COLON_QMARK] = ACTIONS(6235), - [anon_sym_COLON_DASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_EQ_TILDE] = ACTIONS(7035), + [anon_sym_EQ_EQ] = ACTIONS(7035), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), }, [2590] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6219), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7287), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2591] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(6251), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7289), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2592] = { - [sym__simple_heredoc_body] = ACTIONS(1894), - [sym__heredoc_body_beginning] = ACTIONS(1894), - [sym_file_descriptor] = ACTIONS(1894), - [sym__concat] = ACTIONS(1894), - [sym_variable_name] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_esac] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_SEMI_SEMI] = ACTIONS(1894), - [anon_sym_PIPE_AMP] = ACTIONS(1894), - [anon_sym_AMP_AMP] = ACTIONS(1894), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_GT_GT] = ACTIONS(1894), - [anon_sym_AMP_GT] = ACTIONS(1896), - [anon_sym_AMP_GT_GT] = ACTIONS(1894), - [anon_sym_LT_AMP] = ACTIONS(1894), - [anon_sym_GT_AMP] = ACTIONS(1894), - [anon_sym_LT_LT] = ACTIONS(1896), - [anon_sym_LT_LT_DASH] = ACTIONS(1894), - [anon_sym_LT_LT_LT] = ACTIONS(1894), - [sym__special_characters] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1896), - [sym_raw_string] = ACTIONS(1894), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), - [anon_sym_BQUOTE] = ACTIONS(1894), - [anon_sym_LT_LPAREN] = ACTIONS(1894), - [anon_sym_GT_LPAREN] = ACTIONS(1894), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_EQ_TILDE] = ACTIONS(7071), + [anon_sym_EQ_EQ] = ACTIONS(7071), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1896), - [anon_sym_LF] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1896), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), }, [2593] = { - [anon_sym_SEMI] = ACTIONS(6253), - [anon_sym_RPAREN] = ACTIONS(6251), - [anon_sym_SEMI_SEMI] = ACTIONS(6255), + [sym__simple_heredoc_body] = ACTIONS(2646), + [sym__heredoc_body_beginning] = ACTIONS(2646), + [sym_file_descriptor] = ACTIONS(2646), + [sym_variable_name] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_done] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_SEMI_SEMI] = ACTIONS(2646), + [anon_sym_PIPE_AMP] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_PIPE_PIPE] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_GT] = ACTIONS(2648), + [anon_sym_GT_GT] = ACTIONS(2646), + [anon_sym_AMP_GT] = ACTIONS(2648), + [anon_sym_AMP_GT_GT] = ACTIONS(2646), + [anon_sym_LT_AMP] = ACTIONS(2646), + [anon_sym_GT_AMP] = ACTIONS(2646), + [anon_sym_LT_LT] = ACTIONS(2648), + [anon_sym_LT_LT_DASH] = ACTIONS(2646), + [anon_sym_LT_LT_LT] = ACTIONS(2646), + [sym__special_characters] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2648), + [sym_raw_string] = ACTIONS(2646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2646), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2646), + [anon_sym_BQUOTE] = ACTIONS(2646), + [anon_sym_LT_LPAREN] = ACTIONS(2646), + [anon_sym_GT_LPAREN] = ACTIONS(2646), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6255), - [anon_sym_AMP] = ACTIONS(6255), + [sym_word] = ACTIONS(2648), + [anon_sym_LF] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2648), }, [2594] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2730), - [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(6257), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6251), - [anon_sym_SEMI_SEMI] = ACTIONS(6259), - [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_concatenation] = STATE(1243), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1243), + [anon_sym_RPAREN] = ACTIONS(7291), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6259), - [anon_sym_AMP] = ACTIONS(6257), + [sym_word] = ACTIONS(1383), }, [2595] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2730), - [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(6257), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6251), - [anon_sym_SEMI_SEMI] = ACTIONS(6259), - [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_string] = STATE(3091), + [sym_simple_expansion] = STATE(3091), + [sym_string_expansion] = STATE(3091), + [sym_expansion] = STATE(3091), + [sym_command_substitution] = STATE(3091), + [sym_process_substitution] = STATE(3091), + [sym__special_characters] = ACTIONS(7293), + [anon_sym_DQUOTE] = ACTIONS(4750), + [anon_sym_DOLLAR] = ACTIONS(4752), + [sym_raw_string] = ACTIONS(7293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4758), + [anon_sym_BQUOTE] = ACTIONS(4760), + [anon_sym_LT_LPAREN] = ACTIONS(4762), + [anon_sym_GT_LPAREN] = ACTIONS(4762), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(6259), - [anon_sym_AMP] = ACTIONS(6257), + [sym_word] = ACTIONS(7293), }, [2596] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(6251), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), + [aux_sym_concatenation_repeat1] = STATE(3092), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(5997), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_done] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), }, [2597] = { - [anon_sym_SEMI] = ACTIONS(6261), - [anon_sym_SEMI_SEMI] = ACTIONS(6263), - [anon_sym_BQUOTE] = ACTIONS(6251), + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [sym_variable_name] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_done] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6263), - [anon_sym_AMP] = ACTIONS(6263), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), }, [2598] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2733), - [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(6265), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(6267), - [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(6251), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6265), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(7295), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), }, [2599] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2733), - [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(6265), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(6267), - [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), + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(7295), + [anon_sym_DOLLAR] = ACTIONS(7297), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), - [anon_sym_BQUOTE] = ACTIONS(6251), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6265), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), }, [2600] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(6269), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [sym_variable_name] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_done] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), }, [2601] = { - [sym__simple_heredoc_body] = ACTIONS(1928), - [sym__heredoc_body_beginning] = ACTIONS(1928), - [sym_file_descriptor] = ACTIONS(1928), - [sym__concat] = ACTIONS(1928), - [sym_variable_name] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_esac] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_GT_GT] = ACTIONS(1928), - [anon_sym_AMP_GT] = ACTIONS(1930), - [anon_sym_AMP_GT_GT] = ACTIONS(1928), - [anon_sym_LT_AMP] = ACTIONS(1928), - [anon_sym_GT_AMP] = ACTIONS(1928), - [anon_sym_LT_LT] = ACTIONS(1930), - [anon_sym_LT_LT_DASH] = ACTIONS(1928), - [anon_sym_LT_LT_LT] = ACTIONS(1928), - [sym__special_characters] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1928), - [anon_sym_DOLLAR] = ACTIONS(1930), - [sym_raw_string] = ACTIONS(1928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), - [anon_sym_BQUOTE] = ACTIONS(1928), - [anon_sym_LT_LPAREN] = ACTIONS(1928), - [anon_sym_GT_LPAREN] = ACTIONS(1928), + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1085), + [sym_variable_name] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_done] = 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(1930), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), + [sym_word] = ACTIONS(1087), + [anon_sym_LF] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1087), }, [2602] = { - [anon_sym_SEMI] = ACTIONS(6271), - [anon_sym_RPAREN] = ACTIONS(6269), - [anon_sym_SEMI_SEMI] = ACTIONS(6273), + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [sym_variable_name] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_done] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6273), - [anon_sym_AMP] = ACTIONS(6273), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), }, [2603] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2737), - [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(6275), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6269), - [anon_sym_SEMI_SEMI] = ACTIONS(6277), - [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), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(7299), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6277), - [anon_sym_AMP] = ACTIONS(6275), }, [2604] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2737), - [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(6275), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6269), - [anon_sym_SEMI_SEMI] = ACTIONS(6277), - [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_subscript] = STATE(3098), + [sym_variable_name] = ACTIONS(7301), + [anon_sym_DASH] = ACTIONS(7303), + [anon_sym_DOLLAR] = ACTIONS(7303), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(6277), - [anon_sym_AMP] = ACTIONS(6275), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7305), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_AT] = ACTIONS(7307), + [anon_sym_QMARK] = ACTIONS(7307), + [anon_sym_0] = ACTIONS(7305), + [anon_sym__] = ACTIONS(7305), }, [2605] = { - [sym__simple_heredoc_body] = ACTIONS(2080), - [sym__heredoc_body_beginning] = ACTIONS(2080), - [sym_file_descriptor] = ACTIONS(2080), - [sym_variable_name] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_esac] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_SEMI_SEMI] = ACTIONS(2080), - [anon_sym_PIPE_AMP] = ACTIONS(2080), - [anon_sym_AMP_AMP] = ACTIONS(2080), - [anon_sym_PIPE_PIPE] = ACTIONS(2080), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_GT_GT] = ACTIONS(2080), - [anon_sym_AMP_GT] = ACTIONS(2082), - [anon_sym_AMP_GT_GT] = ACTIONS(2080), - [anon_sym_LT_AMP] = ACTIONS(2080), - [anon_sym_GT_AMP] = ACTIONS(2080), - [anon_sym_LT_LT] = ACTIONS(2082), - [anon_sym_LT_LT_DASH] = ACTIONS(2080), - [anon_sym_LT_LT_LT] = ACTIONS(2080), - [sym__special_characters] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [anon_sym_DOLLAR] = ACTIONS(2082), - [sym_raw_string] = ACTIONS(2080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2080), - [anon_sym_BQUOTE] = ACTIONS(2080), - [anon_sym_LT_LPAREN] = ACTIONS(2080), - [anon_sym_GT_LPAREN] = ACTIONS(2080), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2082), - [sym_word] = ACTIONS(2082), - [anon_sym_LF] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2082), + [sym_concatenation] = STATE(3101), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3101), + [anon_sym_RBRACE] = ACTIONS(7309), + [anon_sym_EQ] = ACTIONS(7311), + [anon_sym_DASH] = ACTIONS(7311), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7313), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7315), + [anon_sym_COLON] = ACTIONS(7311), + [anon_sym_COLON_QMARK] = ACTIONS(7311), + [anon_sym_COLON_DASH] = ACTIONS(7311), + [anon_sym_PERCENT] = ACTIONS(7311), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2606] = { - [sym_concatenation] = STATE(1015), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [aux_sym_for_statement_repeat1] = STATE(1015), - [anon_sym_RPAREN] = ACTIONS(6279), - [sym__special_characters] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_DOLLAR] = ACTIONS(1099), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1109), - [anon_sym_GT_LPAREN] = ACTIONS(1109), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1101), + [sym_concatenation] = STATE(3104), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3104), + [anon_sym_RBRACE] = ACTIONS(7317), + [anon_sym_EQ] = ACTIONS(7319), + [anon_sym_DASH] = ACTIONS(7319), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7321), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7323), + [anon_sym_COLON] = ACTIONS(7319), + [anon_sym_COLON_QMARK] = ACTIONS(7319), + [anon_sym_COLON_DASH] = ACTIONS(7319), + [anon_sym_PERCENT] = ACTIONS(7319), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2607] = { - [sym__simple_heredoc_body] = ACTIONS(2934), - [sym__heredoc_body_beginning] = ACTIONS(2934), - [sym_file_descriptor] = ACTIONS(2934), - [sym__concat] = ACTIONS(2934), - [sym_variable_name] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_esac] = ACTIONS(2936), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_SEMI_SEMI] = ACTIONS(2934), - [anon_sym_PIPE_AMP] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_AMP_GT] = ACTIONS(2936), - [anon_sym_AMP_GT_GT] = ACTIONS(2934), - [anon_sym_LT_AMP] = ACTIONS(2934), - [anon_sym_GT_AMP] = ACTIONS(2934), - [anon_sym_LT_LT] = ACTIONS(2936), - [anon_sym_LT_LT_DASH] = ACTIONS(2934), - [anon_sym_LT_LT_LT] = ACTIONS(2934), - [sym__special_characters] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_LT_LPAREN] = ACTIONS(2934), - [anon_sym_GT_LPAREN] = ACTIONS(2934), + [anon_sym_RPAREN] = ACTIONS(7325), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2936), - [sym_word] = ACTIONS(2936), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), }, [2608] = { - [sym__simple_heredoc_body] = ACTIONS(2948), - [sym__heredoc_body_beginning] = ACTIONS(2948), - [sym_file_descriptor] = ACTIONS(2948), - [sym__concat] = ACTIONS(2948), - [sym_variable_name] = ACTIONS(2948), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_esac] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_SEMI_SEMI] = ACTIONS(2948), - [anon_sym_PIPE_AMP] = ACTIONS(2948), - [anon_sym_AMP_AMP] = ACTIONS(2948), - [anon_sym_PIPE_PIPE] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_GT_GT] = ACTIONS(2948), - [anon_sym_AMP_GT] = ACTIONS(2950), - [anon_sym_AMP_GT_GT] = ACTIONS(2948), - [anon_sym_LT_AMP] = ACTIONS(2948), - [anon_sym_GT_AMP] = ACTIONS(2948), - [anon_sym_LT_LT] = ACTIONS(2950), - [anon_sym_LT_LT_DASH] = ACTIONS(2948), - [anon_sym_LT_LT_LT] = ACTIONS(2948), - [sym__special_characters] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2948), - [anon_sym_BQUOTE] = ACTIONS(2948), - [anon_sym_LT_LPAREN] = ACTIONS(2948), - [anon_sym_GT_LPAREN] = ACTIONS(2948), + [anon_sym_BQUOTE] = ACTIONS(7325), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2950), - [sym_word] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), }, [2609] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6281), + [anon_sym_RPAREN] = ACTIONS(7327), [sym_comment] = ACTIONS(57), }, [2610] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6283), + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_done] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1373), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), }, [2611] = { - [anon_sym_RBRACE] = ACTIONS(6283), + [sym_concatenation] = STATE(3108), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(3108), + [anon_sym_RPAREN] = ACTIONS(7329), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), }, [2612] = { - [sym_concatenation] = STATE(2743), - [sym_string] = STATE(2742), - [sym_simple_expansion] = STATE(2742), - [sym_string_expansion] = STATE(2742), - [sym_expansion] = STATE(2742), - [sym_command_substitution] = STATE(2742), - [sym_process_substitution] = STATE(2742), - [anon_sym_RBRACE] = ACTIONS(6283), - [sym__special_characters] = ACTIONS(6285), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(6287), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), + [aux_sym_concatenation_repeat1] = STATE(2025), + [sym__simple_heredoc_body] = ACTIONS(1393), + [sym__heredoc_body_beginning] = ACTIONS(1393), + [sym_file_descriptor] = ACTIONS(1393), + [sym__concat] = ACTIONS(4766), + [sym_variable_name] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_done] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_SEMI_SEMI] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_AMP_GT] = ACTIONS(1397), + [anon_sym_AMP_GT_GT] = ACTIONS(1393), + [anon_sym_LT_AMP] = ACTIONS(1393), + [anon_sym_GT_AMP] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_LT_LT_DASH] = ACTIONS(1393), + [anon_sym_LT_LT_LT] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1397), + [sym_raw_string] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1393), + [anon_sym_GT_LPAREN] = ACTIONS(1393), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(6287), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1397), + [sym_word] = ACTIONS(1397), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1397), }, [2613] = { - [sym__simple_heredoc_body] = ACTIONS(2984), - [sym__heredoc_body_beginning] = ACTIONS(2984), - [sym_file_descriptor] = ACTIONS(2984), - [sym__concat] = ACTIONS(2984), - [sym_variable_name] = ACTIONS(2984), - [anon_sym_SEMI] = ACTIONS(2986), - [anon_sym_esac] = ACTIONS(2986), - [anon_sym_PIPE] = ACTIONS(2986), - [anon_sym_SEMI_SEMI] = ACTIONS(2984), - [anon_sym_PIPE_AMP] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_GT] = ACTIONS(2986), - [anon_sym_GT_GT] = ACTIONS(2984), - [anon_sym_AMP_GT] = ACTIONS(2986), - [anon_sym_AMP_GT_GT] = ACTIONS(2984), - [anon_sym_LT_AMP] = ACTIONS(2984), - [anon_sym_GT_AMP] = ACTIONS(2984), - [anon_sym_LT_LT] = ACTIONS(2986), - [anon_sym_LT_LT_DASH] = ACTIONS(2984), - [anon_sym_LT_LT_LT] = ACTIONS(2984), - [sym__special_characters] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [sym_raw_string] = ACTIONS(2984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2984), - [anon_sym_BQUOTE] = ACTIONS(2984), - [anon_sym_LT_LPAREN] = ACTIONS(2984), - [anon_sym_GT_LPAREN] = ACTIONS(2984), + [aux_sym_concatenation_repeat1] = STATE(2025), + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym__concat] = ACTIONS(4766), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_done] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2986), - [sym_word] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1373), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), }, [2614] = { - [sym_concatenation] = STATE(2746), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2746), - [sym_regex] = ACTIONS(6289), - [anon_sym_RBRACE] = ACTIONS(6291), - [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), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_done] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), }, [2615] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6291), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [aux_sym_concatenation_repeat1] = STATE(2615), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(7331), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_done] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), }, [2616] = { - [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), - [sym_regex] = ACTIONS(6297), - [anon_sym_RBRACE] = ACTIONS(6283), - [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), + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [sym_variable_name] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_done] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2301), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), }, [2617] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6283), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(7334), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), }, [2618] = { - [sym_concatenation] = STATE(2750), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2750), - [anon_sym_RBRACE] = ACTIONS(6303), - [anon_sym_EQ] = ACTIONS(6305), - [anon_sym_DASH] = ACTIONS(6305), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6307), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6305), - [anon_sym_COLON_QMARK] = ACTIONS(6305), - [anon_sym_COLON_DASH] = ACTIONS(6305), - [anon_sym_PERCENT] = ACTIONS(6305), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(3113), + [sym_string] = STATE(3112), + [sym_simple_expansion] = STATE(3112), + [sym_string_expansion] = STATE(3112), + [sym_expansion] = STATE(3112), + [sym_command_substitution] = STATE(3112), + [sym_process_substitution] = STATE(3112), + [anon_sym_RBRACE] = ACTIONS(7336), + [sym__special_characters] = ACTIONS(7338), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(7340), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7340), }, [2619] = { - [sym__simple_heredoc_body] = ACTIONS(3040), - [sym__heredoc_body_beginning] = ACTIONS(3040), - [sym_file_descriptor] = ACTIONS(3040), - [sym__concat] = ACTIONS(3040), - [sym_variable_name] = ACTIONS(3040), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_esac] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_SEMI_SEMI] = ACTIONS(3040), - [anon_sym_PIPE_AMP] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_GT_GT] = ACTIONS(3040), - [anon_sym_AMP_GT] = ACTIONS(3042), - [anon_sym_AMP_GT_GT] = ACTIONS(3040), - [anon_sym_LT_AMP] = ACTIONS(3040), - [anon_sym_GT_AMP] = ACTIONS(3040), - [anon_sym_LT_LT] = ACTIONS(3042), - [anon_sym_LT_LT_DASH] = ACTIONS(3040), - [anon_sym_LT_LT_LT] = ACTIONS(3040), - [sym__special_characters] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [sym_raw_string] = ACTIONS(3040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), - [anon_sym_BQUOTE] = ACTIONS(3040), - [anon_sym_LT_LPAREN] = ACTIONS(3040), - [anon_sym_GT_LPAREN] = ACTIONS(3040), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(7342), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3042), - [sym_word] = ACTIONS(3042), - [anon_sym_LF] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), }, [2620] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6303), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(3117), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3117), + [anon_sym_RBRACE] = ACTIONS(7344), + [anon_sym_EQ] = ACTIONS(7346), + [anon_sym_DASH] = ACTIONS(7346), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7348), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7350), + [anon_sym_COLON] = ACTIONS(7346), + [anon_sym_COLON_QMARK] = ACTIONS(7346), + [anon_sym_COLON_DASH] = ACTIONS(7346), + [anon_sym_PERCENT] = ACTIONS(7346), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2621] = { - [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(6283), - [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), + [sym_concatenation] = STATE(3119), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3119), + [anon_sym_RBRACE] = ACTIONS(7336), + [anon_sym_EQ] = ACTIONS(7352), + [anon_sym_DASH] = ACTIONS(7352), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7354), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7356), + [anon_sym_COLON] = ACTIONS(7352), + [anon_sym_COLON_QMARK] = ACTIONS(7352), + [anon_sym_COLON_DASH] = ACTIONS(7352), + [anon_sym_PERCENT] = ACTIONS(7352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2622] = { - [sym__simple_heredoc_body] = ACTIONS(3095), - [sym__heredoc_body_beginning] = ACTIONS(3095), - [sym_file_descriptor] = ACTIONS(3095), - [sym__concat] = ACTIONS(3095), - [sym_variable_name] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_esac] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_AMP_GT] = ACTIONS(3097), - [anon_sym_AMP_GT_GT] = ACTIONS(3095), - [anon_sym_LT_AMP] = ACTIONS(3095), - [anon_sym_GT_AMP] = ACTIONS(3095), - [anon_sym_LT_LT] = ACTIONS(3097), - [anon_sym_LT_LT_DASH] = ACTIONS(3095), - [anon_sym_LT_LT_LT] = ACTIONS(3095), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [sym_raw_string] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), - [anon_sym_BQUOTE] = ACTIONS(3095), - [anon_sym_LT_LPAREN] = ACTIONS(3095), - [anon_sym_GT_LPAREN] = ACTIONS(3095), + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [sym_variable_name] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_done] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3097), - [sym_word] = ACTIONS(3097), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2394), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), }, [2623] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6309), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_concatenation] = STATE(3122), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3122), + [sym_regex] = ACTIONS(7358), + [anon_sym_RBRACE] = ACTIONS(7360), + [anon_sym_EQ] = ACTIONS(7362), + [anon_sym_DASH] = ACTIONS(7362), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7362), + [anon_sym_COLON_QMARK] = ACTIONS(7362), + [anon_sym_COLON_DASH] = ACTIONS(7362), + [anon_sym_PERCENT] = ACTIONS(7362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2624] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(6309), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7360), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2625] = { - [anon_sym_SEMI] = ACTIONS(6311), - [anon_sym_RPAREN] = ACTIONS(6309), - [anon_sym_SEMI_SEMI] = ACTIONS(6313), + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [sym_variable_name] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_done] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6313), - [anon_sym_AMP] = ACTIONS(6313), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2442), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), }, [2626] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(6309), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_concatenation] = STATE(3119), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3119), + [sym_regex] = ACTIONS(7366), + [anon_sym_RBRACE] = ACTIONS(7336), + [anon_sym_EQ] = ACTIONS(7352), + [anon_sym_DASH] = ACTIONS(7352), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7354), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7352), + [anon_sym_COLON_QMARK] = ACTIONS(7352), + [anon_sym_COLON_DASH] = ACTIONS(7352), + [anon_sym_PERCENT] = ACTIONS(7352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2627] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(6309), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7336), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2628] = { - [anon_sym_SEMI] = ACTIONS(6315), - [anon_sym_SEMI_SEMI] = ACTIONS(6317), - [anon_sym_BQUOTE] = ACTIONS(6309), + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [sym_variable_name] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_done] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6317), - [anon_sym_AMP] = ACTIONS(6317), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2448), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), }, [2629] = { - [sym__simple_heredoc_body] = ACTIONS(3125), - [sym__heredoc_body_beginning] = ACTIONS(3125), - [sym_file_descriptor] = ACTIONS(3125), - [sym__concat] = ACTIONS(3125), - [sym_variable_name] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_esac] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_SEMI_SEMI] = ACTIONS(3125), - [anon_sym_PIPE_AMP] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_AMP_GT] = ACTIONS(3127), - [anon_sym_AMP_GT_GT] = ACTIONS(3125), - [anon_sym_LT_AMP] = ACTIONS(3125), - [anon_sym_GT_AMP] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_LT_LT_DASH] = ACTIONS(3125), - [anon_sym_LT_LT_LT] = ACTIONS(3125), - [sym__special_characters] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [anon_sym_DOLLAR] = ACTIONS(3127), - [sym_raw_string] = ACTIONS(3125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3125), - [anon_sym_BQUOTE] = ACTIONS(3125), - [anon_sym_LT_LPAREN] = ACTIONS(3125), - [anon_sym_GT_LPAREN] = ACTIONS(3125), + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [sym_variable_name] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_done] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3127), - [sym_word] = ACTIONS(3127), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2486), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), }, [2630] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6319), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_done] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), }, [2631] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(6319), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), + [aux_sym_concatenation_repeat1] = STATE(2631), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(7368), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_done] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), }, [2632] = { - [anon_sym_SEMI] = ACTIONS(6321), - [anon_sym_RPAREN] = ACTIONS(6319), - [anon_sym_SEMI_SEMI] = ACTIONS(6323), + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_done] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6323), - [anon_sym_AMP] = ACTIONS(6323), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2301), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), }, [2633] = { - [sym__simple_heredoc_body] = ACTIONS(2934), - [sym__heredoc_body_beginning] = ACTIONS(2934), - [sym_file_descriptor] = ACTIONS(2934), - [sym__concat] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_esac] = ACTIONS(2936), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_SEMI_SEMI] = ACTIONS(2934), - [anon_sym_PIPE_AMP] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_AMP_GT] = ACTIONS(2936), - [anon_sym_AMP_GT_GT] = ACTIONS(2934), - [anon_sym_LT_AMP] = ACTIONS(2934), - [anon_sym_GT_AMP] = ACTIONS(2934), - [anon_sym_LT_LT] = ACTIONS(2936), - [anon_sym_LT_LT_DASH] = ACTIONS(2934), - [anon_sym_LT_LT_LT] = ACTIONS(2934), - [sym__special_characters] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_LT_LPAREN] = ACTIONS(2934), - [anon_sym_GT_LPAREN] = ACTIONS(2934), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2936), - [sym_word] = ACTIONS(2936), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(7371), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), }, [2634] = { - [sym__simple_heredoc_body] = ACTIONS(2948), - [sym__heredoc_body_beginning] = ACTIONS(2948), - [sym_file_descriptor] = ACTIONS(2948), - [sym__concat] = ACTIONS(2948), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_esac] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_SEMI_SEMI] = ACTIONS(2948), - [anon_sym_PIPE_AMP] = ACTIONS(2948), - [anon_sym_AMP_AMP] = ACTIONS(2948), - [anon_sym_PIPE_PIPE] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_GT_GT] = ACTIONS(2948), - [anon_sym_AMP_GT] = ACTIONS(2950), - [anon_sym_AMP_GT_GT] = ACTIONS(2948), - [anon_sym_LT_AMP] = ACTIONS(2948), - [anon_sym_GT_AMP] = ACTIONS(2948), - [anon_sym_LT_LT] = ACTIONS(2950), - [anon_sym_LT_LT_DASH] = ACTIONS(2948), - [anon_sym_LT_LT_LT] = ACTIONS(2948), - [sym__special_characters] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2948), - [anon_sym_BQUOTE] = ACTIONS(2948), - [anon_sym_LT_LPAREN] = ACTIONS(2948), - [anon_sym_GT_LPAREN] = ACTIONS(2948), + [sym_concatenation] = STATE(3128), + [sym_string] = STATE(3127), + [sym_simple_expansion] = STATE(3127), + [sym_string_expansion] = STATE(3127), + [sym_expansion] = STATE(3127), + [sym_command_substitution] = STATE(3127), + [sym_process_substitution] = STATE(3127), + [anon_sym_RBRACE] = ACTIONS(7373), + [sym__special_characters] = ACTIONS(7375), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(7377), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2950), - [sym_word] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), + [sym_word] = ACTIONS(7377), }, [2635] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(7379), [sym_comment] = ACTIONS(57), }, [2636] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6327), - [sym_comment] = ACTIONS(57), + [sym_concatenation] = STATE(3132), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3132), + [anon_sym_RBRACE] = ACTIONS(7381), + [anon_sym_EQ] = ACTIONS(7383), + [anon_sym_DASH] = ACTIONS(7383), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7385), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7387), + [anon_sym_COLON] = ACTIONS(7383), + [anon_sym_COLON_QMARK] = ACTIONS(7383), + [anon_sym_COLON_DASH] = ACTIONS(7383), + [anon_sym_PERCENT] = ACTIONS(7383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2637] = { - [anon_sym_RBRACE] = ACTIONS(6327), - [sym_comment] = ACTIONS(57), + [sym_concatenation] = STATE(3134), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3134), + [anon_sym_RBRACE] = ACTIONS(7373), + [anon_sym_EQ] = ACTIONS(7389), + [anon_sym_DASH] = ACTIONS(7389), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7391), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_COLON] = ACTIONS(7389), + [anon_sym_COLON_QMARK] = ACTIONS(7389), + [anon_sym_COLON_DASH] = ACTIONS(7389), + [anon_sym_PERCENT] = ACTIONS(7389), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2638] = { - [sym_concatenation] = STATE(2760), - [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), - [anon_sym_RBRACE] = ACTIONS(6327), - [sym__special_characters] = ACTIONS(6329), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(6331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_done] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(6331), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2394), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), }, [2639] = { - [sym__simple_heredoc_body] = ACTIONS(2984), - [sym__heredoc_body_beginning] = ACTIONS(2984), - [sym_file_descriptor] = ACTIONS(2984), - [sym__concat] = ACTIONS(2984), - [anon_sym_SEMI] = ACTIONS(2986), - [anon_sym_esac] = ACTIONS(2986), - [anon_sym_PIPE] = ACTIONS(2986), - [anon_sym_SEMI_SEMI] = ACTIONS(2984), - [anon_sym_PIPE_AMP] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_GT] = ACTIONS(2986), - [anon_sym_GT_GT] = ACTIONS(2984), - [anon_sym_AMP_GT] = ACTIONS(2986), - [anon_sym_AMP_GT_GT] = ACTIONS(2984), - [anon_sym_LT_AMP] = ACTIONS(2984), - [anon_sym_GT_AMP] = ACTIONS(2984), - [anon_sym_LT_LT] = ACTIONS(2986), - [anon_sym_LT_LT_DASH] = ACTIONS(2984), - [anon_sym_LT_LT_LT] = ACTIONS(2984), - [sym__special_characters] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [sym_raw_string] = ACTIONS(2984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2984), - [anon_sym_BQUOTE] = ACTIONS(2984), - [anon_sym_LT_LPAREN] = ACTIONS(2984), - [anon_sym_GT_LPAREN] = ACTIONS(2984), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2986), - [sym_word] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), + [sym_concatenation] = STATE(3137), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3137), + [sym_regex] = ACTIONS(7395), + [anon_sym_RBRACE] = ACTIONS(7397), + [anon_sym_EQ] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7399), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7401), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7399), + [anon_sym_COLON_QMARK] = ACTIONS(7399), + [anon_sym_COLON_DASH] = ACTIONS(7399), + [anon_sym_PERCENT] = ACTIONS(7399), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2640] = { - [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(6333), - [anon_sym_RBRACE] = ACTIONS(6335), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_DASH] = ACTIONS(6337), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6339), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6337), - [anon_sym_COLON_QMARK] = ACTIONS(6337), - [anon_sym_COLON_DASH] = ACTIONS(6337), - [anon_sym_PERCENT] = ACTIONS(6337), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7397), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2641] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6335), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_done] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2442), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), }, [2642] = { - [sym_concatenation] = STATE(2765), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2765), - [sym_regex] = ACTIONS(6341), - [anon_sym_RBRACE] = ACTIONS(6327), - [anon_sym_EQ] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [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(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(3134), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3134), + [sym_regex] = ACTIONS(7403), + [anon_sym_RBRACE] = ACTIONS(7373), + [anon_sym_EQ] = ACTIONS(7389), + [anon_sym_DASH] = ACTIONS(7389), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7391), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7389), + [anon_sym_COLON_QMARK] = ACTIONS(7389), + [anon_sym_COLON_DASH] = ACTIONS(7389), + [anon_sym_PERCENT] = ACTIONS(7389), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2643] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6327), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7373), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2644] = { - [sym_concatenation] = STATE(2767), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2767), - [anon_sym_RBRACE] = ACTIONS(6347), - [anon_sym_EQ] = ACTIONS(6349), - [anon_sym_DASH] = ACTIONS(6349), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6351), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [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(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_done] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2448), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), }, [2645] = { - [sym__simple_heredoc_body] = ACTIONS(3040), - [sym__heredoc_body_beginning] = ACTIONS(3040), - [sym_file_descriptor] = ACTIONS(3040), - [sym__concat] = ACTIONS(3040), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_esac] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_SEMI_SEMI] = ACTIONS(3040), - [anon_sym_PIPE_AMP] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_GT_GT] = ACTIONS(3040), - [anon_sym_AMP_GT] = ACTIONS(3042), - [anon_sym_AMP_GT_GT] = ACTIONS(3040), - [anon_sym_LT_AMP] = ACTIONS(3040), - [anon_sym_GT_AMP] = ACTIONS(3040), - [anon_sym_LT_LT] = ACTIONS(3042), - [anon_sym_LT_LT_DASH] = ACTIONS(3040), - [anon_sym_LT_LT_LT] = ACTIONS(3040), - [sym__special_characters] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [sym_raw_string] = ACTIONS(3040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), - [anon_sym_BQUOTE] = ACTIONS(3040), - [anon_sym_LT_LPAREN] = ACTIONS(3040), - [anon_sym_GT_LPAREN] = ACTIONS(3040), + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_done] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3042), - [sym_word] = ACTIONS(3042), - [anon_sym_LF] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2486), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), }, [2646] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6347), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_done] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_EQ_TILDE] = ACTIONS(4003), + [anon_sym_EQ_EQ] = ACTIONS(4003), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), }, [2647] = { - [sym_concatenation] = STATE(2765), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2765), - [anon_sym_RBRACE] = ACTIONS(6327), - [anon_sym_EQ] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [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(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_done] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_EQ_TILDE] = ACTIONS(4017), + [anon_sym_EQ_EQ] = ACTIONS(4017), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), }, [2648] = { - [sym__simple_heredoc_body] = ACTIONS(3095), - [sym__heredoc_body_beginning] = ACTIONS(3095), - [sym_file_descriptor] = ACTIONS(3095), - [sym__concat] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_esac] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_AMP_GT] = ACTIONS(3097), - [anon_sym_AMP_GT_GT] = ACTIONS(3095), - [anon_sym_LT_AMP] = ACTIONS(3095), - [anon_sym_GT_AMP] = ACTIONS(3095), - [anon_sym_LT_LT] = ACTIONS(3097), - [anon_sym_LT_LT_DASH] = ACTIONS(3095), - [anon_sym_LT_LT_LT] = ACTIONS(3095), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [sym_raw_string] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), - [anon_sym_BQUOTE] = ACTIONS(3095), - [anon_sym_LT_LPAREN] = ACTIONS(3095), - [anon_sym_GT_LPAREN] = ACTIONS(3095), + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7405), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3097), - [sym_word] = ACTIONS(3097), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), }, [2649] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6353), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7407), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), }, [2650] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(6353), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(7407), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), }, [2651] = { - [anon_sym_SEMI] = ACTIONS(6355), - [anon_sym_RPAREN] = ACTIONS(6353), - [anon_sym_SEMI_SEMI] = ACTIONS(6357), + [sym_concatenation] = STATE(3143), + [sym_string] = STATE(3142), + [sym_simple_expansion] = STATE(3142), + [sym_string_expansion] = STATE(3142), + [sym_expansion] = STATE(3142), + [sym_command_substitution] = STATE(3142), + [sym_process_substitution] = STATE(3142), + [anon_sym_RBRACE] = ACTIONS(7407), + [sym__special_characters] = ACTIONS(7409), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(7411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6357), - [anon_sym_AMP] = ACTIONS(6357), + [sym_word] = ACTIONS(7411), }, [2652] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(6353), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_done] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_EQ_TILDE] = ACTIONS(4053), + [anon_sym_EQ_EQ] = ACTIONS(4053), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), }, [2653] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(6353), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), + [sym_concatenation] = STATE(3146), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3146), + [sym_regex] = ACTIONS(7413), + [anon_sym_RBRACE] = ACTIONS(7415), + [anon_sym_EQ] = ACTIONS(7417), + [anon_sym_DASH] = ACTIONS(7417), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7417), + [anon_sym_COLON_QMARK] = ACTIONS(7417), + [anon_sym_COLON_DASH] = ACTIONS(7417), + [anon_sym_PERCENT] = ACTIONS(7417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2654] = { - [anon_sym_SEMI] = ACTIONS(6359), - [anon_sym_SEMI_SEMI] = ACTIONS(6361), - [anon_sym_BQUOTE] = ACTIONS(6353), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6361), - [anon_sym_AMP] = ACTIONS(6361), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7415), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2655] = { - [sym__simple_heredoc_body] = ACTIONS(3125), - [sym__heredoc_body_beginning] = ACTIONS(3125), - [sym_file_descriptor] = ACTIONS(3125), - [sym__concat] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_esac] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_SEMI_SEMI] = ACTIONS(3125), - [anon_sym_PIPE_AMP] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_AMP_GT] = ACTIONS(3127), - [anon_sym_AMP_GT_GT] = ACTIONS(3125), - [anon_sym_LT_AMP] = ACTIONS(3125), - [anon_sym_GT_AMP] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_LT_LT_DASH] = ACTIONS(3125), - [anon_sym_LT_LT_LT] = ACTIONS(3125), - [sym__special_characters] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [anon_sym_DOLLAR] = ACTIONS(3127), - [sym_raw_string] = ACTIONS(3125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3125), - [anon_sym_BQUOTE] = ACTIONS(3125), - [anon_sym_LT_LPAREN] = ACTIONS(3125), - [anon_sym_GT_LPAREN] = ACTIONS(3125), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3127), - [sym_word] = ACTIONS(3127), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), + [sym_concatenation] = STATE(3148), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3148), + [sym_regex] = ACTIONS(7421), + [anon_sym_RBRACE] = ACTIONS(7407), + [anon_sym_EQ] = ACTIONS(7423), + [anon_sym_DASH] = ACTIONS(7423), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7423), + [anon_sym_COLON_QMARK] = ACTIONS(7423), + [anon_sym_COLON_DASH] = ACTIONS(7423), + [anon_sym_PERCENT] = ACTIONS(7423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2656] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6363), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7407), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2657] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(6363), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), + [sym_concatenation] = STATE(3150), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3150), + [anon_sym_RBRACE] = ACTIONS(7427), + [anon_sym_EQ] = ACTIONS(7429), + [anon_sym_DASH] = ACTIONS(7429), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7431), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7429), + [anon_sym_COLON_QMARK] = ACTIONS(7429), + [anon_sym_COLON_DASH] = ACTIONS(7429), + [anon_sym_PERCENT] = ACTIONS(7429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2658] = { - [anon_sym_SEMI] = ACTIONS(6365), - [anon_sym_RPAREN] = ACTIONS(6363), - [anon_sym_SEMI_SEMI] = ACTIONS(6367), + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_done] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_EQ_TILDE] = ACTIONS(4109), + [anon_sym_EQ_EQ] = ACTIONS(4109), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6367), - [anon_sym_AMP] = ACTIONS(6367), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), }, [2659] = { - [sym__simple_heredoc_body] = ACTIONS(3941), - [sym__heredoc_body_beginning] = ACTIONS(3941), - [sym_file_descriptor] = ACTIONS(3941), - [sym__concat] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3943), - [anon_sym_esac] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [anon_sym_PIPE_AMP] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [anon_sym_EQ_TILDE] = ACTIONS(3943), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_GT_GT] = ACTIONS(3941), - [anon_sym_AMP_GT] = ACTIONS(3943), - [anon_sym_AMP_GT_GT] = ACTIONS(3941), - [anon_sym_LT_AMP] = ACTIONS(3941), - [anon_sym_GT_AMP] = ACTIONS(3941), - [anon_sym_LT_LT] = ACTIONS(3943), - [anon_sym_LT_LT_DASH] = ACTIONS(3941), - [anon_sym_LT_LT_LT] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3943), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [anon_sym_LT_LPAREN] = ACTIONS(3941), - [anon_sym_GT_LPAREN] = ACTIONS(3941), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3943), - [anon_sym_LF] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7427), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2660] = { - [sym__simple_heredoc_body] = ACTIONS(3949), - [sym__heredoc_body_beginning] = ACTIONS(3949), - [sym_file_descriptor] = ACTIONS(3949), - [sym__concat] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3951), - [anon_sym_esac] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_SEMI_SEMI] = ACTIONS(3949), - [anon_sym_PIPE_AMP] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3949), - [anon_sym_PIPE_PIPE] = ACTIONS(3949), - [anon_sym_EQ_TILDE] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3949), - [anon_sym_AMP_GT] = ACTIONS(3951), - [anon_sym_AMP_GT_GT] = ACTIONS(3949), - [anon_sym_LT_AMP] = ACTIONS(3949), - [anon_sym_GT_AMP] = ACTIONS(3949), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_LT_LT_DASH] = ACTIONS(3949), - [anon_sym_LT_LT_LT] = ACTIONS(3949), - [sym__special_characters] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3951), - [sym_raw_string] = ACTIONS(3949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3949), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3949), - [anon_sym_BQUOTE] = ACTIONS(3949), - [anon_sym_LT_LPAREN] = ACTIONS(3949), - [anon_sym_GT_LPAREN] = ACTIONS(3949), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3951), - [anon_sym_LF] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3951), + [sym_concatenation] = STATE(3148), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3148), + [anon_sym_RBRACE] = ACTIONS(7407), + [anon_sym_EQ] = ACTIONS(7423), + [anon_sym_DASH] = ACTIONS(7423), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7423), + [anon_sym_COLON_QMARK] = ACTIONS(7423), + [anon_sym_COLON_DASH] = ACTIONS(7423), + [anon_sym_PERCENT] = ACTIONS(7423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2661] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6369), + [aux_sym_concatenation_repeat1] = STATE(2664), + [sym__simple_heredoc_body] = ACTIONS(1353), + [sym__heredoc_body_beginning] = ACTIONS(1353), + [sym_file_descriptor] = ACTIONS(1353), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_done] = ACTIONS(1353), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_SEMI_SEMI] = ACTIONS(1353), + [anon_sym_PIPE_AMP] = ACTIONS(1353), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_GT] = ACTIONS(1355), + [anon_sym_GT_GT] = ACTIONS(1353), + [anon_sym_AMP_GT] = ACTIONS(1355), + [anon_sym_AMP_GT_GT] = ACTIONS(1353), + [anon_sym_LT_AMP] = ACTIONS(1353), + [anon_sym_GT_AMP] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(1355), + [anon_sym_LT_LT_DASH] = ACTIONS(1353), + [anon_sym_LT_LT_LT] = ACTIONS(1353), [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1355), }, [2662] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6371), + [aux_sym_concatenation_repeat1] = STATE(2664), + [sym__simple_heredoc_body] = ACTIONS(1357), + [sym__heredoc_body_beginning] = ACTIONS(1357), + [sym_file_descriptor] = ACTIONS(1357), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_done] = ACTIONS(1357), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_SEMI_SEMI] = ACTIONS(1357), + [anon_sym_PIPE_AMP] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1357), + [anon_sym_AMP_GT] = ACTIONS(1359), + [anon_sym_AMP_GT_GT] = ACTIONS(1357), + [anon_sym_LT_AMP] = ACTIONS(1357), + [anon_sym_GT_AMP] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_LT_LT_DASH] = ACTIONS(1357), + [anon_sym_LT_LT_LT] = ACTIONS(1357), [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), }, [2663] = { - [anon_sym_RBRACE] = ACTIONS(6371), + [sym_string] = STATE(3151), + [sym_simple_expansion] = STATE(3151), + [sym_string_expansion] = STATE(3151), + [sym_expansion] = STATE(3151), + [sym_command_substitution] = STATE(3151), + [sym_process_substitution] = STATE(3151), + [sym__special_characters] = ACTIONS(7433), + [anon_sym_DQUOTE] = ACTIONS(4866), + [anon_sym_DOLLAR] = ACTIONS(4868), + [sym_raw_string] = ACTIONS(7433), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4872), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4874), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LT_LPAREN] = ACTIONS(4878), + [anon_sym_GT_LPAREN] = ACTIONS(4878), [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7433), }, [2664] = { - [sym_concatenation] = STATE(2776), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2776), - [anon_sym_RBRACE] = ACTIONS(6373), - [anon_sym_EQ] = ACTIONS(6375), - [anon_sym_DASH] = ACTIONS(6375), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6375), - [anon_sym_COLON_QMARK] = ACTIONS(6375), - [anon_sym_COLON_DASH] = ACTIONS(6375), - [anon_sym_PERCENT] = ACTIONS(6375), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [aux_sym_concatenation_repeat1] = STATE(3152), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_done] = ACTIONS(1043), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), }, [2665] = { - [sym__simple_heredoc_body] = ACTIONS(4005), - [sym__heredoc_body_beginning] = ACTIONS(4005), - [sym_file_descriptor] = ACTIONS(4005), - [sym__concat] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_esac] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4007), - [anon_sym_SEMI_SEMI] = ACTIONS(4005), - [anon_sym_PIPE_AMP] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4005), - [anon_sym_PIPE_PIPE] = ACTIONS(4005), - [anon_sym_EQ_TILDE] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(4007), - [anon_sym_GT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_AMP_GT] = ACTIONS(4007), - [anon_sym_AMP_GT_GT] = ACTIONS(4005), - [anon_sym_LT_AMP] = ACTIONS(4005), - [anon_sym_GT_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_LT_LT_DASH] = ACTIONS(4005), - [anon_sym_LT_LT_LT] = ACTIONS(4005), - [sym__special_characters] = ACTIONS(4005), - [anon_sym_DQUOTE] = ACTIONS(4005), - [anon_sym_DOLLAR] = ACTIONS(4007), - [sym_raw_string] = ACTIONS(4005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4005), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4005), - [anon_sym_BQUOTE] = ACTIONS(4005), - [anon_sym_LT_LPAREN] = ACTIONS(4005), - [anon_sym_GT_LPAREN] = ACTIONS(4005), + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_done] = ACTIONS(1047), + [anon_sym_fi] = ACTIONS(1047), + [anon_sym_elif] = ACTIONS(1047), + [anon_sym_else] = ACTIONS(1047), + [anon_sym_esac] = ACTIONS(1047), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4007), - [anon_sym_LF] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4007), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), }, [2666] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6373), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(7435), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), }, [2667] = { - [sym_concatenation] = STATE(2777), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2777), - [anon_sym_RBRACE] = ACTIONS(6371), - [anon_sym_EQ] = ACTIONS(6379), - [anon_sym_DASH] = ACTIONS(6379), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6381), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6379), - [anon_sym_COLON_QMARK] = ACTIONS(6379), - [anon_sym_COLON_DASH] = ACTIONS(6379), - [anon_sym_PERCENT] = ACTIONS(6379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(7435), + [anon_sym_DOLLAR] = ACTIONS(7437), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), }, [2668] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6371), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_done] = ACTIONS(1081), + [anon_sym_fi] = ACTIONS(1081), + [anon_sym_elif] = ACTIONS(1081), + [anon_sym_else] = ACTIONS(1081), + [anon_sym_esac] = ACTIONS(1081), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), }, [2669] = { - [sym__simple_heredoc_body] = ACTIONS(4050), - [sym__heredoc_body_beginning] = ACTIONS(4050), - [sym_file_descriptor] = ACTIONS(4050), - [sym__concat] = ACTIONS(4050), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_esac] = ACTIONS(4052), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4050), - [anon_sym_PIPE_AMP] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [anon_sym_EQ_TILDE] = ACTIONS(4052), - [anon_sym_EQ_EQ] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_GT_GT] = ACTIONS(4050), - [anon_sym_AMP_GT] = ACTIONS(4052), - [anon_sym_AMP_GT_GT] = ACTIONS(4050), - [anon_sym_LT_AMP] = ACTIONS(4050), - [anon_sym_GT_AMP] = ACTIONS(4050), - [anon_sym_LT_LT] = ACTIONS(4052), - [anon_sym_LT_LT_DASH] = ACTIONS(4050), - [anon_sym_LT_LT_LT] = ACTIONS(4050), - [sym__special_characters] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), - [anon_sym_LT_LPAREN] = ACTIONS(4050), - [anon_sym_GT_LPAREN] = ACTIONS(4050), + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_done] = ACTIONS(1085), + [anon_sym_fi] = ACTIONS(1085), + [anon_sym_elif] = ACTIONS(1085), + [anon_sym_else] = ACTIONS(1085), + [anon_sym_esac] = ACTIONS(1085), + [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_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_LF] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1087), }, [2670] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6383), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_done] = ACTIONS(1089), + [anon_sym_fi] = ACTIONS(1089), + [anon_sym_elif] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1089), + [anon_sym_esac] = ACTIONS(1089), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), }, [2671] = { - [sym__simple_heredoc_body] = ACTIONS(4084), - [sym__heredoc_body_beginning] = ACTIONS(4084), - [sym_file_descriptor] = ACTIONS(4084), - [sym__concat] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym_esac] = ACTIONS(4086), - [anon_sym_PIPE] = ACTIONS(4086), - [anon_sym_SEMI_SEMI] = ACTIONS(4084), - [anon_sym_PIPE_AMP] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_EQ_TILDE] = ACTIONS(4086), - [anon_sym_EQ_EQ] = ACTIONS(4086), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_GT_GT] = ACTIONS(4084), - [anon_sym_AMP_GT] = ACTIONS(4086), - [anon_sym_AMP_GT_GT] = ACTIONS(4084), - [anon_sym_LT_AMP] = ACTIONS(4084), - [anon_sym_GT_AMP] = ACTIONS(4084), - [anon_sym_LT_LT] = ACTIONS(4086), - [anon_sym_LT_LT_DASH] = ACTIONS(4084), - [anon_sym_LT_LT_LT] = ACTIONS(4084), - [sym__special_characters] = ACTIONS(4084), - [anon_sym_DQUOTE] = ACTIONS(4084), - [anon_sym_DOLLAR] = ACTIONS(4086), - [sym_raw_string] = ACTIONS(4084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4084), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4084), - [anon_sym_BQUOTE] = ACTIONS(4084), - [anon_sym_LT_LPAREN] = ACTIONS(4084), - [anon_sym_GT_LPAREN] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(7439), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4086), - [anon_sym_LF] = ACTIONS(4084), - [anon_sym_AMP] = ACTIONS(4086), }, [2672] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6385), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), + [sym_subscript] = STATE(3158), + [sym_variable_name] = ACTIONS(7441), + [anon_sym_DASH] = ACTIONS(7443), + [anon_sym_DOLLAR] = ACTIONS(7443), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7445), + [anon_sym_STAR] = ACTIONS(7447), + [anon_sym_AT] = ACTIONS(7447), + [anon_sym_QMARK] = ACTIONS(7447), + [anon_sym_0] = ACTIONS(7445), + [anon_sym__] = ACTIONS(7445), }, [2673] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(6385), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_concatenation] = STATE(3161), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3161), + [anon_sym_RBRACE] = ACTIONS(7449), + [anon_sym_EQ] = ACTIONS(7451), + [anon_sym_DASH] = ACTIONS(7451), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7453), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7455), + [anon_sym_COLON] = ACTIONS(7451), + [anon_sym_COLON_QMARK] = ACTIONS(7451), + [anon_sym_COLON_DASH] = ACTIONS(7451), + [anon_sym_PERCENT] = ACTIONS(7451), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2674] = { - [sym__simple_heredoc_body] = ACTIONS(4090), - [sym__heredoc_body_beginning] = ACTIONS(4090), - [sym_file_descriptor] = ACTIONS(4090), - [sym__concat] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym_esac] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4092), - [anon_sym_SEMI_SEMI] = ACTIONS(4090), - [anon_sym_PIPE_AMP] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_EQ_TILDE] = ACTIONS(4092), - [anon_sym_EQ_EQ] = ACTIONS(4092), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4090), - [anon_sym_AMP_GT] = ACTIONS(4092), - [anon_sym_AMP_GT_GT] = ACTIONS(4090), - [anon_sym_LT_AMP] = ACTIONS(4090), - [anon_sym_GT_AMP] = ACTIONS(4090), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_LT_LT_DASH] = ACTIONS(4090), - [anon_sym_LT_LT_LT] = ACTIONS(4090), - [sym__special_characters] = ACTIONS(4090), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4092), - [sym_raw_string] = ACTIONS(4090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4090), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4090), - [anon_sym_BQUOTE] = ACTIONS(4090), - [anon_sym_LT_LPAREN] = ACTIONS(4090), - [anon_sym_GT_LPAREN] = ACTIONS(4090), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4092), - [anon_sym_LF] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4092), + [sym_concatenation] = STATE(3164), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3164), + [anon_sym_RBRACE] = ACTIONS(7457), + [anon_sym_EQ] = ACTIONS(7459), + [anon_sym_DASH] = ACTIONS(7459), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7461), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7463), + [anon_sym_COLON] = ACTIONS(7459), + [anon_sym_COLON_QMARK] = ACTIONS(7459), + [anon_sym_COLON_DASH] = ACTIONS(7459), + [anon_sym_PERCENT] = ACTIONS(7459), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2675] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6387), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(7465), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), }, [2676] = { - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_esac] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), + [anon_sym_BQUOTE] = ACTIONS(7465), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), }, [2677] = { - [aux_sym_concatenation_repeat1] = STATE(2677), - [sym__simple_heredoc_body] = ACTIONS(1730), - [sym__heredoc_body_beginning] = ACTIONS(1730), - [sym_file_descriptor] = ACTIONS(1730), - [sym__concat] = ACTIONS(6389), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_esac] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [anon_sym_PIPE_AMP] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_AMP_GT] = ACTIONS(1732), - [anon_sym_AMP_GT_GT] = ACTIONS(1730), - [anon_sym_LT_AMP] = ACTIONS(1730), - [anon_sym_GT_AMP] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_LT_LT_DASH] = ACTIONS(1730), - [anon_sym_LT_LT_LT] = ACTIONS(1730), + [anon_sym_RPAREN] = ACTIONS(7467), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), }, [2678] = { - [sym__simple_heredoc_body] = ACTIONS(1737), - [sym__heredoc_body_beginning] = ACTIONS(1737), - [sym_file_descriptor] = ACTIONS(1737), - [sym__concat] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_esac] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_SEMI_SEMI] = ACTIONS(1737), - [anon_sym_PIPE_AMP] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1737), - [anon_sym_AMP_GT] = ACTIONS(1739), - [anon_sym_AMP_GT_GT] = ACTIONS(1737), - [anon_sym_LT_AMP] = ACTIONS(1737), - [anon_sym_GT_AMP] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_LT_LT_DASH] = ACTIONS(1737), - [anon_sym_LT_LT_LT] = ACTIONS(1737), + [sym_file_descriptor] = ACTIONS(2536), + [sym_variable_name] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_LPAREN_LPAREN] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_done] = ACTIONS(7469), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2540), + [anon_sym_typeset] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_readonly] = ACTIONS(2540), + [anon_sym_local] = ACTIONS(2540), + [anon_sym_unset] = ACTIONS(2540), + [anon_sym_unsetenv] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_GT] = ACTIONS(2540), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_AMP_GT] = ACTIONS(2540), + [anon_sym_AMP_GT_GT] = ACTIONS(2536), + [anon_sym_LT_AMP] = ACTIONS(2536), + [anon_sym_GT_AMP] = ACTIONS(2536), + [sym__special_characters] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2536), + [anon_sym_DOLLAR] = ACTIONS(2540), + [sym_raw_string] = ACTIONS(2536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2536), + [anon_sym_BQUOTE] = ACTIONS(2536), + [anon_sym_LT_LPAREN] = ACTIONS(2536), + [anon_sym_GT_LPAREN] = ACTIONS(2536), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1739), + [sym_word] = ACTIONS(2540), }, [2679] = { - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(6392), - [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), + [sym__simple_heredoc_body] = ACTIONS(2646), + [sym__heredoc_body_beginning] = ACTIONS(2646), + [sym_file_descriptor] = ACTIONS(2646), + [sym_variable_name] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_fi] = ACTIONS(2648), + [anon_sym_elif] = ACTIONS(2648), + [anon_sym_else] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_SEMI_SEMI] = ACTIONS(2646), + [anon_sym_PIPE_AMP] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_PIPE_PIPE] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_GT] = ACTIONS(2648), + [anon_sym_GT_GT] = ACTIONS(2646), + [anon_sym_AMP_GT] = ACTIONS(2648), + [anon_sym_AMP_GT_GT] = ACTIONS(2646), + [anon_sym_LT_AMP] = ACTIONS(2646), + [anon_sym_GT_AMP] = ACTIONS(2646), + [anon_sym_LT_LT] = ACTIONS(2648), + [anon_sym_LT_LT_DASH] = ACTIONS(2646), + [anon_sym_LT_LT_LT] = ACTIONS(2646), + [sym__special_characters] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2648), + [sym_raw_string] = ACTIONS(2646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2646), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2646), + [anon_sym_BQUOTE] = ACTIONS(2646), + [anon_sym_LT_LPAREN] = ACTIONS(2646), + [anon_sym_GT_LPAREN] = ACTIONS(2646), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2648), + [anon_sym_LF] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2648), }, [2680] = { - [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(6394), - [sym__special_characters] = ACTIONS(6396), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(6398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), + [sym_concatenation] = STATE(1243), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1243), + [anon_sym_RPAREN] = ACTIONS(7471), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(6398), + [sym_word] = ACTIONS(1383), }, [2681] = { - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(6400), + [sym_string] = STATE(3168), + [sym_simple_expansion] = STATE(3168), + [sym_string_expansion] = STATE(3168), + [sym_expansion] = STATE(3168), + [sym_command_substitution] = STATE(3168), + [sym_process_substitution] = STATE(3168), + [sym__special_characters] = ACTIONS(7473), + [anon_sym_DQUOTE] = ACTIONS(4904), + [anon_sym_DOLLAR] = ACTIONS(4906), + [sym_raw_string] = ACTIONS(7473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4910), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4912), + [anon_sym_BQUOTE] = ACTIONS(4914), + [anon_sym_LT_LPAREN] = ACTIONS(4916), + [anon_sym_GT_LPAREN] = ACTIONS(4916), [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7473), }, [2682] = { - [sym_concatenation] = STATE(2789), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2789), - [anon_sym_RBRACE] = ACTIONS(6402), - [anon_sym_EQ] = ACTIONS(6404), - [anon_sym_DASH] = ACTIONS(6404), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6406), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(6408), - [anon_sym_COLON] = ACTIONS(6404), - [anon_sym_COLON_QMARK] = ACTIONS(6404), - [anon_sym_COLON_DASH] = ACTIONS(6404), - [anon_sym_PERCENT] = ACTIONS(6404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [aux_sym_concatenation_repeat1] = STATE(3169), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(6279), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_fi] = ACTIONS(1045), + [anon_sym_elif] = ACTIONS(1045), + [anon_sym_else] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), }, [2683] = { - [sym_concatenation] = STATE(2791), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2791), - [anon_sym_RBRACE] = ACTIONS(6394), - [anon_sym_EQ] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(6414), - [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(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [sym_variable_name] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_fi] = ACTIONS(1049), + [anon_sym_elif] = ACTIONS(1049), + [anon_sym_else] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), }, [2684] = { - [sym__simple_heredoc_body] = ACTIONS(1838), - [sym__heredoc_body_beginning] = ACTIONS(1838), - [sym_file_descriptor] = ACTIONS(1838), - [sym__concat] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_esac] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1840), - [anon_sym_SEMI_SEMI] = ACTIONS(1838), - [anon_sym_PIPE_AMP] = ACTIONS(1838), - [anon_sym_AMP_AMP] = ACTIONS(1838), - [anon_sym_PIPE_PIPE] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_GT_GT] = ACTIONS(1838), - [anon_sym_AMP_GT] = ACTIONS(1840), - [anon_sym_AMP_GT_GT] = ACTIONS(1838), - [anon_sym_LT_AMP] = ACTIONS(1838), - [anon_sym_GT_AMP] = ACTIONS(1838), - [anon_sym_LT_LT] = ACTIONS(1840), - [anon_sym_LT_LT_DASH] = ACTIONS(1838), - [anon_sym_LT_LT_LT] = ACTIONS(1838), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1840), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(7475), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), }, [2685] = { - [sym_concatenation] = STATE(2794), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2794), - [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), + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(7475), + [anon_sym_DOLLAR] = ACTIONS(7477), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), }, [2686] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6418), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [sym_variable_name] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_fi] = ACTIONS(1083), + [anon_sym_elif] = ACTIONS(1083), + [anon_sym_else] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), }, [2687] = { - [sym__simple_heredoc_body] = ACTIONS(1886), - [sym__heredoc_body_beginning] = ACTIONS(1886), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_esac] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1886), - [anon_sym_LT_LT_LT] = ACTIONS(1886), + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1085), + [sym_variable_name] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_fi] = ACTIONS(1087), + [anon_sym_elif] = ACTIONS(1087), + [anon_sym_else] = 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), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1888), + [sym_word] = ACTIONS(1087), + [anon_sym_LF] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1087), }, [2688] = { - [sym_concatenation] = STATE(2791), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2791), - [sym_regex] = ACTIONS(6424), - [anon_sym_RBRACE] = ACTIONS(6394), - [anon_sym_EQ] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [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(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [sym_variable_name] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_fi] = ACTIONS(1091), + [anon_sym_elif] = ACTIONS(1091), + [anon_sym_else] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), }, [2689] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6394), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(7479), + [sym_comment] = ACTIONS(57), }, [2690] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(6426), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym_subscript] = STATE(3175), + [sym_variable_name] = ACTIONS(7481), + [anon_sym_DASH] = ACTIONS(7483), + [anon_sym_DOLLAR] = ACTIONS(7483), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7485), + [anon_sym_STAR] = ACTIONS(7487), + [anon_sym_AT] = ACTIONS(7487), + [anon_sym_QMARK] = ACTIONS(7487), + [anon_sym_0] = ACTIONS(7485), + [anon_sym__] = ACTIONS(7485), }, [2691] = { - [sym__simple_heredoc_body] = ACTIONS(1894), - [sym__heredoc_body_beginning] = ACTIONS(1894), - [sym_file_descriptor] = ACTIONS(1894), - [sym__concat] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_esac] = ACTIONS(1894), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_SEMI_SEMI] = ACTIONS(1894), - [anon_sym_PIPE_AMP] = ACTIONS(1894), - [anon_sym_AMP_AMP] = ACTIONS(1894), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_GT_GT] = ACTIONS(1894), - [anon_sym_AMP_GT] = ACTIONS(1896), - [anon_sym_AMP_GT_GT] = ACTIONS(1894), - [anon_sym_LT_AMP] = ACTIONS(1894), - [anon_sym_GT_AMP] = ACTIONS(1894), - [anon_sym_LT_LT] = ACTIONS(1896), - [anon_sym_LT_LT_DASH] = ACTIONS(1894), - [anon_sym_LT_LT_LT] = ACTIONS(1894), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1896), + [sym_concatenation] = STATE(3178), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3178), + [anon_sym_RBRACE] = ACTIONS(7489), + [anon_sym_EQ] = ACTIONS(7491), + [anon_sym_DASH] = ACTIONS(7491), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7493), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7491), + [anon_sym_COLON_QMARK] = ACTIONS(7491), + [anon_sym_COLON_DASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7491), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2692] = { - [anon_sym_SEMI] = ACTIONS(6428), - [anon_sym_RPAREN] = ACTIONS(6426), - [anon_sym_SEMI_SEMI] = ACTIONS(6430), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6430), - [anon_sym_AMP] = ACTIONS(6430), + [sym_concatenation] = STATE(3181), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3181), + [anon_sym_RBRACE] = ACTIONS(7497), + [anon_sym_EQ] = ACTIONS(7499), + [anon_sym_DASH] = ACTIONS(7499), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7503), + [anon_sym_COLON] = ACTIONS(7499), + [anon_sym_COLON_QMARK] = ACTIONS(7499), + [anon_sym_COLON_DASH] = ACTIONS(7499), + [anon_sym_PERCENT] = ACTIONS(7499), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2693] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2799), - [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(6432), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6426), - [anon_sym_SEMI_SEMI] = ACTIONS(6434), - [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), + [anon_sym_RPAREN] = ACTIONS(7505), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6434), - [anon_sym_AMP] = ACTIONS(6432), }, [2694] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2799), - [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(6432), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6426), - [anon_sym_SEMI_SEMI] = ACTIONS(6434), - [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), + [anon_sym_BQUOTE] = ACTIONS(7505), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(6434), - [anon_sym_AMP] = ACTIONS(6432), }, [2695] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(6426), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(7507), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), }, [2696] = { - [anon_sym_SEMI] = ACTIONS(6436), - [anon_sym_SEMI_SEMI] = ACTIONS(6438), - [anon_sym_BQUOTE] = ACTIONS(6426), + [anon_sym_fi] = ACTIONS(7509), + [anon_sym_elif] = ACTIONS(7509), + [anon_sym_else] = ACTIONS(7509), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6438), - [anon_sym_AMP] = ACTIONS(6438), }, [2697] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2802), - [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(6440), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(6442), - [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(6426), + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_fi] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6442), - [anon_sym_AMP] = ACTIONS(6440), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), }, [2698] = { - [sym_file_redirect] = STATE(489), - [sym_heredoc_redirect] = STATE(489), - [sym_heredoc_body] = STATE(2802), - [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(6440), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(6442), - [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(6426), - [anon_sym_LT_LPAREN] = ACTIONS(339), - [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_concatenation] = STATE(3185), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(3185), + [anon_sym_RPAREN] = ACTIONS(7511), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(6442), - [anon_sym_AMP] = ACTIONS(6440), + [sym_word] = ACTIONS(1383), }, [2699] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(6444), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), + [aux_sym_concatenation_repeat1] = STATE(3187), + [sym__simple_heredoc_body] = ACTIONS(1393), + [sym__heredoc_body_beginning] = ACTIONS(1393), + [sym_file_descriptor] = ACTIONS(1393), + [sym__concat] = ACTIONS(7513), + [sym_variable_name] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_fi] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_SEMI_SEMI] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_AMP_GT] = ACTIONS(1397), + [anon_sym_AMP_GT_GT] = ACTIONS(1393), + [anon_sym_LT_AMP] = ACTIONS(1393), + [anon_sym_GT_AMP] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_LT_LT_DASH] = ACTIONS(1393), + [anon_sym_LT_LT_LT] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1397), + [sym_raw_string] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1393), + [anon_sym_GT_LPAREN] = ACTIONS(1393), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), + [sym_word] = ACTIONS(1397), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1397), }, [2700] = { - [sym__simple_heredoc_body] = ACTIONS(1928), - [sym__heredoc_body_beginning] = ACTIONS(1928), - [sym_file_descriptor] = ACTIONS(1928), - [sym__concat] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_esac] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_GT_GT] = ACTIONS(1928), - [anon_sym_AMP_GT] = ACTIONS(1930), - [anon_sym_AMP_GT_GT] = ACTIONS(1928), - [anon_sym_LT_AMP] = ACTIONS(1928), - [anon_sym_GT_AMP] = ACTIONS(1928), - [anon_sym_LT_LT] = ACTIONS(1930), - [anon_sym_LT_LT_DASH] = ACTIONS(1928), - [anon_sym_LT_LT_LT] = ACTIONS(1928), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(3190), + [anon_sym_DQUOTE] = ACTIONS(7515), + [anon_sym_DOLLAR] = ACTIONS(7517), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), }, [2701] = { - [anon_sym_SEMI] = ACTIONS(6446), - [anon_sym_RPAREN] = ACTIONS(6444), - [anon_sym_SEMI_SEMI] = ACTIONS(6448), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6448), - [anon_sym_AMP] = ACTIONS(6448), + [sym_string] = STATE(3192), + [anon_sym_DASH] = ACTIONS(7519), + [anon_sym_DQUOTE] = ACTIONS(6311), + [anon_sym_DOLLAR] = ACTIONS(7519), + [sym_raw_string] = ACTIONS(7521), + [anon_sym_POUND] = ACTIONS(7519), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7523), + [anon_sym_STAR] = ACTIONS(7525), + [anon_sym_AT] = ACTIONS(7525), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_0] = ACTIONS(7523), + [anon_sym__] = ACTIONS(7523), }, [2702] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2806), - [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(6450), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6444), - [anon_sym_SEMI_SEMI] = ACTIONS(6452), - [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), + [aux_sym_concatenation_repeat1] = STATE(3187), + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym__concat] = ACTIONS(7513), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_fi] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6452), - [anon_sym_AMP] = ACTIONS(6450), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), }, [2703] = { - [sym_file_redirect] = STATE(328), - [sym_heredoc_redirect] = STATE(328), - [sym_heredoc_body] = STATE(2806), - [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(6450), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(6444), - [anon_sym_SEMI_SEMI] = ACTIONS(6452), - [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(6452), - [anon_sym_AMP] = ACTIONS(6450), + [sym_subscript] = STATE(3197), + [sym_variable_name] = ACTIONS(7527), + [anon_sym_BANG] = ACTIONS(7529), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_DOLLAR] = ACTIONS(7531), + [anon_sym_POUND] = ACTIONS(7529), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7533), + [anon_sym_STAR] = ACTIONS(7535), + [anon_sym_AT] = ACTIONS(7535), + [anon_sym_QMARK] = ACTIONS(7535), + [anon_sym_0] = ACTIONS(7533), + [anon_sym__] = ACTIONS(7533), }, [2704] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(5886), - [anon_sym_DQUOTE] = ACTIONS(5888), - [anon_sym_DOLLAR] = ACTIONS(5886), - [sym_raw_string] = ACTIONS(5888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5888), - [anon_sym_BQUOTE] = ACTIONS(5888), - [anon_sym_LT_LPAREN] = ACTIONS(5888), - [anon_sym_GT_LPAREN] = ACTIONS(5888), + [sym__statements] = STATE(3198), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(5886), + [sym_word] = ACTIONS(173), }, [2705] = { - [sym__special_characters] = ACTIONS(5888), - [anon_sym_DQUOTE] = ACTIONS(5888), - [anon_sym_DOLLAR] = ACTIONS(5886), - [sym_raw_string] = ACTIONS(5888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5888), - [anon_sym_BQUOTE] = ACTIONS(5888), - [anon_sym_LT_LPAREN] = ACTIONS(5888), - [anon_sym_GT_LPAREN] = ACTIONS(5888), + [sym__statements] = STATE(3199), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(5888), + [sym_word] = ACTIONS(379), }, [2706] = { - [sym_file_redirect] = STATE(276), - [sym_heredoc_redirect] = STATE(276), - [sym_heredoc_body] = STATE(987), - [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(2058), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(6454), - [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__statements] = STATE(3200), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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), - [anon_sym_LF] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2058), + [sym_word] = ACTIONS(173), }, [2707] = { - [sym_file_redirect] = STATE(276), - [sym_heredoc_redirect] = STATE(276), - [sym_heredoc_body] = STATE(987), - [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(2058), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(6454), - [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_concatenation] = STATE(3201), + [sym_string] = STATE(3204), + [sym_array] = STATE(3201), + [sym_simple_expansion] = STATE(3204), + [sym_string_expansion] = STATE(3204), + [sym_expansion] = STATE(3204), + [sym_command_substitution] = STATE(3204), + [sym_process_substitution] = STATE(3204), + [sym__empty_value] = ACTIONS(7537), + [anon_sym_LPAREN] = ACTIONS(7539), + [sym__special_characters] = ACTIONS(7541), + [anon_sym_DQUOTE] = ACTIONS(4926), + [anon_sym_DOLLAR] = ACTIONS(4928), + [sym_raw_string] = ACTIONS(7543), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4932), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4934), + [anon_sym_BQUOTE] = ACTIONS(4936), + [anon_sym_LT_LPAREN] = ACTIONS(4938), + [anon_sym_GT_LPAREN] = ACTIONS(4938), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(341), - [anon_sym_LF] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2058), + [sym_word] = ACTIONS(7543), }, [2708] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(5896), - [anon_sym_DQUOTE] = ACTIONS(5898), - [anon_sym_DOLLAR] = ACTIONS(5896), - [sym_raw_string] = ACTIONS(5898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5898), - [anon_sym_BQUOTE] = ACTIONS(5898), - [anon_sym_LT_LPAREN] = ACTIONS(5898), - [anon_sym_GT_LPAREN] = ACTIONS(5898), + [sym_string] = STATE(3205), + [sym_simple_expansion] = STATE(3205), + [sym_string_expansion] = STATE(3205), + [sym_expansion] = STATE(3205), + [sym_command_substitution] = STATE(3205), + [sym_process_substitution] = STATE(3205), + [sym__special_characters] = ACTIONS(7545), + [anon_sym_DQUOTE] = ACTIONS(4926), + [anon_sym_DOLLAR] = ACTIONS(4928), + [sym_raw_string] = ACTIONS(7545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4932), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4934), + [anon_sym_BQUOTE] = ACTIONS(4936), + [anon_sym_LT_LPAREN] = ACTIONS(4938), + [anon_sym_GT_LPAREN] = ACTIONS(4938), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5896), + [sym_word] = ACTIONS(7545), }, [2709] = { - [sym__special_characters] = ACTIONS(5898), - [anon_sym_DQUOTE] = ACTIONS(5898), - [anon_sym_DOLLAR] = ACTIONS(5896), - [sym_raw_string] = ACTIONS(5898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5898), - [anon_sym_BQUOTE] = ACTIONS(5898), - [anon_sym_LT_LPAREN] = ACTIONS(5898), - [anon_sym_GT_LPAREN] = ACTIONS(5898), + [aux_sym_concatenation_repeat1] = STATE(3206), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(6327), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_fi] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5898), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1045), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), }, [2710] = { - [sym_file_redirect] = STATE(276), - [sym_heredoc_redirect] = STATE(276), - [sym_heredoc_body] = STATE(987), - [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(2058), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(6456), - [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__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [sym_variable_name] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_fi] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2058), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1049), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), }, [2711] = { - [sym_file_redirect] = STATE(276), - [sym_heredoc_redirect] = STATE(276), - [sym_heredoc_body] = STATE(987), - [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(2058), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(6456), - [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(2060), - [anon_sym_AMP] = ACTIONS(2058), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(7547), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), }, [2712] = { - [sym__simple_heredoc_body] = ACTIONS(2934), - [sym__heredoc_body_beginning] = ACTIONS(2934), - [sym_file_descriptor] = ACTIONS(2934), - [sym__concat] = ACTIONS(2934), - [sym_variable_name] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_esac] = ACTIONS(2936), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_SEMI_SEMI] = ACTIONS(2934), - [anon_sym_PIPE_AMP] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_AMP_GT] = ACTIONS(2936), - [anon_sym_AMP_GT_GT] = ACTIONS(2934), - [anon_sym_LT_AMP] = ACTIONS(2934), - [anon_sym_GT_AMP] = ACTIONS(2934), - [anon_sym_LT_LT] = ACTIONS(2936), - [anon_sym_LT_LT_DASH] = ACTIONS(2934), - [anon_sym_LT_LT_LT] = ACTIONS(2934), - [sym__special_characters] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_LT_LPAREN] = ACTIONS(2934), - [anon_sym_GT_LPAREN] = ACTIONS(2934), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2936), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(7547), + [anon_sym_DOLLAR] = ACTIONS(7549), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), }, [2713] = { - [sym__simple_heredoc_body] = ACTIONS(2948), - [sym__heredoc_body_beginning] = ACTIONS(2948), - [sym_file_descriptor] = ACTIONS(2948), - [sym__concat] = ACTIONS(2948), - [sym_variable_name] = ACTIONS(2948), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_esac] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_SEMI_SEMI] = ACTIONS(2948), - [anon_sym_PIPE_AMP] = ACTIONS(2948), - [anon_sym_AMP_AMP] = ACTIONS(2948), - [anon_sym_PIPE_PIPE] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_GT_GT] = ACTIONS(2948), - [anon_sym_AMP_GT] = ACTIONS(2950), - [anon_sym_AMP_GT_GT] = ACTIONS(2948), - [anon_sym_LT_AMP] = ACTIONS(2948), - [anon_sym_GT_AMP] = ACTIONS(2948), - [anon_sym_LT_LT] = ACTIONS(2950), - [anon_sym_LT_LT_DASH] = ACTIONS(2948), - [anon_sym_LT_LT_LT] = ACTIONS(2948), - [sym__special_characters] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2948), - [anon_sym_BQUOTE] = ACTIONS(2948), - [anon_sym_LT_LPAREN] = ACTIONS(2948), - [anon_sym_GT_LPAREN] = ACTIONS(2948), + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [sym_variable_name] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_fi] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1083), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), }, [2714] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6458), + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1085), + [sym_variable_name] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_fi] = 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), }, [2715] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6460), + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [sym_variable_name] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_fi] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1091), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), }, [2716] = { - [anon_sym_RBRACE] = ACTIONS(6460), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(7551), [sym_comment] = ACTIONS(57), }, [2717] = { - [sym_concatenation] = STATE(2813), - [sym_string] = STATE(2812), - [sym_simple_expansion] = STATE(2812), - [sym_string_expansion] = STATE(2812), - [sym_expansion] = STATE(2812), - [sym_command_substitution] = STATE(2812), - [sym_process_substitution] = STATE(2812), - [anon_sym_RBRACE] = ACTIONS(6460), - [sym__special_characters] = ACTIONS(6462), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(6464), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), + [sym_subscript] = STATE(3212), + [sym_variable_name] = ACTIONS(7553), + [anon_sym_DASH] = ACTIONS(7555), + [anon_sym_DOLLAR] = ACTIONS(7555), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(6464), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7557), + [anon_sym_STAR] = ACTIONS(7559), + [anon_sym_AT] = ACTIONS(7559), + [anon_sym_QMARK] = ACTIONS(7559), + [anon_sym_0] = ACTIONS(7557), + [anon_sym__] = ACTIONS(7557), }, [2718] = { - [sym__simple_heredoc_body] = ACTIONS(2984), - [sym__heredoc_body_beginning] = ACTIONS(2984), - [sym_file_descriptor] = ACTIONS(2984), - [sym__concat] = ACTIONS(2984), - [sym_variable_name] = ACTIONS(2984), - [anon_sym_SEMI] = ACTIONS(2986), - [anon_sym_esac] = ACTIONS(2986), - [anon_sym_PIPE] = ACTIONS(2986), - [anon_sym_SEMI_SEMI] = ACTIONS(2984), - [anon_sym_PIPE_AMP] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_GT] = ACTIONS(2986), - [anon_sym_GT_GT] = ACTIONS(2984), - [anon_sym_AMP_GT] = ACTIONS(2986), - [anon_sym_AMP_GT_GT] = ACTIONS(2984), - [anon_sym_LT_AMP] = ACTIONS(2984), - [anon_sym_GT_AMP] = ACTIONS(2984), - [anon_sym_LT_LT] = ACTIONS(2986), - [anon_sym_LT_LT_DASH] = ACTIONS(2984), - [anon_sym_LT_LT_LT] = ACTIONS(2984), - [sym__special_characters] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [sym_raw_string] = ACTIONS(2984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2984), - [anon_sym_BQUOTE] = ACTIONS(2984), - [anon_sym_LT_LPAREN] = ACTIONS(2984), - [anon_sym_GT_LPAREN] = ACTIONS(2984), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), + [sym_concatenation] = STATE(3215), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3215), + [anon_sym_RBRACE] = ACTIONS(7561), + [anon_sym_EQ] = ACTIONS(7563), + [anon_sym_DASH] = ACTIONS(7563), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7565), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_COLON] = ACTIONS(7563), + [anon_sym_COLON_QMARK] = ACTIONS(7563), + [anon_sym_COLON_DASH] = ACTIONS(7563), + [anon_sym_PERCENT] = ACTIONS(7563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2719] = { - [sym_concatenation] = STATE(2816), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2816), - [sym_regex] = ACTIONS(6466), - [anon_sym_RBRACE] = ACTIONS(6468), - [anon_sym_EQ] = ACTIONS(6470), - [anon_sym_DASH] = ACTIONS(6470), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6472), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6470), - [anon_sym_COLON_QMARK] = ACTIONS(6470), - [anon_sym_COLON_DASH] = ACTIONS(6470), - [anon_sym_PERCENT] = ACTIONS(6470), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(3218), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3218), + [anon_sym_RBRACE] = ACTIONS(7569), + [anon_sym_EQ] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7573), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7575), + [anon_sym_COLON] = ACTIONS(7571), + [anon_sym_COLON_QMARK] = ACTIONS(7571), + [anon_sym_COLON_DASH] = ACTIONS(7571), + [anon_sym_PERCENT] = ACTIONS(7571), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2720] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6468), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [anon_sym_RPAREN] = ACTIONS(7577), + [sym_comment] = ACTIONS(57), }, [2721] = { - [sym_concatenation] = STATE(2818), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2818), - [sym_regex] = ACTIONS(6474), - [anon_sym_RBRACE] = ACTIONS(6460), - [anon_sym_EQ] = ACTIONS(6476), - [anon_sym_DASH] = ACTIONS(6476), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6476), - [anon_sym_COLON_QMARK] = ACTIONS(6476), - [anon_sym_COLON_DASH] = ACTIONS(6476), - [anon_sym_PERCENT] = ACTIONS(6476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(7577), + [sym_comment] = ACTIONS(57), }, [2722] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6460), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [anon_sym_RPAREN] = ACTIONS(7579), + [sym_comment] = ACTIONS(57), }, [2723] = { - [sym_concatenation] = STATE(2820), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2820), - [anon_sym_RBRACE] = ACTIONS(6480), - [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), + [sym_variable_assignment] = STATE(2723), + [sym_subscript] = STATE(2118), + [sym_concatenation] = STATE(2723), + [sym_string] = STATE(2113), + [sym_simple_expansion] = STATE(2113), + [sym_string_expansion] = STATE(2113), + [sym_expansion] = STATE(2113), + [sym_command_substitution] = STATE(2113), + [sym_process_substitution] = STATE(2113), + [aux_sym_declaration_command_repeat1] = STATE(2723), + [sym__simple_heredoc_body] = ACTIONS(2149), + [sym__heredoc_body_beginning] = ACTIONS(2149), + [sym_file_descriptor] = ACTIONS(2149), + [sym_variable_name] = ACTIONS(7581), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_fi] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_SEMI_SEMI] = ACTIONS(2149), + [anon_sym_PIPE_AMP] = ACTIONS(2149), + [anon_sym_AMP_AMP] = ACTIONS(2149), + [anon_sym_PIPE_PIPE] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_GT] = ACTIONS(2154), + [anon_sym_GT_GT] = ACTIONS(2149), + [anon_sym_AMP_GT] = ACTIONS(2154), + [anon_sym_AMP_GT_GT] = ACTIONS(2149), + [anon_sym_LT_AMP] = ACTIONS(2149), + [anon_sym_GT_AMP] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2154), + [anon_sym_LT_LT_DASH] = ACTIONS(2149), + [anon_sym_LT_LT_LT] = ACTIONS(2149), + [sym__special_characters] = ACTIONS(7584), + [anon_sym_DQUOTE] = ACTIONS(7587), + [anon_sym_DOLLAR] = ACTIONS(7590), + [sym_raw_string] = ACTIONS(7593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7599), + [anon_sym_BQUOTE] = ACTIONS(7602), + [anon_sym_LT_LPAREN] = ACTIONS(7605), + [anon_sym_GT_LPAREN] = ACTIONS(7605), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7608), + [sym_word] = ACTIONS(7611), + [anon_sym_LF] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2154), }, [2724] = { - [sym__simple_heredoc_body] = ACTIONS(3040), - [sym__heredoc_body_beginning] = ACTIONS(3040), - [sym_file_descriptor] = ACTIONS(3040), - [sym__concat] = ACTIONS(3040), - [sym_variable_name] = ACTIONS(3040), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_esac] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_SEMI_SEMI] = ACTIONS(3040), - [anon_sym_PIPE_AMP] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_GT_GT] = ACTIONS(3040), - [anon_sym_AMP_GT] = ACTIONS(3042), - [anon_sym_AMP_GT_GT] = ACTIONS(3040), - [anon_sym_LT_AMP] = ACTIONS(3040), - [anon_sym_GT_AMP] = ACTIONS(3040), - [anon_sym_LT_LT] = ACTIONS(3042), - [anon_sym_LT_LT_DASH] = ACTIONS(3040), - [anon_sym_LT_LT_LT] = ACTIONS(3040), - [sym__special_characters] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [sym_raw_string] = ACTIONS(3040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), - [anon_sym_BQUOTE] = ACTIONS(3040), - [anon_sym_LT_LPAREN] = ACTIONS(3040), - [anon_sym_GT_LPAREN] = ACTIONS(3040), + [sym_string] = STATE(3221), + [sym_simple_expansion] = STATE(3221), + [sym_string_expansion] = STATE(3221), + [sym_expansion] = STATE(3221), + [sym_command_substitution] = STATE(3221), + [sym_process_substitution] = STATE(3221), + [sym__special_characters] = ACTIONS(7614), + [anon_sym_DQUOTE] = ACTIONS(4946), + [anon_sym_DOLLAR] = ACTIONS(4948), + [sym_raw_string] = ACTIONS(7614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4952), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4954), + [anon_sym_BQUOTE] = ACTIONS(4956), + [anon_sym_LT_LPAREN] = ACTIONS(4958), + [anon_sym_GT_LPAREN] = ACTIONS(4958), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3042), - [anon_sym_LF] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), + [sym_word] = ACTIONS(7614), }, [2725] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6480), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [aux_sym_concatenation_repeat1] = STATE(3222), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(6353), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_fi] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1045), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), }, [2726] = { - [sym_concatenation] = STATE(2818), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2818), - [anon_sym_RBRACE] = ACTIONS(6460), - [anon_sym_EQ] = ACTIONS(6476), - [anon_sym_DASH] = ACTIONS(6476), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6476), - [anon_sym_COLON_QMARK] = ACTIONS(6476), - [anon_sym_COLON_DASH] = ACTIONS(6476), - [anon_sym_PERCENT] = ACTIONS(6476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_fi] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1049), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), }, [2727] = { - [sym__simple_heredoc_body] = ACTIONS(3095), - [sym__heredoc_body_beginning] = ACTIONS(3095), - [sym_file_descriptor] = ACTIONS(3095), - [sym__concat] = ACTIONS(3095), - [sym_variable_name] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_esac] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_AMP_GT] = ACTIONS(3097), - [anon_sym_AMP_GT_GT] = ACTIONS(3095), - [anon_sym_LT_AMP] = ACTIONS(3095), - [anon_sym_GT_AMP] = ACTIONS(3095), - [anon_sym_LT_LT] = ACTIONS(3097), - [anon_sym_LT_LT_DASH] = ACTIONS(3095), - [anon_sym_LT_LT_LT] = ACTIONS(3095), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [sym_raw_string] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), - [anon_sym_BQUOTE] = ACTIONS(3095), - [anon_sym_LT_LPAREN] = ACTIONS(3095), - [anon_sym_GT_LPAREN] = ACTIONS(3095), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3097), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(7616), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), }, [2728] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6486), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(7616), + [anon_sym_DOLLAR] = ACTIONS(7618), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), }, [2729] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(6486), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_fi] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1083), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), }, [2730] = { - [anon_sym_SEMI] = ACTIONS(6488), - [anon_sym_RPAREN] = ACTIONS(6486), - [anon_sym_SEMI_SEMI] = ACTIONS(6490), + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_fi] = 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), - [anon_sym_LF] = ACTIONS(6490), - [anon_sym_AMP] = ACTIONS(6490), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1087), + [sym_word] = ACTIONS(1087), + [anon_sym_LF] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1087), }, [2731] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(6486), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_fi] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1091), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), }, [2732] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(6486), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(7620), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), }, [2733] = { - [anon_sym_SEMI] = ACTIONS(6492), - [anon_sym_SEMI_SEMI] = ACTIONS(6494), - [anon_sym_BQUOTE] = ACTIONS(6486), + [sym_subscript] = STATE(3228), + [sym_variable_name] = ACTIONS(7622), + [anon_sym_DASH] = ACTIONS(7624), + [anon_sym_DOLLAR] = ACTIONS(7624), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6494), - [anon_sym_AMP] = ACTIONS(6494), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7626), + [anon_sym_STAR] = ACTIONS(7628), + [anon_sym_AT] = ACTIONS(7628), + [anon_sym_QMARK] = ACTIONS(7628), + [anon_sym_0] = ACTIONS(7626), + [anon_sym__] = ACTIONS(7626), }, [2734] = { - [sym__simple_heredoc_body] = ACTIONS(3125), - [sym__heredoc_body_beginning] = ACTIONS(3125), - [sym_file_descriptor] = ACTIONS(3125), - [sym__concat] = ACTIONS(3125), - [sym_variable_name] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_esac] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_SEMI_SEMI] = ACTIONS(3125), - [anon_sym_PIPE_AMP] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_AMP_GT] = ACTIONS(3127), - [anon_sym_AMP_GT_GT] = ACTIONS(3125), - [anon_sym_LT_AMP] = ACTIONS(3125), - [anon_sym_GT_AMP] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_LT_LT_DASH] = ACTIONS(3125), - [anon_sym_LT_LT_LT] = ACTIONS(3125), - [sym__special_characters] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [anon_sym_DOLLAR] = ACTIONS(3127), - [sym_raw_string] = ACTIONS(3125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3125), - [anon_sym_BQUOTE] = ACTIONS(3125), - [anon_sym_LT_LPAREN] = ACTIONS(3125), - [anon_sym_GT_LPAREN] = ACTIONS(3125), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3127), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), + [sym_concatenation] = STATE(3231), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3231), + [anon_sym_RBRACE] = ACTIONS(7630), + [anon_sym_EQ] = ACTIONS(7632), + [anon_sym_DASH] = ACTIONS(7632), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7636), + [anon_sym_COLON] = ACTIONS(7632), + [anon_sym_COLON_QMARK] = ACTIONS(7632), + [anon_sym_COLON_DASH] = ACTIONS(7632), + [anon_sym_PERCENT] = ACTIONS(7632), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2735] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6496), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_concatenation] = STATE(3234), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3234), + [anon_sym_RBRACE] = ACTIONS(7638), + [anon_sym_EQ] = ACTIONS(7640), + [anon_sym_DASH] = ACTIONS(7640), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7644), + [anon_sym_COLON] = ACTIONS(7640), + [anon_sym_COLON_QMARK] = ACTIONS(7640), + [anon_sym_COLON_DASH] = ACTIONS(7640), + [anon_sym_PERCENT] = ACTIONS(7640), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2736] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(6496), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(7646), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), }, [2737] = { - [anon_sym_SEMI] = ACTIONS(6498), - [anon_sym_RPAREN] = ACTIONS(6496), - [anon_sym_SEMI_SEMI] = ACTIONS(6500), + [anon_sym_BQUOTE] = ACTIONS(7646), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6500), - [anon_sym_AMP] = ACTIONS(6500), }, [2738] = { - [sym__simple_heredoc_body] = ACTIONS(3258), - [sym__heredoc_body_beginning] = ACTIONS(3258), - [sym_file_descriptor] = ACTIONS(3258), - [sym_variable_name] = ACTIONS(3258), - [anon_sym_SEMI] = ACTIONS(3260), - [anon_sym_esac] = ACTIONS(3260), - [anon_sym_PIPE] = ACTIONS(3260), - [anon_sym_SEMI_SEMI] = ACTIONS(3258), - [anon_sym_PIPE_AMP] = ACTIONS(3258), - [anon_sym_AMP_AMP] = ACTIONS(3258), - [anon_sym_PIPE_PIPE] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_GT] = ACTIONS(3260), - [anon_sym_GT_GT] = ACTIONS(3258), - [anon_sym_AMP_GT] = ACTIONS(3260), - [anon_sym_AMP_GT_GT] = ACTIONS(3258), - [anon_sym_LT_AMP] = ACTIONS(3258), - [anon_sym_GT_AMP] = ACTIONS(3258), - [anon_sym_LT_LT] = ACTIONS(3260), - [anon_sym_LT_LT_DASH] = ACTIONS(3258), - [anon_sym_LT_LT_LT] = ACTIONS(3258), - [sym__special_characters] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_DOLLAR] = ACTIONS(3260), - [sym_raw_string] = ACTIONS(3258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3258), - [anon_sym_BQUOTE] = ACTIONS(3258), - [anon_sym_LT_LPAREN] = ACTIONS(3258), - [anon_sym_GT_LPAREN] = ACTIONS(3258), + [anon_sym_RPAREN] = ACTIONS(7648), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3260), - [sym_word] = ACTIONS(3260), - [anon_sym_LF] = ACTIONS(3258), - [anon_sym_AMP] = ACTIONS(3260), }, [2739] = { - [sym__simple_heredoc_body] = ACTIONS(3941), - [sym__heredoc_body_beginning] = ACTIONS(3941), - [sym_file_descriptor] = ACTIONS(3941), - [sym__concat] = ACTIONS(3941), - [sym_variable_name] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3943), - [anon_sym_esac] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [anon_sym_PIPE_AMP] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_GT_GT] = ACTIONS(3941), - [anon_sym_AMP_GT] = ACTIONS(3943), - [anon_sym_AMP_GT_GT] = ACTIONS(3941), - [anon_sym_LT_AMP] = ACTIONS(3941), - [anon_sym_GT_AMP] = ACTIONS(3941), - [anon_sym_LT_LT] = ACTIONS(3943), - [anon_sym_LT_LT_DASH] = ACTIONS(3941), - [anon_sym_LT_LT_LT] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3943), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [anon_sym_LT_LPAREN] = ACTIONS(3941), - [anon_sym_GT_LPAREN] = ACTIONS(3941), + [sym_concatenation] = STATE(2739), + [sym_string] = STATE(2123), + [sym_simple_expansion] = STATE(2123), + [sym_string_expansion] = STATE(2123), + [sym_expansion] = STATE(2123), + [sym_command_substitution] = STATE(2123), + [sym_process_substitution] = STATE(2123), + [aux_sym_unset_command_repeat1] = STATE(2739), + [sym__simple_heredoc_body] = ACTIONS(2222), + [sym__heredoc_body_beginning] = ACTIONS(2222), + [sym_file_descriptor] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_fi] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_SEMI_SEMI] = ACTIONS(2222), + [anon_sym_PIPE_AMP] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2222), + [anon_sym_AMP_GT] = ACTIONS(2224), + [anon_sym_AMP_GT_GT] = ACTIONS(2222), + [anon_sym_LT_AMP] = ACTIONS(2222), + [anon_sym_GT_AMP] = ACTIONS(2222), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_LT_LT_DASH] = ACTIONS(2222), + [anon_sym_LT_LT_LT] = ACTIONS(2222), + [sym__special_characters] = ACTIONS(7650), + [anon_sym_DQUOTE] = ACTIONS(7653), + [anon_sym_DOLLAR] = ACTIONS(7656), + [sym_raw_string] = ACTIONS(7659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7662), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7665), + [anon_sym_BQUOTE] = ACTIONS(7668), + [anon_sym_LT_LPAREN] = ACTIONS(7671), + [anon_sym_GT_LPAREN] = ACTIONS(7671), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3943), - [sym_word] = ACTIONS(3943), - [anon_sym_LF] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7674), + [sym_word] = ACTIONS(7677), + [anon_sym_LF] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2224), }, [2740] = { - [sym__simple_heredoc_body] = ACTIONS(3949), - [sym__heredoc_body_beginning] = ACTIONS(3949), - [sym_file_descriptor] = ACTIONS(3949), - [sym__concat] = ACTIONS(3949), - [sym_variable_name] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3951), - [anon_sym_esac] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_SEMI_SEMI] = ACTIONS(3949), - [anon_sym_PIPE_AMP] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3949), - [anon_sym_PIPE_PIPE] = ACTIONS(3949), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3949), - [anon_sym_AMP_GT] = ACTIONS(3951), - [anon_sym_AMP_GT_GT] = ACTIONS(3949), - [anon_sym_LT_AMP] = ACTIONS(3949), - [anon_sym_GT_AMP] = ACTIONS(3949), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_LT_LT_DASH] = ACTIONS(3949), - [anon_sym_LT_LT_LT] = ACTIONS(3949), - [sym__special_characters] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3951), - [sym_raw_string] = ACTIONS(3949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3949), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3949), - [anon_sym_BQUOTE] = ACTIONS(3949), - [anon_sym_LT_LPAREN] = ACTIONS(3949), - [anon_sym_GT_LPAREN] = ACTIONS(3949), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_fi] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3951), - [sym_word] = ACTIONS(3951), - [anon_sym_LF] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3951), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), }, [2741] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6502), + [aux_sym_concatenation_repeat1] = STATE(2741), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(7680), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_fi] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), }, [2742] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6504), + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_fi] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_EQ_TILDE] = ACTIONS(2301), + [anon_sym_EQ_EQ] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), }, [2743] = { - [anon_sym_RBRACE] = ACTIONS(6504), - [sym_comment] = ACTIONS(57), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(7683), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), }, [2744] = { - [sym_concatenation] = STATE(2829), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2829), - [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), + [sym_concatenation] = STATE(3241), + [sym_string] = STATE(3240), + [sym_simple_expansion] = STATE(3240), + [sym_string_expansion] = STATE(3240), + [sym_expansion] = STATE(3240), + [sym_command_substitution] = STATE(3240), + [sym_process_substitution] = STATE(3240), + [anon_sym_RBRACE] = ACTIONS(7685), + [sym__special_characters] = ACTIONS(7687), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(7689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7689), }, [2745] = { - [sym__simple_heredoc_body] = ACTIONS(4005), - [sym__heredoc_body_beginning] = ACTIONS(4005), - [sym_file_descriptor] = ACTIONS(4005), - [sym__concat] = ACTIONS(4005), - [sym_variable_name] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_esac] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4007), - [anon_sym_SEMI_SEMI] = ACTIONS(4005), - [anon_sym_PIPE_AMP] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4005), - [anon_sym_PIPE_PIPE] = ACTIONS(4005), - [anon_sym_LT] = ACTIONS(4007), - [anon_sym_GT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_AMP_GT] = ACTIONS(4007), - [anon_sym_AMP_GT_GT] = ACTIONS(4005), - [anon_sym_LT_AMP] = ACTIONS(4005), - [anon_sym_GT_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_LT_LT_DASH] = ACTIONS(4005), - [anon_sym_LT_LT_LT] = ACTIONS(4005), - [sym__special_characters] = ACTIONS(4005), - [anon_sym_DQUOTE] = ACTIONS(4005), - [anon_sym_DOLLAR] = ACTIONS(4007), - [sym_raw_string] = ACTIONS(4005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4005), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4005), - [anon_sym_BQUOTE] = ACTIONS(4005), - [anon_sym_LT_LPAREN] = ACTIONS(4005), - [anon_sym_GT_LPAREN] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(7691), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4007), - [sym_word] = ACTIONS(4007), - [anon_sym_LF] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4007), }, [2746] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6506), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(3245), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3245), + [anon_sym_RBRACE] = ACTIONS(7693), + [anon_sym_EQ] = ACTIONS(7695), + [anon_sym_DASH] = ACTIONS(7695), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7697), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7699), + [anon_sym_COLON] = ACTIONS(7695), + [anon_sym_COLON_QMARK] = ACTIONS(7695), + [anon_sym_COLON_DASH] = ACTIONS(7695), + [anon_sym_PERCENT] = ACTIONS(7695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2747] = { - [sym_concatenation] = STATE(2830), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2830), - [anon_sym_RBRACE] = ACTIONS(6504), - [anon_sym_EQ] = ACTIONS(6512), - [anon_sym_DASH] = ACTIONS(6512), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6514), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6512), - [anon_sym_COLON_QMARK] = ACTIONS(6512), - [anon_sym_COLON_DASH] = ACTIONS(6512), - [anon_sym_PERCENT] = ACTIONS(6512), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(3247), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3247), + [anon_sym_RBRACE] = ACTIONS(7685), + [anon_sym_EQ] = ACTIONS(7701), + [anon_sym_DASH] = ACTIONS(7701), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7705), + [anon_sym_COLON] = ACTIONS(7701), + [anon_sym_COLON_QMARK] = ACTIONS(7701), + [anon_sym_COLON_DASH] = ACTIONS(7701), + [anon_sym_PERCENT] = ACTIONS(7701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2748] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6504), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_fi] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_EQ_TILDE] = ACTIONS(2394), + [anon_sym_EQ_EQ] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), }, [2749] = { - [sym__simple_heredoc_body] = ACTIONS(4050), - [sym__heredoc_body_beginning] = ACTIONS(4050), - [sym_file_descriptor] = ACTIONS(4050), - [sym__concat] = ACTIONS(4050), - [sym_variable_name] = ACTIONS(4050), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_esac] = ACTIONS(4052), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4050), - [anon_sym_PIPE_AMP] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_GT_GT] = ACTIONS(4050), - [anon_sym_AMP_GT] = ACTIONS(4052), - [anon_sym_AMP_GT_GT] = ACTIONS(4050), - [anon_sym_LT_AMP] = ACTIONS(4050), - [anon_sym_GT_AMP] = ACTIONS(4050), - [anon_sym_LT_LT] = ACTIONS(4052), - [anon_sym_LT_LT_DASH] = ACTIONS(4050), - [anon_sym_LT_LT_LT] = ACTIONS(4050), - [sym__special_characters] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), - [anon_sym_LT_LPAREN] = ACTIONS(4050), - [anon_sym_GT_LPAREN] = ACTIONS(4050), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4052), - [sym_word] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), + [sym_concatenation] = STATE(3250), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3250), + [sym_regex] = ACTIONS(7707), + [anon_sym_RBRACE] = ACTIONS(7709), + [anon_sym_EQ] = ACTIONS(7711), + [anon_sym_DASH] = ACTIONS(7711), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7711), + [anon_sym_COLON_QMARK] = ACTIONS(7711), + [anon_sym_COLON_DASH] = ACTIONS(7711), + [anon_sym_PERCENT] = ACTIONS(7711), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2750] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6516), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7709), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2751] = { - [sym__simple_heredoc_body] = ACTIONS(4084), - [sym__heredoc_body_beginning] = ACTIONS(4084), - [sym_file_descriptor] = ACTIONS(4084), - [sym__concat] = ACTIONS(4084), - [sym_variable_name] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym_esac] = ACTIONS(4086), - [anon_sym_PIPE] = ACTIONS(4086), - [anon_sym_SEMI_SEMI] = ACTIONS(4084), - [anon_sym_PIPE_AMP] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_GT_GT] = ACTIONS(4084), - [anon_sym_AMP_GT] = ACTIONS(4086), - [anon_sym_AMP_GT_GT] = ACTIONS(4084), - [anon_sym_LT_AMP] = ACTIONS(4084), - [anon_sym_GT_AMP] = ACTIONS(4084), - [anon_sym_LT_LT] = ACTIONS(4086), - [anon_sym_LT_LT_DASH] = ACTIONS(4084), - [anon_sym_LT_LT_LT] = ACTIONS(4084), - [sym__special_characters] = ACTIONS(4084), - [anon_sym_DQUOTE] = ACTIONS(4084), - [anon_sym_DOLLAR] = ACTIONS(4086), - [sym_raw_string] = ACTIONS(4084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4084), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4084), - [anon_sym_BQUOTE] = ACTIONS(4084), - [anon_sym_LT_LPAREN] = ACTIONS(4084), - [anon_sym_GT_LPAREN] = ACTIONS(4084), + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_fi] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_EQ_TILDE] = ACTIONS(2442), + [anon_sym_EQ_EQ] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4086), - [sym_word] = ACTIONS(4086), - [anon_sym_LF] = ACTIONS(4084), - [anon_sym_AMP] = ACTIONS(4086), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), }, [2752] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6518), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_concatenation] = STATE(3247), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3247), + [sym_regex] = ACTIONS(7715), + [anon_sym_RBRACE] = ACTIONS(7685), + [anon_sym_EQ] = ACTIONS(7701), + [anon_sym_DASH] = ACTIONS(7701), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7701), + [anon_sym_COLON_QMARK] = ACTIONS(7701), + [anon_sym_COLON_DASH] = ACTIONS(7701), + [anon_sym_PERCENT] = ACTIONS(7701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2753] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(6518), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7685), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2754] = { - [sym__simple_heredoc_body] = ACTIONS(4090), - [sym__heredoc_body_beginning] = ACTIONS(4090), - [sym_file_descriptor] = ACTIONS(4090), - [sym__concat] = ACTIONS(4090), - [sym_variable_name] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym_esac] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4092), - [anon_sym_SEMI_SEMI] = ACTIONS(4090), - [anon_sym_PIPE_AMP] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4090), - [anon_sym_AMP_GT] = ACTIONS(4092), - [anon_sym_AMP_GT_GT] = ACTIONS(4090), - [anon_sym_LT_AMP] = ACTIONS(4090), - [anon_sym_GT_AMP] = ACTIONS(4090), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_LT_LT_DASH] = ACTIONS(4090), - [anon_sym_LT_LT_LT] = ACTIONS(4090), - [sym__special_characters] = ACTIONS(4090), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4092), - [sym_raw_string] = ACTIONS(4090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4090), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4090), - [anon_sym_BQUOTE] = ACTIONS(4090), - [anon_sym_LT_LPAREN] = ACTIONS(4090), - [anon_sym_GT_LPAREN] = ACTIONS(4090), + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_fi] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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_EQ_TILDE] = ACTIONS(2448), + [anon_sym_EQ_EQ] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4092), - [sym_word] = ACTIONS(4092), - [anon_sym_LF] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4092), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), }, [2755] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6520), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_fi] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_EQ_TILDE] = ACTIONS(2486), + [anon_sym_EQ_EQ] = ACTIONS(2486), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), }, [2756] = { - [sym__simple_heredoc_body] = ACTIONS(3941), - [sym__heredoc_body_beginning] = ACTIONS(3941), - [sym_file_descriptor] = ACTIONS(3941), - [sym__concat] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3943), - [anon_sym_esac] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [anon_sym_PIPE_AMP] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_GT_GT] = ACTIONS(3941), - [anon_sym_AMP_GT] = ACTIONS(3943), - [anon_sym_AMP_GT_GT] = ACTIONS(3941), - [anon_sym_LT_AMP] = ACTIONS(3941), - [anon_sym_GT_AMP] = ACTIONS(3941), - [anon_sym_LT_LT] = ACTIONS(3943), - [anon_sym_LT_LT_DASH] = ACTIONS(3941), - [anon_sym_LT_LT_LT] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3943), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [anon_sym_LT_LPAREN] = ACTIONS(3941), - [anon_sym_GT_LPAREN] = ACTIONS(3941), + [sym_concatenation] = STATE(1207), + [sym_string] = STATE(3253), + [sym_simple_expansion] = STATE(3253), + [sym_string_expansion] = STATE(3253), + [sym_expansion] = STATE(3253), + [sym_command_substitution] = STATE(3253), + [sym_process_substitution] = STATE(3253), + [sym__special_characters] = ACTIONS(7717), + [anon_sym_DQUOTE] = ACTIONS(4866), + [anon_sym_DOLLAR] = ACTIONS(4868), + [sym_raw_string] = ACTIONS(7719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4872), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4874), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LT_LPAREN] = ACTIONS(4878), + [anon_sym_GT_LPAREN] = ACTIONS(4878), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3943), - [sym_word] = ACTIONS(3943), - [anon_sym_LF] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), + [sym_word] = ACTIONS(7719), }, [2757] = { - [sym__simple_heredoc_body] = ACTIONS(3949), - [sym__heredoc_body_beginning] = ACTIONS(3949), - [sym_file_descriptor] = ACTIONS(3949), - [sym__concat] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3951), - [anon_sym_esac] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_SEMI_SEMI] = ACTIONS(3949), - [anon_sym_PIPE_AMP] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3949), - [anon_sym_PIPE_PIPE] = ACTIONS(3949), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3949), - [anon_sym_AMP_GT] = ACTIONS(3951), - [anon_sym_AMP_GT_GT] = ACTIONS(3949), - [anon_sym_LT_AMP] = ACTIONS(3949), - [anon_sym_GT_AMP] = ACTIONS(3949), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_LT_LT_DASH] = ACTIONS(3949), - [anon_sym_LT_LT_LT] = ACTIONS(3949), - [sym__special_characters] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3951), - [sym_raw_string] = ACTIONS(3949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3949), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3949), - [anon_sym_BQUOTE] = ACTIONS(3949), - [anon_sym_LT_LPAREN] = ACTIONS(3949), - [anon_sym_GT_LPAREN] = ACTIONS(3949), + [sym_file_redirect] = STATE(2151), + [sym_heredoc_redirect] = STATE(2151), + [sym_herestring_redirect] = STATE(2151), + [aux_sym_redirected_statement_repeat1] = STATE(2151), + [sym__simple_heredoc_body] = ACTIONS(2516), + [sym__heredoc_body_beginning] = ACTIONS(2516), + [sym_file_descriptor] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_fi] = ACTIONS(2516), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3951), - [sym_word] = ACTIONS(3951), - [anon_sym_LF] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3951), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), }, [2758] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6522), + [sym_file_redirect] = STATE(2151), + [sym_heredoc_redirect] = STATE(2151), + [sym_herestring_redirect] = STATE(2151), + [aux_sym_redirected_statement_repeat1] = STATE(2151), + [sym__simple_heredoc_body] = ACTIONS(2516), + [sym__heredoc_body_beginning] = ACTIONS(2516), + [sym_file_descriptor] = ACTIONS(2516), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_fi] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), }, [2759] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6524), + [sym_file_redirect] = STATE(2151), + [sym_heredoc_redirect] = STATE(2151), + [sym_herestring_redirect] = STATE(2151), + [aux_sym_redirected_statement_repeat1] = STATE(2151), + [sym__simple_heredoc_body] = ACTIONS(2520), + [sym__heredoc_body_beginning] = ACTIONS(2520), + [sym_file_descriptor] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_fi] = ACTIONS(2520), + [anon_sym_PIPE] = ACTIONS(4994), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2520), + [anon_sym_AMP_GT] = ACTIONS(2522), + [anon_sym_AMP_GT_GT] = ACTIONS(2520), + [anon_sym_LT_AMP] = ACTIONS(2520), + [anon_sym_GT_AMP] = ACTIONS(2520), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), }, [2760] = { - [anon_sym_RBRACE] = ACTIONS(6524), + [sym_file_redirect] = STATE(2151), + [sym_heredoc_redirect] = STATE(2151), + [sym_herestring_redirect] = STATE(2151), + [aux_sym_redirected_statement_repeat1] = STATE(2151), + [sym__simple_heredoc_body] = ACTIONS(2520), + [sym__heredoc_body_beginning] = ACTIONS(2520), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_fi] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(4994), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), }, [2761] = { - [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(6526), - [anon_sym_EQ] = ACTIONS(6528), - [anon_sym_DASH] = ACTIONS(6528), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6530), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [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(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [aux_sym_concatenation_repeat1] = STATE(3254), + [sym__simple_heredoc_body] = ACTIONS(1009), + [sym__heredoc_body_beginning] = ACTIONS(1009), + [sym_file_descriptor] = ACTIONS(1009), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_fi] = ACTIONS(1009), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_SEMI_SEMI] = ACTIONS(1009), + [anon_sym_PIPE_AMP] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1009), + [anon_sym_PIPE_PIPE] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_GT] = ACTIONS(1013), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(1013), + [anon_sym_AMP_GT_GT] = ACTIONS(1009), + [anon_sym_LT_AMP] = ACTIONS(1009), + [anon_sym_GT_AMP] = ACTIONS(1009), + [anon_sym_LT_LT] = ACTIONS(1013), + [anon_sym_LT_LT_DASH] = ACTIONS(1009), + [anon_sym_LT_LT_LT] = ACTIONS(1009), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1013), }, [2762] = { - [sym__simple_heredoc_body] = ACTIONS(4005), - [sym__heredoc_body_beginning] = ACTIONS(4005), - [sym_file_descriptor] = ACTIONS(4005), - [sym__concat] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_esac] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4007), - [anon_sym_SEMI_SEMI] = ACTIONS(4005), - [anon_sym_PIPE_AMP] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4005), - [anon_sym_PIPE_PIPE] = ACTIONS(4005), - [anon_sym_LT] = ACTIONS(4007), - [anon_sym_GT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_AMP_GT] = ACTIONS(4007), - [anon_sym_AMP_GT_GT] = ACTIONS(4005), - [anon_sym_LT_AMP] = ACTIONS(4005), - [anon_sym_GT_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_LT_LT_DASH] = ACTIONS(4005), - [anon_sym_LT_LT_LT] = ACTIONS(4005), - [sym__special_characters] = ACTIONS(4005), - [anon_sym_DQUOTE] = ACTIONS(4005), - [anon_sym_DOLLAR] = ACTIONS(4007), - [sym_raw_string] = ACTIONS(4005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4005), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4005), - [anon_sym_BQUOTE] = ACTIONS(4005), - [anon_sym_LT_LPAREN] = ACTIONS(4005), - [anon_sym_GT_LPAREN] = ACTIONS(4005), + [aux_sym_concatenation_repeat1] = STATE(3254), + [sym__simple_heredoc_body] = ACTIONS(1027), + [sym__heredoc_body_beginning] = ACTIONS(1027), + [sym_file_descriptor] = ACTIONS(1027), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_fi] = ACTIONS(1027), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_SEMI_SEMI] = ACTIONS(1027), + [anon_sym_PIPE_AMP] = ACTIONS(1027), + [anon_sym_AMP_AMP] = ACTIONS(1027), + [anon_sym_PIPE_PIPE] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_AMP_GT] = ACTIONS(1029), + [anon_sym_AMP_GT_GT] = ACTIONS(1027), + [anon_sym_LT_AMP] = ACTIONS(1027), + [anon_sym_GT_AMP] = ACTIONS(1027), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_LT_LT_DASH] = ACTIONS(1027), + [anon_sym_LT_LT_LT] = ACTIONS(1027), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4007), - [sym_word] = ACTIONS(4007), - [anon_sym_LF] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4007), + [anon_sym_LF] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), }, [2763] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6526), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [aux_sym_concatenation_repeat1] = STATE(3254), + [sym__simple_heredoc_body] = ACTIONS(2528), + [sym__heredoc_body_beginning] = ACTIONS(2528), + [sym_file_descriptor] = ACTIONS(2528), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_fi] = ACTIONS(2528), + [anon_sym_PIPE] = ACTIONS(2530), + [anon_sym_SEMI_SEMI] = ACTIONS(2528), + [anon_sym_PIPE_AMP] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_GT] = ACTIONS(2530), + [anon_sym_GT_GT] = ACTIONS(2528), + [anon_sym_AMP_GT] = ACTIONS(2530), + [anon_sym_AMP_GT_GT] = ACTIONS(2528), + [anon_sym_LT_AMP] = ACTIONS(2528), + [anon_sym_GT_AMP] = ACTIONS(2528), + [anon_sym_LT_LT] = ACTIONS(2530), + [anon_sym_LT_LT_DASH] = ACTIONS(2528), + [anon_sym_LT_LT_LT] = ACTIONS(2528), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2530), }, [2764] = { - [sym_concatenation] = STATE(2838), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2838), - [anon_sym_RBRACE] = ACTIONS(6524), - [anon_sym_EQ] = ACTIONS(6532), - [anon_sym_DASH] = ACTIONS(6532), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6534), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6532), - [anon_sym_COLON_QMARK] = ACTIONS(6532), - [anon_sym_COLON_DASH] = ACTIONS(6532), - [anon_sym_PERCENT] = ACTIONS(6532), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [aux_sym_concatenation_repeat1] = STATE(3254), + [sym__simple_heredoc_body] = ACTIONS(2532), + [sym__heredoc_body_beginning] = ACTIONS(2532), + [sym_file_descriptor] = ACTIONS(2532), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_fi] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_SEMI_SEMI] = ACTIONS(2532), + [anon_sym_PIPE_AMP] = ACTIONS(2532), + [anon_sym_AMP_AMP] = ACTIONS(2532), + [anon_sym_PIPE_PIPE] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_AMP_GT] = ACTIONS(2534), + [anon_sym_AMP_GT_GT] = ACTIONS(2532), + [anon_sym_LT_AMP] = ACTIONS(2532), + [anon_sym_GT_AMP] = ACTIONS(2532), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_LT_LT_DASH] = ACTIONS(2532), + [anon_sym_LT_LT_LT] = ACTIONS(2532), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2534), }, [2765] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6524), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_file_descriptor] = ACTIONS(2536), + [sym_variable_name] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_LPAREN_LPAREN] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_fi] = ACTIONS(6229), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2540), + [anon_sym_typeset] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_readonly] = ACTIONS(2540), + [anon_sym_local] = ACTIONS(2540), + [anon_sym_unset] = ACTIONS(2540), + [anon_sym_unsetenv] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_GT] = ACTIONS(2540), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_AMP_GT] = ACTIONS(2540), + [anon_sym_AMP_GT_GT] = ACTIONS(2536), + [anon_sym_LT_AMP] = ACTIONS(2536), + [anon_sym_GT_AMP] = ACTIONS(2536), + [sym__special_characters] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2536), + [anon_sym_DOLLAR] = ACTIONS(2540), + [sym_raw_string] = ACTIONS(2536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2536), + [anon_sym_BQUOTE] = ACTIONS(2536), + [anon_sym_LT_LPAREN] = ACTIONS(2536), + [anon_sym_GT_LPAREN] = ACTIONS(2536), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2540), }, [2766] = { - [sym__simple_heredoc_body] = ACTIONS(4050), - [sym__heredoc_body_beginning] = ACTIONS(4050), - [sym_file_descriptor] = ACTIONS(4050), - [sym__concat] = ACTIONS(4050), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_esac] = ACTIONS(4052), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4050), - [anon_sym_PIPE_AMP] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_GT_GT] = ACTIONS(4050), - [anon_sym_AMP_GT] = ACTIONS(4052), - [anon_sym_AMP_GT_GT] = ACTIONS(4050), - [anon_sym_LT_AMP] = ACTIONS(4050), - [anon_sym_GT_AMP] = ACTIONS(4050), - [anon_sym_LT_LT] = ACTIONS(4052), - [anon_sym_LT_LT_DASH] = ACTIONS(4050), - [anon_sym_LT_LT_LT] = ACTIONS(4050), - [sym__special_characters] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), - [anon_sym_LT_LPAREN] = ACTIONS(4050), - [anon_sym_GT_LPAREN] = ACTIONS(4050), + [sym_file_redirect] = STATE(2766), + [sym_heredoc_redirect] = STATE(2766), + [sym_herestring_redirect] = STATE(2766), + [aux_sym_redirected_statement_repeat1] = STATE(2766), + [sym__simple_heredoc_body] = ACTIONS(2542), + [sym__heredoc_body_beginning] = ACTIONS(2542), + [sym_file_descriptor] = ACTIONS(7721), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_fi] = ACTIONS(2542), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_SEMI_SEMI] = ACTIONS(2542), + [anon_sym_PIPE_AMP] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(7724), + [anon_sym_GT] = ACTIONS(7724), + [anon_sym_GT_GT] = ACTIONS(7727), + [anon_sym_AMP_GT] = ACTIONS(7724), + [anon_sym_AMP_GT_GT] = ACTIONS(7727), + [anon_sym_LT_AMP] = ACTIONS(7727), + [anon_sym_GT_AMP] = ACTIONS(7727), + [anon_sym_LT_LT] = ACTIONS(2555), + [anon_sym_LT_LT_DASH] = ACTIONS(2558), + [anon_sym_LT_LT_LT] = ACTIONS(7730), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4052), - [sym_word] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_LF] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2547), }, [2767] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6536), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_fi] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(2566), + [anon_sym_EQ_EQ] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2566), + [sym_raw_string] = ACTIONS(2564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2564), + [anon_sym_LT_LPAREN] = ACTIONS(2564), + [anon_sym_GT_LPAREN] = ACTIONS(2564), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2566), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), }, [2768] = { - [sym__simple_heredoc_body] = ACTIONS(4084), - [sym__heredoc_body_beginning] = ACTIONS(4084), - [sym_file_descriptor] = ACTIONS(4084), - [sym__concat] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym_esac] = ACTIONS(4086), - [anon_sym_PIPE] = ACTIONS(4086), - [anon_sym_SEMI_SEMI] = ACTIONS(4084), - [anon_sym_PIPE_AMP] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_GT_GT] = ACTIONS(4084), - [anon_sym_AMP_GT] = ACTIONS(4086), - [anon_sym_AMP_GT_GT] = ACTIONS(4084), - [anon_sym_LT_AMP] = ACTIONS(4084), - [anon_sym_GT_AMP] = ACTIONS(4084), - [anon_sym_LT_LT] = ACTIONS(4086), - [anon_sym_LT_LT_DASH] = ACTIONS(4084), - [anon_sym_LT_LT_LT] = ACTIONS(4084), - [sym__special_characters] = ACTIONS(4084), - [anon_sym_DQUOTE] = ACTIONS(4084), - [anon_sym_DOLLAR] = ACTIONS(4086), - [sym_raw_string] = ACTIONS(4084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4084), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4084), - [anon_sym_BQUOTE] = ACTIONS(4084), - [anon_sym_LT_LPAREN] = ACTIONS(4084), - [anon_sym_GT_LPAREN] = ACTIONS(4084), + [aux_sym_concatenation_repeat1] = STATE(2130), + [sym__simple_heredoc_body] = ACTIONS(2568), + [sym__heredoc_body_beginning] = ACTIONS(2568), + [sym_file_descriptor] = ACTIONS(2568), + [sym__concat] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_fi] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_SEMI_SEMI] = ACTIONS(2568), + [anon_sym_PIPE_AMP] = ACTIONS(2568), + [anon_sym_AMP_AMP] = ACTIONS(2568), + [anon_sym_PIPE_PIPE] = ACTIONS(2568), + [anon_sym_EQ_TILDE] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_AMP_GT] = ACTIONS(2570), + [anon_sym_AMP_GT_GT] = ACTIONS(2568), + [anon_sym_LT_AMP] = ACTIONS(2568), + [anon_sym_GT_AMP] = ACTIONS(2568), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_LT_LT_DASH] = ACTIONS(2568), + [anon_sym_LT_LT_LT] = ACTIONS(2568), + [sym__special_characters] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2568), + [anon_sym_DOLLAR] = ACTIONS(2570), + [sym_raw_string] = ACTIONS(2568), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2568), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2568), + [anon_sym_BQUOTE] = ACTIONS(2568), + [anon_sym_LT_LPAREN] = ACTIONS(2568), + [anon_sym_GT_LPAREN] = ACTIONS(2568), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4086), - [sym_word] = ACTIONS(4086), - [anon_sym_LF] = ACTIONS(4084), - [anon_sym_AMP] = ACTIONS(4086), + [sym_word] = ACTIONS(2570), + [anon_sym_LF] = ACTIONS(2568), + [anon_sym_AMP] = ACTIONS(2570), }, [2769] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6538), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), + [aux_sym_concatenation_repeat1] = STATE(2130), + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [sym__concat] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_fi] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(2566), + [anon_sym_EQ_EQ] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2566), + [sym_raw_string] = ACTIONS(2564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2564), + [anon_sym_LT_LPAREN] = ACTIONS(2564), + [anon_sym_GT_LPAREN] = ACTIONS(2564), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_word] = ACTIONS(2566), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), }, [2770] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(6538), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), + [sym_concatenation] = STATE(2770), + [sym_string] = STATE(2154), + [sym_simple_expansion] = STATE(2154), + [sym_string_expansion] = STATE(2154), + [sym_expansion] = STATE(2154), + [sym_command_substitution] = STATE(2154), + [sym_process_substitution] = STATE(2154), + [aux_sym_command_repeat2] = STATE(2770), + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_fi] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(7733), + [anon_sym_EQ_EQ] = ACTIONS(7733), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(7736), + [anon_sym_DQUOTE] = ACTIONS(7739), + [anon_sym_DOLLAR] = ACTIONS(7742), + [sym_raw_string] = ACTIONS(7745), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7751), + [anon_sym_BQUOTE] = ACTIONS(7754), + [anon_sym_LT_LPAREN] = ACTIONS(7757), + [anon_sym_GT_LPAREN] = ACTIONS(7757), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_word] = ACTIONS(7760), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), }, [2771] = { - [sym__simple_heredoc_body] = ACTIONS(4090), - [sym__heredoc_body_beginning] = ACTIONS(4090), - [sym_file_descriptor] = ACTIONS(4090), - [sym__concat] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym_esac] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4092), - [anon_sym_SEMI_SEMI] = ACTIONS(4090), - [anon_sym_PIPE_AMP] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4090), - [anon_sym_AMP_GT] = ACTIONS(4092), - [anon_sym_AMP_GT_GT] = ACTIONS(4090), - [anon_sym_LT_AMP] = ACTIONS(4090), - [anon_sym_GT_AMP] = ACTIONS(4090), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_LT_LT_DASH] = ACTIONS(4090), - [anon_sym_LT_LT_LT] = ACTIONS(4090), - [sym__special_characters] = ACTIONS(4090), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4092), - [sym_raw_string] = ACTIONS(4090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4090), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4090), - [anon_sym_BQUOTE] = ACTIONS(4090), - [anon_sym_LT_LPAREN] = ACTIONS(4090), - [anon_sym_GT_LPAREN] = ACTIONS(4090), + [sym_file_descriptor] = ACTIONS(1213), + [sym_variable_name] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_fi] = ACTIONS(6229), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_function] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_typeset] = ACTIONS(1217), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_local] = ACTIONS(1217), + [anon_sym_unset] = ACTIONS(1217), + [anon_sym_unsetenv] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_GT] = ACTIONS(1213), + [anon_sym_AMP_GT] = ACTIONS(1217), + [anon_sym_AMP_GT_GT] = ACTIONS(1213), + [anon_sym_LT_AMP] = ACTIONS(1213), + [anon_sym_GT_AMP] = ACTIONS(1213), + [sym__special_characters] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1217), + [sym_raw_string] = ACTIONS(1213), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1213), + [anon_sym_BQUOTE] = ACTIONS(1213), + [anon_sym_LT_LPAREN] = ACTIONS(1213), + [anon_sym_GT_LPAREN] = ACTIONS(1213), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4092), - [sym_word] = ACTIONS(4092), - [anon_sym_LF] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4092), + [sym_word] = ACTIONS(1217), }, [2772] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6540), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), + [anon_sym_SEMI] = ACTIONS(7763), + [anon_sym_fi] = ACTIONS(2538), + [anon_sym_SEMI_SEMI] = ACTIONS(7765), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [anon_sym_LF] = ACTIONS(7765), + [anon_sym_AMP] = ACTIONS(7765), }, [2773] = { - [sym__simple_heredoc_body] = ACTIONS(4725), - [sym__heredoc_body_beginning] = ACTIONS(4725), - [sym_file_descriptor] = ACTIONS(4725), - [sym__concat] = ACTIONS(4725), - [anon_sym_SEMI] = ACTIONS(4727), - [anon_sym_esac] = ACTIONS(4727), - [anon_sym_PIPE] = ACTIONS(4727), - [anon_sym_SEMI_SEMI] = ACTIONS(4725), - [anon_sym_PIPE_AMP] = ACTIONS(4725), - [anon_sym_AMP_AMP] = ACTIONS(4725), - [anon_sym_PIPE_PIPE] = ACTIONS(4725), - [anon_sym_EQ_TILDE] = ACTIONS(4727), - [anon_sym_EQ_EQ] = ACTIONS(4727), - [anon_sym_LT] = ACTIONS(4727), - [anon_sym_GT] = ACTIONS(4727), - [anon_sym_GT_GT] = ACTIONS(4725), - [anon_sym_AMP_GT] = ACTIONS(4727), - [anon_sym_AMP_GT_GT] = ACTIONS(4725), - [anon_sym_LT_AMP] = ACTIONS(4725), - [anon_sym_GT_AMP] = ACTIONS(4725), - [anon_sym_LT_LT] = ACTIONS(4727), - [anon_sym_LT_LT_DASH] = ACTIONS(4725), - [anon_sym_LT_LT_LT] = ACTIONS(4725), - [sym__special_characters] = ACTIONS(4725), - [anon_sym_DQUOTE] = ACTIONS(4725), - [anon_sym_DOLLAR] = ACTIONS(4727), - [sym_raw_string] = ACTIONS(4725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4725), - [anon_sym_BQUOTE] = ACTIONS(4725), - [anon_sym_LT_LPAREN] = ACTIONS(4725), - [anon_sym_GT_LPAREN] = ACTIONS(4725), + [sym_concatenation] = STATE(2770), + [sym_string] = STATE(2154), + [sym_simple_expansion] = STATE(2154), + [sym_string_expansion] = STATE(2154), + [sym_expansion] = STATE(2154), + [sym_command_substitution] = STATE(2154), + [sym_process_substitution] = STATE(2154), + [aux_sym_command_repeat2] = STATE(2770), + [sym__simple_heredoc_body] = ACTIONS(2628), + [sym__heredoc_body_beginning] = ACTIONS(2628), + [sym_file_descriptor] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym_fi] = ACTIONS(2630), + [anon_sym_PIPE] = ACTIONS(2630), + [anon_sym_SEMI_SEMI] = ACTIONS(2628), + [anon_sym_PIPE_AMP] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_EQ_TILDE] = ACTIONS(5008), + [anon_sym_EQ_EQ] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_GT] = ACTIONS(2630), + [anon_sym_GT_GT] = ACTIONS(2628), + [anon_sym_AMP_GT] = ACTIONS(2630), + [anon_sym_AMP_GT_GT] = ACTIONS(2628), + [anon_sym_LT_AMP] = ACTIONS(2628), + [anon_sym_GT_AMP] = ACTIONS(2628), + [anon_sym_LT_LT] = ACTIONS(2630), + [anon_sym_LT_LT_DASH] = ACTIONS(2628), + [anon_sym_LT_LT_LT] = ACTIONS(2628), + [sym__special_characters] = ACTIONS(5010), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(5012), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3301), + [anon_sym_BQUOTE] = ACTIONS(3303), + [anon_sym_LT_LPAREN] = ACTIONS(3305), + [anon_sym_GT_LPAREN] = ACTIONS(3305), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4727), - [anon_sym_LF] = ACTIONS(4725), - [anon_sym_AMP] = ACTIONS(4727), + [sym_word] = ACTIONS(5014), + [anon_sym_LF] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2630), }, [2774] = { - [sym__simple_heredoc_body] = ACTIONS(4729), - [sym__heredoc_body_beginning] = ACTIONS(4729), - [sym_file_descriptor] = ACTIONS(4729), - [sym__concat] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_esac] = ACTIONS(4731), - [anon_sym_PIPE] = ACTIONS(4731), - [anon_sym_SEMI_SEMI] = ACTIONS(4729), - [anon_sym_PIPE_AMP] = ACTIONS(4729), - [anon_sym_AMP_AMP] = ACTIONS(4729), - [anon_sym_PIPE_PIPE] = ACTIONS(4729), - [anon_sym_EQ_TILDE] = ACTIONS(4731), - [anon_sym_EQ_EQ] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4731), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_GT_GT] = ACTIONS(4729), - [anon_sym_AMP_GT] = ACTIONS(4731), - [anon_sym_AMP_GT_GT] = ACTIONS(4729), - [anon_sym_LT_AMP] = ACTIONS(4729), - [anon_sym_GT_AMP] = ACTIONS(4729), - [anon_sym_LT_LT] = ACTIONS(4731), - [anon_sym_LT_LT_DASH] = ACTIONS(4729), - [anon_sym_LT_LT_LT] = ACTIONS(4729), - [sym__special_characters] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(4729), - [anon_sym_DOLLAR] = ACTIONS(4731), - [sym_raw_string] = ACTIONS(4729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4729), - [anon_sym_BQUOTE] = ACTIONS(4729), - [anon_sym_LT_LPAREN] = ACTIONS(4729), - [anon_sym_GT_LPAREN] = ACTIONS(4729), + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_fi] = ACTIONS(1373), + [anon_sym_elif] = ACTIONS(1373), + [anon_sym_else] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4731), - [anon_sym_LF] = ACTIONS(4729), - [anon_sym_AMP] = ACTIONS(4731), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1373), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), }, [2775] = { - [sym__simple_heredoc_body] = ACTIONS(4733), - [sym__heredoc_body_beginning] = ACTIONS(4733), - [sym_file_descriptor] = ACTIONS(4733), - [sym__concat] = ACTIONS(4733), - [anon_sym_SEMI] = ACTIONS(4735), - [anon_sym_esac] = ACTIONS(4735), - [anon_sym_PIPE] = ACTIONS(4735), - [anon_sym_SEMI_SEMI] = ACTIONS(4733), - [anon_sym_PIPE_AMP] = ACTIONS(4733), - [anon_sym_AMP_AMP] = ACTIONS(4733), - [anon_sym_PIPE_PIPE] = ACTIONS(4733), - [anon_sym_EQ_TILDE] = ACTIONS(4735), - [anon_sym_EQ_EQ] = ACTIONS(4735), - [anon_sym_LT] = ACTIONS(4735), - [anon_sym_GT] = ACTIONS(4735), - [anon_sym_GT_GT] = ACTIONS(4733), - [anon_sym_AMP_GT] = ACTIONS(4735), - [anon_sym_AMP_GT_GT] = ACTIONS(4733), - [anon_sym_LT_AMP] = ACTIONS(4733), - [anon_sym_GT_AMP] = ACTIONS(4733), - [anon_sym_LT_LT] = ACTIONS(4735), - [anon_sym_LT_LT_DASH] = ACTIONS(4733), - [anon_sym_LT_LT_LT] = ACTIONS(4733), - [sym__special_characters] = ACTIONS(4733), - [anon_sym_DQUOTE] = ACTIONS(4733), - [anon_sym_DOLLAR] = ACTIONS(4735), - [sym_raw_string] = ACTIONS(4733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4733), - [anon_sym_BQUOTE] = ACTIONS(4733), - [anon_sym_LT_LPAREN] = ACTIONS(4733), - [anon_sym_GT_LPAREN] = ACTIONS(4733), + [sym_concatenation] = STATE(3257), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(3257), + [anon_sym_RPAREN] = ACTIONS(7767), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4735), - [anon_sym_LF] = ACTIONS(4733), - [anon_sym_AMP] = ACTIONS(4735), + [sym_word] = ACTIONS(1383), }, [2776] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6542), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [aux_sym_concatenation_repeat1] = STATE(2161), + [sym__simple_heredoc_body] = ACTIONS(1393), + [sym__heredoc_body_beginning] = ACTIONS(1393), + [sym_file_descriptor] = ACTIONS(1393), + [sym__concat] = ACTIONS(5020), + [sym_variable_name] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_fi] = ACTIONS(1397), + [anon_sym_elif] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_SEMI_SEMI] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_AMP_GT] = ACTIONS(1397), + [anon_sym_AMP_GT_GT] = ACTIONS(1393), + [anon_sym_LT_AMP] = ACTIONS(1393), + [anon_sym_GT_AMP] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_LT_LT_DASH] = ACTIONS(1393), + [anon_sym_LT_LT_LT] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1397), + [sym_raw_string] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1393), + [anon_sym_GT_LPAREN] = ACTIONS(1393), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1397), + [sym_word] = ACTIONS(1397), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1397), }, [2777] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6544), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [aux_sym_concatenation_repeat1] = STATE(2161), + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym__concat] = ACTIONS(5020), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_fi] = ACTIONS(1373), + [anon_sym_elif] = ACTIONS(1373), + [anon_sym_else] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1373), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), }, [2778] = { - [sym__simple_heredoc_body] = ACTIONS(4769), - [sym__heredoc_body_beginning] = ACTIONS(4769), - [sym_file_descriptor] = ACTIONS(4769), - [sym__concat] = ACTIONS(4769), - [anon_sym_SEMI] = ACTIONS(4771), - [anon_sym_esac] = ACTIONS(4771), - [anon_sym_PIPE] = ACTIONS(4771), - [anon_sym_SEMI_SEMI] = ACTIONS(4769), - [anon_sym_PIPE_AMP] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_EQ_TILDE] = ACTIONS(4771), - [anon_sym_EQ_EQ] = ACTIONS(4771), - [anon_sym_LT] = ACTIONS(4771), - [anon_sym_GT] = ACTIONS(4771), - [anon_sym_GT_GT] = ACTIONS(4769), - [anon_sym_AMP_GT] = ACTIONS(4771), - [anon_sym_AMP_GT_GT] = ACTIONS(4769), - [anon_sym_LT_AMP] = ACTIONS(4769), - [anon_sym_GT_AMP] = ACTIONS(4769), - [anon_sym_LT_LT] = ACTIONS(4771), - [anon_sym_LT_LT_DASH] = ACTIONS(4769), - [anon_sym_LT_LT_LT] = ACTIONS(4769), - [sym__special_characters] = ACTIONS(4769), - [anon_sym_DQUOTE] = ACTIONS(4769), - [anon_sym_DOLLAR] = ACTIONS(4771), - [sym_raw_string] = ACTIONS(4769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4769), - [anon_sym_BQUOTE] = ACTIONS(4769), - [anon_sym_LT_LPAREN] = ACTIONS(4769), - [anon_sym_GT_LPAREN] = ACTIONS(4769), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_fi] = ACTIONS(2294), + [anon_sym_elif] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4771), - [anon_sym_LF] = ACTIONS(4769), - [anon_sym_AMP] = ACTIONS(4771), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), }, [2779] = { - [sym__simple_heredoc_body] = ACTIONS(4789), - [sym__heredoc_body_beginning] = ACTIONS(4789), - [sym_file_descriptor] = ACTIONS(4789), - [sym__concat] = ACTIONS(4789), - [anon_sym_SEMI] = ACTIONS(4791), - [anon_sym_esac] = ACTIONS(4791), - [anon_sym_PIPE] = ACTIONS(4791), - [anon_sym_SEMI_SEMI] = ACTIONS(4789), - [anon_sym_PIPE_AMP] = ACTIONS(4789), - [anon_sym_AMP_AMP] = ACTIONS(4789), - [anon_sym_PIPE_PIPE] = ACTIONS(4789), - [anon_sym_EQ_TILDE] = ACTIONS(4791), - [anon_sym_EQ_EQ] = ACTIONS(4791), - [anon_sym_LT] = ACTIONS(4791), - [anon_sym_GT] = ACTIONS(4791), - [anon_sym_GT_GT] = ACTIONS(4789), - [anon_sym_AMP_GT] = ACTIONS(4791), - [anon_sym_AMP_GT_GT] = ACTIONS(4789), - [anon_sym_LT_AMP] = ACTIONS(4789), - [anon_sym_GT_AMP] = ACTIONS(4789), - [anon_sym_LT_LT] = ACTIONS(4791), - [anon_sym_LT_LT_DASH] = ACTIONS(4789), - [anon_sym_LT_LT_LT] = ACTIONS(4789), - [sym__special_characters] = ACTIONS(4789), - [anon_sym_DQUOTE] = ACTIONS(4789), - [anon_sym_DOLLAR] = ACTIONS(4791), - [sym_raw_string] = ACTIONS(4789), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4789), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4789), - [anon_sym_BQUOTE] = ACTIONS(4789), - [anon_sym_LT_LPAREN] = ACTIONS(4789), - [anon_sym_GT_LPAREN] = ACTIONS(4789), + [aux_sym_concatenation_repeat1] = STATE(2779), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(7769), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_fi] = ACTIONS(2294), + [anon_sym_elif] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4791), - [anon_sym_LF] = ACTIONS(4789), - [anon_sym_AMP] = ACTIONS(4791), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), }, [2780] = { - [sym__simple_heredoc_body] = ACTIONS(4793), - [sym__heredoc_body_beginning] = ACTIONS(4793), - [sym_file_descriptor] = ACTIONS(4793), - [sym__concat] = ACTIONS(4793), - [anon_sym_SEMI] = ACTIONS(4795), - [anon_sym_esac] = ACTIONS(4795), - [anon_sym_PIPE] = ACTIONS(4795), - [anon_sym_SEMI_SEMI] = ACTIONS(4793), - [anon_sym_PIPE_AMP] = ACTIONS(4793), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_EQ_TILDE] = ACTIONS(4795), - [anon_sym_EQ_EQ] = ACTIONS(4795), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_GT_GT] = ACTIONS(4793), - [anon_sym_AMP_GT] = ACTIONS(4795), - [anon_sym_AMP_GT_GT] = ACTIONS(4793), - [anon_sym_LT_AMP] = ACTIONS(4793), - [anon_sym_GT_AMP] = ACTIONS(4793), - [anon_sym_LT_LT] = ACTIONS(4795), - [anon_sym_LT_LT_DASH] = ACTIONS(4793), - [anon_sym_LT_LT_LT] = ACTIONS(4793), - [sym__special_characters] = ACTIONS(4793), - [anon_sym_DQUOTE] = ACTIONS(4793), - [anon_sym_DOLLAR] = ACTIONS(4795), - [sym_raw_string] = ACTIONS(4793), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4793), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4793), - [anon_sym_BQUOTE] = ACTIONS(4793), - [anon_sym_LT_LPAREN] = ACTIONS(4793), - [anon_sym_GT_LPAREN] = ACTIONS(4793), + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [sym_variable_name] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_fi] = ACTIONS(2301), + [anon_sym_elif] = ACTIONS(2301), + [anon_sym_else] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4795), - [anon_sym_LF] = ACTIONS(4793), - [anon_sym_AMP] = ACTIONS(4795), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2301), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), }, [2781] = { - [sym__simple_heredoc_body] = ACTIONS(2934), - [sym__heredoc_body_beginning] = ACTIONS(2934), - [sym_file_descriptor] = ACTIONS(2934), - [sym__concat] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_esac] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_SEMI_SEMI] = ACTIONS(2934), - [anon_sym_PIPE_AMP] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_AMP_GT] = ACTIONS(2936), - [anon_sym_AMP_GT_GT] = ACTIONS(2934), - [anon_sym_LT_AMP] = ACTIONS(2934), - [anon_sym_GT_AMP] = ACTIONS(2934), - [anon_sym_LT_LT] = ACTIONS(2936), - [anon_sym_LT_LT_DASH] = ACTIONS(2934), - [anon_sym_LT_LT_LT] = ACTIONS(2934), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(7772), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), }, [2782] = { - [sym__simple_heredoc_body] = ACTIONS(2948), - [sym__heredoc_body_beginning] = ACTIONS(2948), - [sym_file_descriptor] = ACTIONS(2948), - [sym__concat] = ACTIONS(2948), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_esac] = ACTIONS(2948), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_SEMI_SEMI] = ACTIONS(2948), - [anon_sym_PIPE_AMP] = ACTIONS(2948), - [anon_sym_AMP_AMP] = ACTIONS(2948), - [anon_sym_PIPE_PIPE] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_GT_GT] = ACTIONS(2948), - [anon_sym_AMP_GT] = ACTIONS(2950), - [anon_sym_AMP_GT_GT] = ACTIONS(2948), - [anon_sym_LT_AMP] = ACTIONS(2948), - [anon_sym_GT_AMP] = ACTIONS(2948), - [anon_sym_LT_LT] = ACTIONS(2950), - [anon_sym_LT_LT_DASH] = ACTIONS(2948), - [anon_sym_LT_LT_LT] = ACTIONS(2948), + [sym_concatenation] = STATE(3262), + [sym_string] = STATE(3261), + [sym_simple_expansion] = STATE(3261), + [sym_string_expansion] = STATE(3261), + [sym_expansion] = STATE(3261), + [sym_command_substitution] = STATE(3261), + [sym_process_substitution] = STATE(3261), + [anon_sym_RBRACE] = ACTIONS(7774), + [sym__special_characters] = ACTIONS(7776), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(7778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), + [sym_word] = ACTIONS(7778), }, [2783] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6546), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(7780), [sym_comment] = ACTIONS(57), }, [2784] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6548), - [sym_comment] = ACTIONS(57), + [sym_concatenation] = STATE(3266), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3266), + [anon_sym_RBRACE] = ACTIONS(7782), + [anon_sym_EQ] = ACTIONS(7784), + [anon_sym_DASH] = ACTIONS(7784), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7786), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7788), + [anon_sym_COLON] = ACTIONS(7784), + [anon_sym_COLON_QMARK] = ACTIONS(7784), + [anon_sym_COLON_DASH] = ACTIONS(7784), + [anon_sym_PERCENT] = ACTIONS(7784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2785] = { - [anon_sym_RBRACE] = ACTIONS(6548), - [sym_comment] = ACTIONS(57), + [sym_concatenation] = STATE(3268), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3268), + [anon_sym_RBRACE] = ACTIONS(7774), + [anon_sym_EQ] = ACTIONS(7790), + [anon_sym_DASH] = ACTIONS(7790), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7794), + [anon_sym_COLON] = ACTIONS(7790), + [anon_sym_COLON_QMARK] = ACTIONS(7790), + [anon_sym_COLON_DASH] = ACTIONS(7790), + [anon_sym_PERCENT] = ACTIONS(7790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2786] = { - [sym_concatenation] = STATE(2848), - [sym_string] = STATE(2847), - [sym_simple_expansion] = STATE(2847), - [sym_string_expansion] = STATE(2847), - [sym_expansion] = STATE(2847), - [sym_command_substitution] = STATE(2847), - [sym_process_substitution] = STATE(2847), - [anon_sym_RBRACE] = ACTIONS(6548), - [sym__special_characters] = ACTIONS(6550), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_raw_string] = ACTIONS(6552), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1818), - [anon_sym_LT_LPAREN] = ACTIONS(1820), - [anon_sym_GT_LPAREN] = ACTIONS(1820), + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [sym_variable_name] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_fi] = ACTIONS(2394), + [anon_sym_elif] = ACTIONS(2394), + [anon_sym_else] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(6552), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2394), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), }, [2787] = { - [sym__simple_heredoc_body] = ACTIONS(2984), - [sym__heredoc_body_beginning] = ACTIONS(2984), - [sym_file_descriptor] = ACTIONS(2984), - [sym__concat] = ACTIONS(2984), - [anon_sym_SEMI] = ACTIONS(2986), - [anon_sym_esac] = ACTIONS(2984), - [anon_sym_PIPE] = ACTIONS(2986), - [anon_sym_SEMI_SEMI] = ACTIONS(2984), - [anon_sym_PIPE_AMP] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_GT] = ACTIONS(2986), - [anon_sym_GT_GT] = ACTIONS(2984), - [anon_sym_AMP_GT] = ACTIONS(2986), - [anon_sym_AMP_GT_GT] = ACTIONS(2984), - [anon_sym_LT_AMP] = ACTIONS(2984), - [anon_sym_GT_AMP] = ACTIONS(2984), - [anon_sym_LT_LT] = ACTIONS(2986), - [anon_sym_LT_LT_DASH] = ACTIONS(2984), - [anon_sym_LT_LT_LT] = ACTIONS(2984), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), + [sym_concatenation] = STATE(3271), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3271), + [sym_regex] = ACTIONS(7796), + [anon_sym_RBRACE] = ACTIONS(7798), + [anon_sym_EQ] = ACTIONS(7800), + [anon_sym_DASH] = ACTIONS(7800), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7800), + [anon_sym_COLON_QMARK] = ACTIONS(7800), + [anon_sym_COLON_DASH] = ACTIONS(7800), + [anon_sym_PERCENT] = ACTIONS(7800), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2788] = { - [sym_concatenation] = STATE(2851), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2851), - [sym_regex] = ACTIONS(6554), - [anon_sym_RBRACE] = ACTIONS(6556), - [anon_sym_EQ] = ACTIONS(6558), - [anon_sym_DASH] = ACTIONS(6558), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6560), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6558), - [anon_sym_COLON_QMARK] = ACTIONS(6558), - [anon_sym_COLON_DASH] = ACTIONS(6558), - [anon_sym_PERCENT] = ACTIONS(6558), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7798), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2789] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6556), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [sym_variable_name] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_fi] = ACTIONS(2442), + [anon_sym_elif] = ACTIONS(2442), + [anon_sym_else] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2442), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), }, [2790] = { - [sym_concatenation] = STATE(2853), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2853), - [sym_regex] = ACTIONS(6562), - [anon_sym_RBRACE] = ACTIONS(6548), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_DASH] = ACTIONS(6564), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6566), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6564), - [anon_sym_COLON_QMARK] = ACTIONS(6564), - [anon_sym_COLON_DASH] = ACTIONS(6564), - [anon_sym_PERCENT] = ACTIONS(6564), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(3268), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3268), + [sym_regex] = ACTIONS(7804), + [anon_sym_RBRACE] = ACTIONS(7774), + [anon_sym_EQ] = ACTIONS(7790), + [anon_sym_DASH] = ACTIONS(7790), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7790), + [anon_sym_COLON_QMARK] = ACTIONS(7790), + [anon_sym_COLON_DASH] = ACTIONS(7790), + [anon_sym_PERCENT] = ACTIONS(7790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2791] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6548), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7774), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2792] = { - [sym_concatenation] = STATE(2855), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2855), - [anon_sym_RBRACE] = ACTIONS(6568), - [anon_sym_EQ] = ACTIONS(6570), - [anon_sym_DASH] = ACTIONS(6570), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [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(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [sym_variable_name] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_fi] = ACTIONS(2448), + [anon_sym_elif] = ACTIONS(2448), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2448), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), }, [2793] = { - [sym__simple_heredoc_body] = ACTIONS(3040), - [sym__heredoc_body_beginning] = ACTIONS(3040), - [sym_file_descriptor] = ACTIONS(3040), - [sym__concat] = ACTIONS(3040), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_esac] = ACTIONS(3040), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_SEMI_SEMI] = ACTIONS(3040), - [anon_sym_PIPE_AMP] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_GT_GT] = ACTIONS(3040), - [anon_sym_AMP_GT] = ACTIONS(3042), - [anon_sym_AMP_GT_GT] = ACTIONS(3040), - [anon_sym_LT_AMP] = ACTIONS(3040), - [anon_sym_GT_AMP] = ACTIONS(3040), - [anon_sym_LT_LT] = ACTIONS(3042), - [anon_sym_LT_LT_DASH] = ACTIONS(3040), - [anon_sym_LT_LT_LT] = ACTIONS(3040), + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [sym_variable_name] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_fi] = ACTIONS(2486), + [anon_sym_elif] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2486), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), }, [2794] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6568), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_fi] = ACTIONS(2294), + [anon_sym_elif] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), }, [2795] = { - [sym_concatenation] = STATE(2853), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2853), - [anon_sym_RBRACE] = ACTIONS(6548), - [anon_sym_EQ] = ACTIONS(6564), - [anon_sym_DASH] = ACTIONS(6564), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6566), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6564), - [anon_sym_COLON_QMARK] = ACTIONS(6564), - [anon_sym_COLON_DASH] = ACTIONS(6564), - [anon_sym_PERCENT] = ACTIONS(6564), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [aux_sym_concatenation_repeat1] = STATE(2795), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(7806), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_fi] = ACTIONS(2294), + [anon_sym_elif] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), }, [2796] = { - [sym__simple_heredoc_body] = ACTIONS(3095), - [sym__heredoc_body_beginning] = ACTIONS(3095), - [sym_file_descriptor] = ACTIONS(3095), - [sym__concat] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_esac] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_AMP_GT] = ACTIONS(3097), - [anon_sym_AMP_GT_GT] = ACTIONS(3095), - [anon_sym_LT_AMP] = ACTIONS(3095), - [anon_sym_GT_AMP] = ACTIONS(3095), - [anon_sym_LT_LT] = ACTIONS(3097), - [anon_sym_LT_LT_DASH] = ACTIONS(3095), - [anon_sym_LT_LT_LT] = ACTIONS(3095), + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_fi] = ACTIONS(2301), + [anon_sym_elif] = ACTIONS(2301), + [anon_sym_else] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2301), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), }, [2797] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6574), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(7809), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), }, [2798] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(6574), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym_concatenation] = STATE(3277), + [sym_string] = STATE(3276), + [sym_simple_expansion] = STATE(3276), + [sym_string_expansion] = STATE(3276), + [sym_expansion] = STATE(3276), + [sym_command_substitution] = STATE(3276), + [sym_process_substitution] = STATE(3276), + [anon_sym_RBRACE] = ACTIONS(7811), + [sym__special_characters] = ACTIONS(7813), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(7815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), + [sym_word] = ACTIONS(7815), }, [2799] = { - [anon_sym_SEMI] = ACTIONS(6576), - [anon_sym_RPAREN] = ACTIONS(6574), - [anon_sym_SEMI_SEMI] = ACTIONS(6578), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(7817), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6578), - [anon_sym_AMP] = ACTIONS(6578), }, [2800] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(6574), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_concatenation] = STATE(3281), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3281), + [anon_sym_RBRACE] = ACTIONS(7819), + [anon_sym_EQ] = ACTIONS(7821), + [anon_sym_DASH] = ACTIONS(7821), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7825), + [anon_sym_COLON] = ACTIONS(7821), + [anon_sym_COLON_QMARK] = ACTIONS(7821), + [anon_sym_COLON_DASH] = ACTIONS(7821), + [anon_sym_PERCENT] = ACTIONS(7821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2801] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(6574), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), + [sym_concatenation] = STATE(3283), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3283), + [anon_sym_RBRACE] = ACTIONS(7811), + [anon_sym_EQ] = ACTIONS(7827), + [anon_sym_DASH] = ACTIONS(7827), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(7831), + [anon_sym_COLON] = ACTIONS(7827), + [anon_sym_COLON_QMARK] = ACTIONS(7827), + [anon_sym_COLON_DASH] = ACTIONS(7827), + [anon_sym_PERCENT] = ACTIONS(7827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2802] = { - [anon_sym_SEMI] = ACTIONS(6580), - [anon_sym_SEMI_SEMI] = ACTIONS(6582), - [anon_sym_BQUOTE] = ACTIONS(6574), + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_fi] = ACTIONS(2394), + [anon_sym_elif] = ACTIONS(2394), + [anon_sym_else] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6582), - [anon_sym_AMP] = ACTIONS(6582), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2394), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), }, [2803] = { - [sym__simple_heredoc_body] = ACTIONS(3125), - [sym__heredoc_body_beginning] = ACTIONS(3125), - [sym_file_descriptor] = ACTIONS(3125), - [sym__concat] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_esac] = ACTIONS(3125), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_SEMI_SEMI] = ACTIONS(3125), - [anon_sym_PIPE_AMP] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_AMP_GT] = ACTIONS(3127), - [anon_sym_AMP_GT_GT] = ACTIONS(3125), - [anon_sym_LT_AMP] = ACTIONS(3125), - [anon_sym_GT_AMP] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_LT_LT_DASH] = ACTIONS(3125), - [anon_sym_LT_LT_LT] = ACTIONS(3125), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), + [sym_concatenation] = STATE(3286), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3286), + [sym_regex] = ACTIONS(7833), + [anon_sym_RBRACE] = ACTIONS(7835), + [anon_sym_EQ] = ACTIONS(7837), + [anon_sym_DASH] = ACTIONS(7837), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7837), + [anon_sym_COLON_QMARK] = ACTIONS(7837), + [anon_sym_COLON_DASH] = ACTIONS(7837), + [anon_sym_PERCENT] = ACTIONS(7837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2804] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6584), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7835), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2805] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(6584), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(935), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_fi] = ACTIONS(2442), + [anon_sym_elif] = ACTIONS(2442), + [anon_sym_else] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(935), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2442), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), }, [2806] = { - [anon_sym_SEMI] = ACTIONS(6586), - [anon_sym_RPAREN] = ACTIONS(6584), - [anon_sym_SEMI_SEMI] = ACTIONS(6588), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(6588), - [anon_sym_AMP] = ACTIONS(6588), + [sym_concatenation] = STATE(3283), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3283), + [sym_regex] = ACTIONS(7841), + [anon_sym_RBRACE] = ACTIONS(7811), + [anon_sym_EQ] = ACTIONS(7827), + [anon_sym_DASH] = ACTIONS(7827), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7827), + [anon_sym_COLON_QMARK] = ACTIONS(7827), + [anon_sym_COLON_DASH] = ACTIONS(7827), + [anon_sym_PERCENT] = ACTIONS(7827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2807] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(6196), - [anon_sym_DQUOTE] = ACTIONS(6198), - [anon_sym_DOLLAR] = ACTIONS(6196), - [sym_raw_string] = ACTIONS(6198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6198), - [anon_sym_BQUOTE] = ACTIONS(6198), - [anon_sym_LT_LPAREN] = ACTIONS(6198), - [anon_sym_GT_LPAREN] = ACTIONS(6198), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(6196), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7811), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2808] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_for] = ACTIONS(935), - [anon_sym_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_while] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_case] = ACTIONS(935), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_function] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_typeset] = ACTIONS(935), - [anon_sym_export] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_local] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [anon_sym_unsetenv] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym__special_characters] = ACTIONS(6202), - [anon_sym_DQUOTE] = ACTIONS(6204), - [anon_sym_DOLLAR] = ACTIONS(6202), - [sym_raw_string] = ACTIONS(6204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6204), - [anon_sym_BQUOTE] = ACTIONS(6204), - [anon_sym_LT_LPAREN] = ACTIONS(6204), - [anon_sym_GT_LPAREN] = ACTIONS(6204), + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_fi] = ACTIONS(2448), + [anon_sym_elif] = ACTIONS(2448), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(6202), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2448), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), }, [2809] = { - [sym__simple_heredoc_body] = ACTIONS(3941), - [sym__heredoc_body_beginning] = ACTIONS(3941), - [sym_file_descriptor] = ACTIONS(3941), - [sym__concat] = ACTIONS(3941), - [sym_variable_name] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3943), - [anon_sym_esac] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [anon_sym_PIPE_AMP] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_GT_GT] = ACTIONS(3941), - [anon_sym_AMP_GT] = ACTIONS(3943), - [anon_sym_AMP_GT_GT] = ACTIONS(3941), - [anon_sym_LT_AMP] = ACTIONS(3941), - [anon_sym_GT_AMP] = ACTIONS(3941), - [anon_sym_LT_LT] = ACTIONS(3943), - [anon_sym_LT_LT_DASH] = ACTIONS(3941), - [anon_sym_LT_LT_LT] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3943), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [anon_sym_LT_LPAREN] = ACTIONS(3941), - [anon_sym_GT_LPAREN] = ACTIONS(3941), + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_fi] = ACTIONS(2486), + [anon_sym_elif] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3943), - [anon_sym_LF] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2486), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), }, [2810] = { - [sym__simple_heredoc_body] = ACTIONS(3949), - [sym__heredoc_body_beginning] = ACTIONS(3949), - [sym_file_descriptor] = ACTIONS(3949), - [sym__concat] = ACTIONS(3949), - [sym_variable_name] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3951), - [anon_sym_esac] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_SEMI_SEMI] = ACTIONS(3949), - [anon_sym_PIPE_AMP] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3949), - [anon_sym_PIPE_PIPE] = ACTIONS(3949), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3949), - [anon_sym_AMP_GT] = ACTIONS(3951), - [anon_sym_AMP_GT_GT] = ACTIONS(3949), - [anon_sym_LT_AMP] = ACTIONS(3949), - [anon_sym_GT_AMP] = ACTIONS(3949), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_LT_LT_DASH] = ACTIONS(3949), - [anon_sym_LT_LT_LT] = ACTIONS(3949), - [sym__special_characters] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3951), - [sym_raw_string] = ACTIONS(3949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3949), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3949), - [anon_sym_BQUOTE] = ACTIONS(3949), - [anon_sym_LT_LPAREN] = ACTIONS(3949), - [anon_sym_GT_LPAREN] = ACTIONS(3949), + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_fi] = ACTIONS(4003), + [anon_sym_elif] = ACTIONS(4003), + [anon_sym_else] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_EQ_TILDE] = ACTIONS(4003), + [anon_sym_EQ_EQ] = ACTIONS(4003), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(3951), - [anon_sym_LF] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3951), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), }, [2811] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6590), + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_fi] = ACTIONS(4017), + [anon_sym_elif] = ACTIONS(4017), + [anon_sym_else] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_EQ_TILDE] = ACTIONS(4017), + [anon_sym_EQ_EQ] = ACTIONS(4017), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), }, [2812] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6592), + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7843), [sym_comment] = ACTIONS(57), }, [2813] = { - [anon_sym_RBRACE] = ACTIONS(6592), + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(7845), [sym_comment] = ACTIONS(57), }, [2814] = { - [sym_concatenation] = STATE(2864), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2864), - [anon_sym_RBRACE] = ACTIONS(6594), - [anon_sym_EQ] = ACTIONS(6596), - [anon_sym_DASH] = ACTIONS(6596), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6596), - [anon_sym_COLON_QMARK] = ACTIONS(6596), - [anon_sym_COLON_DASH] = ACTIONS(6596), - [anon_sym_PERCENT] = ACTIONS(6596), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(7845), + [sym_comment] = ACTIONS(57), }, [2815] = { - [sym__simple_heredoc_body] = ACTIONS(4005), - [sym__heredoc_body_beginning] = ACTIONS(4005), - [sym_file_descriptor] = ACTIONS(4005), - [sym__concat] = ACTIONS(4005), - [sym_variable_name] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_esac] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4007), - [anon_sym_SEMI_SEMI] = ACTIONS(4005), - [anon_sym_PIPE_AMP] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4005), - [anon_sym_PIPE_PIPE] = ACTIONS(4005), - [anon_sym_LT] = ACTIONS(4007), - [anon_sym_GT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_AMP_GT] = ACTIONS(4007), - [anon_sym_AMP_GT_GT] = ACTIONS(4005), - [anon_sym_LT_AMP] = ACTIONS(4005), - [anon_sym_GT_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_LT_LT_DASH] = ACTIONS(4005), - [anon_sym_LT_LT_LT] = ACTIONS(4005), - [sym__special_characters] = ACTIONS(4005), - [anon_sym_DQUOTE] = ACTIONS(4005), - [anon_sym_DOLLAR] = ACTIONS(4007), - [sym_raw_string] = ACTIONS(4005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4005), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4005), - [anon_sym_BQUOTE] = ACTIONS(4005), - [anon_sym_LT_LPAREN] = ACTIONS(4005), - [anon_sym_GT_LPAREN] = ACTIONS(4005), + [sym_concatenation] = STATE(3292), + [sym_string] = STATE(3291), + [sym_simple_expansion] = STATE(3291), + [sym_string_expansion] = STATE(3291), + [sym_expansion] = STATE(3291), + [sym_command_substitution] = STATE(3291), + [sym_process_substitution] = STATE(3291), + [anon_sym_RBRACE] = ACTIONS(7845), + [sym__special_characters] = ACTIONS(7847), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(7849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4007), - [anon_sym_LF] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4007), + [sym_word] = ACTIONS(7849), }, [2816] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6594), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_fi] = ACTIONS(4053), + [anon_sym_elif] = ACTIONS(4053), + [anon_sym_else] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_EQ_TILDE] = ACTIONS(4053), + [anon_sym_EQ_EQ] = ACTIONS(4053), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), }, [2817] = { - [sym_concatenation] = STATE(2865), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2865), - [anon_sym_RBRACE] = ACTIONS(6592), - [anon_sym_EQ] = ACTIONS(6600), - [anon_sym_DASH] = ACTIONS(6600), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6600), - [anon_sym_COLON_QMARK] = ACTIONS(6600), - [anon_sym_COLON_DASH] = ACTIONS(6600), - [anon_sym_PERCENT] = ACTIONS(6600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(3295), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3295), + [sym_regex] = ACTIONS(7851), + [anon_sym_RBRACE] = ACTIONS(7853), + [anon_sym_EQ] = ACTIONS(7855), + [anon_sym_DASH] = ACTIONS(7855), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7855), + [anon_sym_COLON_QMARK] = ACTIONS(7855), + [anon_sym_COLON_DASH] = ACTIONS(7855), + [anon_sym_PERCENT] = ACTIONS(7855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2818] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6592), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7853), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2819] = { - [sym__simple_heredoc_body] = ACTIONS(4050), - [sym__heredoc_body_beginning] = ACTIONS(4050), - [sym_file_descriptor] = ACTIONS(4050), - [sym__concat] = ACTIONS(4050), - [sym_variable_name] = ACTIONS(4050), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_esac] = ACTIONS(4052), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4050), - [anon_sym_PIPE_AMP] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_GT_GT] = ACTIONS(4050), - [anon_sym_AMP_GT] = ACTIONS(4052), - [anon_sym_AMP_GT_GT] = ACTIONS(4050), - [anon_sym_LT_AMP] = ACTIONS(4050), - [anon_sym_GT_AMP] = ACTIONS(4050), - [anon_sym_LT_LT] = ACTIONS(4052), - [anon_sym_LT_LT_DASH] = ACTIONS(4050), - [anon_sym_LT_LT_LT] = ACTIONS(4050), - [sym__special_characters] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [anon_sym_DOLLAR] = ACTIONS(4052), - [sym_raw_string] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4050), - [anon_sym_BQUOTE] = ACTIONS(4050), - [anon_sym_LT_LPAREN] = ACTIONS(4050), - [anon_sym_GT_LPAREN] = ACTIONS(4050), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), + [sym_concatenation] = STATE(3297), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3297), + [sym_regex] = ACTIONS(7859), + [anon_sym_RBRACE] = ACTIONS(7845), + [anon_sym_EQ] = ACTIONS(7861), + [anon_sym_DASH] = ACTIONS(7861), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7861), + [anon_sym_COLON_QMARK] = ACTIONS(7861), + [anon_sym_COLON_DASH] = ACTIONS(7861), + [anon_sym_PERCENT] = ACTIONS(7861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2820] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6604), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7845), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2821] = { - [sym__simple_heredoc_body] = ACTIONS(4084), - [sym__heredoc_body_beginning] = ACTIONS(4084), - [sym_file_descriptor] = ACTIONS(4084), - [sym__concat] = ACTIONS(4084), - [sym_variable_name] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym_esac] = ACTIONS(4086), - [anon_sym_PIPE] = ACTIONS(4086), - [anon_sym_SEMI_SEMI] = ACTIONS(4084), - [anon_sym_PIPE_AMP] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_GT_GT] = ACTIONS(4084), - [anon_sym_AMP_GT] = ACTIONS(4086), - [anon_sym_AMP_GT_GT] = ACTIONS(4084), - [anon_sym_LT_AMP] = ACTIONS(4084), - [anon_sym_GT_AMP] = ACTIONS(4084), - [anon_sym_LT_LT] = ACTIONS(4086), - [anon_sym_LT_LT_DASH] = ACTIONS(4084), - [anon_sym_LT_LT_LT] = ACTIONS(4084), - [sym__special_characters] = ACTIONS(4084), - [anon_sym_DQUOTE] = ACTIONS(4084), - [anon_sym_DOLLAR] = ACTIONS(4086), - [sym_raw_string] = ACTIONS(4084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4084), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4084), - [anon_sym_BQUOTE] = ACTIONS(4084), - [anon_sym_LT_LPAREN] = ACTIONS(4084), - [anon_sym_GT_LPAREN] = ACTIONS(4084), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4086), - [anon_sym_LF] = ACTIONS(4084), - [anon_sym_AMP] = ACTIONS(4086), + [sym_concatenation] = STATE(3299), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3299), + [anon_sym_RBRACE] = ACTIONS(7865), + [anon_sym_EQ] = ACTIONS(7867), + [anon_sym_DASH] = ACTIONS(7867), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7867), + [anon_sym_COLON_QMARK] = ACTIONS(7867), + [anon_sym_COLON_DASH] = ACTIONS(7867), + [anon_sym_PERCENT] = ACTIONS(7867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2822] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6606), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_fi] = ACTIONS(4109), + [anon_sym_elif] = ACTIONS(4109), + [anon_sym_else] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_EQ_TILDE] = ACTIONS(4109), + [anon_sym_EQ_EQ] = ACTIONS(4109), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), }, [2823] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(6606), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(7865), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2824] = { - [sym__simple_heredoc_body] = ACTIONS(4090), - [sym__heredoc_body_beginning] = ACTIONS(4090), - [sym_file_descriptor] = ACTIONS(4090), - [sym__concat] = ACTIONS(4090), - [sym_variable_name] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym_esac] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4092), - [anon_sym_SEMI_SEMI] = ACTIONS(4090), - [anon_sym_PIPE_AMP] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4090), - [anon_sym_AMP_GT] = ACTIONS(4092), - [anon_sym_AMP_GT_GT] = ACTIONS(4090), - [anon_sym_LT_AMP] = ACTIONS(4090), - [anon_sym_GT_AMP] = ACTIONS(4090), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_LT_LT_DASH] = ACTIONS(4090), - [anon_sym_LT_LT_LT] = ACTIONS(4090), - [sym__special_characters] = ACTIONS(4090), - [anon_sym_DQUOTE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(4092), - [sym_raw_string] = ACTIONS(4090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4090), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4090), - [anon_sym_BQUOTE] = ACTIONS(4090), - [anon_sym_LT_LPAREN] = ACTIONS(4090), - [anon_sym_GT_LPAREN] = ACTIONS(4090), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4092), - [anon_sym_LF] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4092), + [sym_concatenation] = STATE(3297), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3297), + [anon_sym_RBRACE] = ACTIONS(7845), + [anon_sym_EQ] = ACTIONS(7861), + [anon_sym_DASH] = ACTIONS(7861), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(7863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(7861), + [anon_sym_COLON_QMARK] = ACTIONS(7861), + [anon_sym_COLON_DASH] = ACTIONS(7861), + [anon_sym_PERCENT] = ACTIONS(7861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2825] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6608), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), + [sym__simple_heredoc_body] = ACTIONS(7871), + [sym__heredoc_body_beginning] = ACTIONS(7871), + [sym_file_descriptor] = ACTIONS(7871), + [ts_builtin_sym_end] = ACTIONS(7871), + [anon_sym_SEMI] = ACTIONS(7873), + [anon_sym_done] = ACTIONS(7871), + [anon_sym_fi] = ACTIONS(7871), + [anon_sym_elif] = ACTIONS(7871), + [anon_sym_else] = ACTIONS(7871), + [anon_sym_esac] = ACTIONS(7871), + [anon_sym_PIPE] = ACTIONS(7873), + [anon_sym_RPAREN] = ACTIONS(7871), + [anon_sym_SEMI_SEMI] = ACTIONS(7871), + [anon_sym_PIPE_AMP] = ACTIONS(7871), + [anon_sym_AMP_AMP] = ACTIONS(7871), + [anon_sym_PIPE_PIPE] = ACTIONS(7871), + [anon_sym_LT] = ACTIONS(7873), + [anon_sym_GT] = ACTIONS(7873), + [anon_sym_GT_GT] = ACTIONS(7871), + [anon_sym_AMP_GT] = ACTIONS(7873), + [anon_sym_AMP_GT_GT] = ACTIONS(7871), + [anon_sym_LT_AMP] = ACTIONS(7871), + [anon_sym_GT_AMP] = ACTIONS(7871), + [anon_sym_LT_LT] = ACTIONS(7873), + [anon_sym_LT_LT_DASH] = ACTIONS(7871), + [anon_sym_LT_LT_LT] = ACTIONS(7871), + [anon_sym_BQUOTE] = ACTIONS(7871), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [anon_sym_LF] = ACTIONS(7871), + [anon_sym_AMP] = ACTIONS(7873), }, [2826] = { - [sym__simple_heredoc_body] = ACTIONS(4725), - [sym__heredoc_body_beginning] = ACTIONS(4725), - [sym_file_descriptor] = ACTIONS(4725), - [sym__concat] = ACTIONS(4725), - [sym_variable_name] = ACTIONS(4725), - [anon_sym_SEMI] = ACTIONS(4727), - [anon_sym_esac] = ACTIONS(4727), - [anon_sym_PIPE] = ACTIONS(4727), - [anon_sym_SEMI_SEMI] = ACTIONS(4725), - [anon_sym_PIPE_AMP] = ACTIONS(4725), - [anon_sym_AMP_AMP] = ACTIONS(4725), - [anon_sym_PIPE_PIPE] = ACTIONS(4725), - [anon_sym_LT] = ACTIONS(4727), - [anon_sym_GT] = ACTIONS(4727), - [anon_sym_GT_GT] = ACTIONS(4725), - [anon_sym_AMP_GT] = ACTIONS(4727), - [anon_sym_AMP_GT_GT] = ACTIONS(4725), - [anon_sym_LT_AMP] = ACTIONS(4725), - [anon_sym_GT_AMP] = ACTIONS(4725), - [anon_sym_LT_LT] = ACTIONS(4727), - [anon_sym_LT_LT_DASH] = ACTIONS(4725), - [anon_sym_LT_LT_LT] = ACTIONS(4725), - [sym__special_characters] = ACTIONS(4725), - [anon_sym_DQUOTE] = ACTIONS(4725), - [anon_sym_DOLLAR] = ACTIONS(4727), - [sym_raw_string] = ACTIONS(4725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4725), - [anon_sym_BQUOTE] = ACTIONS(4725), - [anon_sym_LT_LPAREN] = ACTIONS(4725), - [anon_sym_GT_LPAREN] = ACTIONS(4725), + [aux_sym_concatenation_repeat1] = STATE(2828), + [sym__simple_heredoc_body] = ACTIONS(1353), + [sym__heredoc_body_beginning] = ACTIONS(1353), + [sym_file_descriptor] = ACTIONS(1353), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_fi] = ACTIONS(1353), + [anon_sym_elif] = ACTIONS(1353), + [anon_sym_else] = ACTIONS(1353), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_SEMI_SEMI] = ACTIONS(1353), + [anon_sym_PIPE_AMP] = ACTIONS(1353), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_GT] = ACTIONS(1355), + [anon_sym_GT_GT] = ACTIONS(1353), + [anon_sym_AMP_GT] = ACTIONS(1355), + [anon_sym_AMP_GT_GT] = ACTIONS(1353), + [anon_sym_LT_AMP] = ACTIONS(1353), + [anon_sym_GT_AMP] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(1355), + [anon_sym_LT_LT_DASH] = ACTIONS(1353), + [anon_sym_LT_LT_LT] = ACTIONS(1353), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4727), - [sym_word] = ACTIONS(4727), - [anon_sym_LF] = ACTIONS(4725), - [anon_sym_AMP] = ACTIONS(4727), + [anon_sym_LF] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1355), }, [2827] = { - [sym__simple_heredoc_body] = ACTIONS(4729), - [sym__heredoc_body_beginning] = ACTIONS(4729), - [sym_file_descriptor] = ACTIONS(4729), - [sym__concat] = ACTIONS(4729), - [sym_variable_name] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_esac] = ACTIONS(4731), - [anon_sym_PIPE] = ACTIONS(4731), - [anon_sym_SEMI_SEMI] = ACTIONS(4729), - [anon_sym_PIPE_AMP] = ACTIONS(4729), - [anon_sym_AMP_AMP] = ACTIONS(4729), - [anon_sym_PIPE_PIPE] = ACTIONS(4729), - [anon_sym_LT] = ACTIONS(4731), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_GT_GT] = ACTIONS(4729), - [anon_sym_AMP_GT] = ACTIONS(4731), - [anon_sym_AMP_GT_GT] = ACTIONS(4729), - [anon_sym_LT_AMP] = ACTIONS(4729), - [anon_sym_GT_AMP] = ACTIONS(4729), - [anon_sym_LT_LT] = ACTIONS(4731), - [anon_sym_LT_LT_DASH] = ACTIONS(4729), - [anon_sym_LT_LT_LT] = ACTIONS(4729), - [sym__special_characters] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(4729), - [anon_sym_DOLLAR] = ACTIONS(4731), - [sym_raw_string] = ACTIONS(4729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4729), - [anon_sym_BQUOTE] = ACTIONS(4729), - [anon_sym_LT_LPAREN] = ACTIONS(4729), - [anon_sym_GT_LPAREN] = ACTIONS(4729), + [aux_sym_concatenation_repeat1] = STATE(2828), + [sym__simple_heredoc_body] = ACTIONS(1357), + [sym__heredoc_body_beginning] = ACTIONS(1357), + [sym_file_descriptor] = ACTIONS(1357), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fi] = ACTIONS(1357), + [anon_sym_elif] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1357), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_SEMI_SEMI] = ACTIONS(1357), + [anon_sym_PIPE_AMP] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1357), + [anon_sym_AMP_GT] = ACTIONS(1359), + [anon_sym_AMP_GT_GT] = ACTIONS(1357), + [anon_sym_LT_AMP] = ACTIONS(1357), + [anon_sym_GT_AMP] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_LT_LT_DASH] = ACTIONS(1357), + [anon_sym_LT_LT_LT] = ACTIONS(1357), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4731), - [sym_word] = ACTIONS(4731), - [anon_sym_LF] = ACTIONS(4729), - [anon_sym_AMP] = ACTIONS(4731), + [anon_sym_LF] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), }, [2828] = { - [sym__simple_heredoc_body] = ACTIONS(4733), - [sym__heredoc_body_beginning] = ACTIONS(4733), - [sym_file_descriptor] = ACTIONS(4733), - [sym__concat] = ACTIONS(4733), - [sym_variable_name] = ACTIONS(4733), - [anon_sym_SEMI] = ACTIONS(4735), - [anon_sym_esac] = ACTIONS(4735), - [anon_sym_PIPE] = ACTIONS(4735), - [anon_sym_SEMI_SEMI] = ACTIONS(4733), - [anon_sym_PIPE_AMP] = ACTIONS(4733), - [anon_sym_AMP_AMP] = ACTIONS(4733), - [anon_sym_PIPE_PIPE] = ACTIONS(4733), - [anon_sym_LT] = ACTIONS(4735), - [anon_sym_GT] = ACTIONS(4735), - [anon_sym_GT_GT] = ACTIONS(4733), - [anon_sym_AMP_GT] = ACTIONS(4735), - [anon_sym_AMP_GT_GT] = ACTIONS(4733), - [anon_sym_LT_AMP] = ACTIONS(4733), - [anon_sym_GT_AMP] = ACTIONS(4733), - [anon_sym_LT_LT] = ACTIONS(4735), - [anon_sym_LT_LT_DASH] = ACTIONS(4733), - [anon_sym_LT_LT_LT] = ACTIONS(4733), - [sym__special_characters] = ACTIONS(4733), - [anon_sym_DQUOTE] = ACTIONS(4733), - [anon_sym_DOLLAR] = ACTIONS(4735), - [sym_raw_string] = ACTIONS(4733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4733), - [anon_sym_BQUOTE] = ACTIONS(4733), - [anon_sym_LT_LPAREN] = ACTIONS(4733), - [anon_sym_GT_LPAREN] = ACTIONS(4733), + [aux_sym_concatenation_repeat1] = STATE(3300), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_fi] = ACTIONS(1043), + [anon_sym_elif] = ACTIONS(1043), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4735), - [sym_word] = ACTIONS(4735), - [anon_sym_LF] = ACTIONS(4733), - [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), }, [2829] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6610), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_file_descriptor] = ACTIONS(2536), + [sym_variable_name] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_LPAREN_LPAREN] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_fi] = ACTIONS(7469), + [anon_sym_elif] = ACTIONS(7469), + [anon_sym_else] = ACTIONS(7469), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2540), + [anon_sym_typeset] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_readonly] = ACTIONS(2540), + [anon_sym_local] = ACTIONS(2540), + [anon_sym_unset] = ACTIONS(2540), + [anon_sym_unsetenv] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_GT] = ACTIONS(2540), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_AMP_GT] = ACTIONS(2540), + [anon_sym_AMP_GT_GT] = ACTIONS(2536), + [anon_sym_LT_AMP] = ACTIONS(2536), + [anon_sym_GT_AMP] = ACTIONS(2536), + [sym__special_characters] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2536), + [anon_sym_DOLLAR] = ACTIONS(2540), + [sym_raw_string] = ACTIONS(2536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2536), + [anon_sym_BQUOTE] = ACTIONS(2536), + [anon_sym_LT_LPAREN] = ACTIONS(2536), + [anon_sym_GT_LPAREN] = ACTIONS(2536), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2540), }, [2830] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6612), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [aux_sym_concatenation_repeat1] = STATE(2231), + [sym__concat] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(7875), + [anon_sym_RPAREN] = ACTIONS(7875), + [sym_comment] = ACTIONS(57), }, [2831] = { - [sym__simple_heredoc_body] = ACTIONS(4769), - [sym__heredoc_body_beginning] = ACTIONS(4769), - [sym_file_descriptor] = ACTIONS(4769), - [sym__concat] = ACTIONS(4769), - [sym_variable_name] = ACTIONS(4769), - [anon_sym_SEMI] = ACTIONS(4771), - [anon_sym_esac] = ACTIONS(4771), - [anon_sym_PIPE] = ACTIONS(4771), - [anon_sym_SEMI_SEMI] = ACTIONS(4769), - [anon_sym_PIPE_AMP] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4771), - [anon_sym_GT] = ACTIONS(4771), - [anon_sym_GT_GT] = ACTIONS(4769), - [anon_sym_AMP_GT] = ACTIONS(4771), - [anon_sym_AMP_GT_GT] = ACTIONS(4769), - [anon_sym_LT_AMP] = ACTIONS(4769), - [anon_sym_GT_AMP] = ACTIONS(4769), - [anon_sym_LT_LT] = ACTIONS(4771), - [anon_sym_LT_LT_DASH] = ACTIONS(4769), - [anon_sym_LT_LT_LT] = ACTIONS(4769), - [sym__special_characters] = ACTIONS(4769), - [anon_sym_DQUOTE] = ACTIONS(4769), - [anon_sym_DOLLAR] = ACTIONS(4771), - [sym_raw_string] = ACTIONS(4769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4769), - [anon_sym_BQUOTE] = ACTIONS(4769), - [anon_sym_LT_LPAREN] = ACTIONS(4769), - [anon_sym_GT_LPAREN] = ACTIONS(4769), + [aux_sym_concatenation_repeat1] = STATE(2231), + [sym__concat] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(7877), + [anon_sym_RPAREN] = ACTIONS(7877), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4771), - [sym_word] = ACTIONS(4771), - [anon_sym_LF] = ACTIONS(4769), - [anon_sym_AMP] = ACTIONS(4771), }, [2832] = { - [sym__simple_heredoc_body] = ACTIONS(4789), - [sym__heredoc_body_beginning] = ACTIONS(4789), - [sym_file_descriptor] = ACTIONS(4789), - [sym__concat] = ACTIONS(4789), - [sym_variable_name] = ACTIONS(4789), - [anon_sym_SEMI] = ACTIONS(4791), - [anon_sym_esac] = ACTIONS(4791), - [anon_sym_PIPE] = ACTIONS(4791), - [anon_sym_SEMI_SEMI] = ACTIONS(4789), - [anon_sym_PIPE_AMP] = ACTIONS(4789), - [anon_sym_AMP_AMP] = ACTIONS(4789), - [anon_sym_PIPE_PIPE] = ACTIONS(4789), - [anon_sym_LT] = ACTIONS(4791), - [anon_sym_GT] = ACTIONS(4791), - [anon_sym_GT_GT] = ACTIONS(4789), - [anon_sym_AMP_GT] = ACTIONS(4791), - [anon_sym_AMP_GT_GT] = ACTIONS(4789), - [anon_sym_LT_AMP] = ACTIONS(4789), - [anon_sym_GT_AMP] = ACTIONS(4789), - [anon_sym_LT_LT] = ACTIONS(4791), - [anon_sym_LT_LT_DASH] = ACTIONS(4789), - [anon_sym_LT_LT_LT] = ACTIONS(4789), - [sym__special_characters] = ACTIONS(4789), - [anon_sym_DQUOTE] = ACTIONS(4789), - [anon_sym_DOLLAR] = ACTIONS(4791), - [sym_raw_string] = ACTIONS(4789), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4789), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4789), - [anon_sym_BQUOTE] = ACTIONS(4789), - [anon_sym_LT_LPAREN] = ACTIONS(4789), - [anon_sym_GT_LPAREN] = ACTIONS(4789), + [anon_sym_PIPE] = ACTIONS(7877), + [anon_sym_RPAREN] = ACTIONS(7877), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4791), - [sym_word] = ACTIONS(4791), - [anon_sym_LF] = ACTIONS(4789), - [anon_sym_AMP] = ACTIONS(4791), }, [2833] = { - [sym__simple_heredoc_body] = ACTIONS(4793), - [sym__heredoc_body_beginning] = ACTIONS(4793), - [sym_file_descriptor] = ACTIONS(4793), - [sym__concat] = ACTIONS(4793), - [sym_variable_name] = ACTIONS(4793), - [anon_sym_SEMI] = ACTIONS(4795), - [anon_sym_esac] = ACTIONS(4795), - [anon_sym_PIPE] = ACTIONS(4795), - [anon_sym_SEMI_SEMI] = ACTIONS(4793), - [anon_sym_PIPE_AMP] = ACTIONS(4793), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_GT_GT] = ACTIONS(4793), - [anon_sym_AMP_GT] = ACTIONS(4795), - [anon_sym_AMP_GT_GT] = ACTIONS(4793), - [anon_sym_LT_AMP] = ACTIONS(4793), - [anon_sym_GT_AMP] = ACTIONS(4793), - [anon_sym_LT_LT] = ACTIONS(4795), - [anon_sym_LT_LT_DASH] = ACTIONS(4793), - [anon_sym_LT_LT_LT] = ACTIONS(4793), - [sym__special_characters] = ACTIONS(4793), - [anon_sym_DQUOTE] = ACTIONS(4793), - [anon_sym_DOLLAR] = ACTIONS(4795), - [sym_raw_string] = ACTIONS(4793), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4793), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4793), - [anon_sym_BQUOTE] = ACTIONS(4793), - [anon_sym_LT_LPAREN] = ACTIONS(4793), - [anon_sym_GT_LPAREN] = ACTIONS(4793), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(7879), + [anon_sym_PLUS_EQ] = ACTIONS(7879), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4795), - [sym_word] = ACTIONS(4795), - [anon_sym_LF] = ACTIONS(4793), - [anon_sym_AMP] = ACTIONS(4795), }, [2834] = { - [sym__simple_heredoc_body] = ACTIONS(4725), - [sym__heredoc_body_beginning] = ACTIONS(4725), - [sym_file_descriptor] = ACTIONS(4725), - [sym__concat] = ACTIONS(4725), - [anon_sym_SEMI] = ACTIONS(4727), - [anon_sym_esac] = ACTIONS(4727), - [anon_sym_PIPE] = ACTIONS(4727), - [anon_sym_SEMI_SEMI] = ACTIONS(4725), - [anon_sym_PIPE_AMP] = ACTIONS(4725), - [anon_sym_AMP_AMP] = ACTIONS(4725), - [anon_sym_PIPE_PIPE] = ACTIONS(4725), - [anon_sym_LT] = ACTIONS(4727), - [anon_sym_GT] = ACTIONS(4727), - [anon_sym_GT_GT] = ACTIONS(4725), - [anon_sym_AMP_GT] = ACTIONS(4727), - [anon_sym_AMP_GT_GT] = ACTIONS(4725), - [anon_sym_LT_AMP] = ACTIONS(4725), - [anon_sym_GT_AMP] = ACTIONS(4725), - [anon_sym_LT_LT] = ACTIONS(4727), - [anon_sym_LT_LT_DASH] = ACTIONS(4725), - [anon_sym_LT_LT_LT] = ACTIONS(4725), - [sym__special_characters] = ACTIONS(4725), - [anon_sym_DQUOTE] = ACTIONS(4725), - [anon_sym_DOLLAR] = ACTIONS(4727), - [sym_raw_string] = ACTIONS(4725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4725), - [anon_sym_BQUOTE] = ACTIONS(4725), - [anon_sym_LT_LPAREN] = ACTIONS(4725), - [anon_sym_GT_LPAREN] = ACTIONS(4725), + [anon_sym_esac] = ACTIONS(7881), + [sym__special_characters] = ACTIONS(7883), + [anon_sym_DQUOTE] = ACTIONS(7883), + [anon_sym_DOLLAR] = ACTIONS(7885), + [sym_raw_string] = ACTIONS(7883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7883), + [anon_sym_BQUOTE] = ACTIONS(7883), + [anon_sym_LT_LPAREN] = ACTIONS(7883), + [anon_sym_GT_LPAREN] = ACTIONS(7883), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4727), - [sym_word] = ACTIONS(4727), - [anon_sym_LF] = ACTIONS(4725), - [anon_sym_AMP] = ACTIONS(4727), + [sym_word] = ACTIONS(7885), }, [2835] = { - [sym__simple_heredoc_body] = ACTIONS(4729), - [sym__heredoc_body_beginning] = ACTIONS(4729), - [sym_file_descriptor] = ACTIONS(4729), - [sym__concat] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_esac] = ACTIONS(4731), - [anon_sym_PIPE] = ACTIONS(4731), - [anon_sym_SEMI_SEMI] = ACTIONS(4729), - [anon_sym_PIPE_AMP] = ACTIONS(4729), - [anon_sym_AMP_AMP] = ACTIONS(4729), - [anon_sym_PIPE_PIPE] = ACTIONS(4729), - [anon_sym_LT] = ACTIONS(4731), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_GT_GT] = ACTIONS(4729), - [anon_sym_AMP_GT] = ACTIONS(4731), - [anon_sym_AMP_GT_GT] = ACTIONS(4729), - [anon_sym_LT_AMP] = ACTIONS(4729), - [anon_sym_GT_AMP] = ACTIONS(4729), - [anon_sym_LT_LT] = ACTIONS(4731), - [anon_sym_LT_LT_DASH] = ACTIONS(4729), - [anon_sym_LT_LT_LT] = ACTIONS(4729), - [sym__special_characters] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(4729), - [anon_sym_DOLLAR] = ACTIONS(4731), - [sym_raw_string] = ACTIONS(4729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4729), - [anon_sym_BQUOTE] = ACTIONS(4729), - [anon_sym_LT_LPAREN] = ACTIONS(4729), - [anon_sym_GT_LPAREN] = ACTIONS(4729), + [sym_subshell] = STATE(140), + [sym_test_command] = STATE(140), + [sym_command] = STATE(140), + [sym_command_name] = STATE(2849), + [sym_variable_assignment] = STATE(2854), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(2854), + [sym_concatenation] = STATE(2852), + [sym_string] = STATE(2841), + [sym_simple_expansion] = STATE(2841), + [sym_string_expansion] = STATE(2841), + [sym_expansion] = STATE(2841), + [sym_command_substitution] = STATE(2841), + [sym_process_substitution] = STATE(2841), + [aux_sym_command_repeat1] = STATE(2854), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(223), + [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(6693), + [anon_sym_DQUOTE] = ACTIONS(6695), + [anon_sym_DOLLAR] = ACTIONS(6697), + [sym_raw_string] = ACTIONS(6699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6703), + [anon_sym_BQUOTE] = ACTIONS(6705), + [anon_sym_LT_LPAREN] = ACTIONS(6707), + [anon_sym_GT_LPAREN] = ACTIONS(6707), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4731), - [sym_word] = ACTIONS(4731), - [anon_sym_LF] = ACTIONS(4729), - [anon_sym_AMP] = ACTIONS(4731), + [sym_word] = ACTIONS(6699), }, [2836] = { - [sym__simple_heredoc_body] = ACTIONS(4733), - [sym__heredoc_body_beginning] = ACTIONS(4733), - [sym_file_descriptor] = ACTIONS(4733), - [sym__concat] = ACTIONS(4733), - [anon_sym_SEMI] = ACTIONS(4735), - [anon_sym_esac] = ACTIONS(4735), - [anon_sym_PIPE] = ACTIONS(4735), - [anon_sym_SEMI_SEMI] = ACTIONS(4733), - [anon_sym_PIPE_AMP] = ACTIONS(4733), - [anon_sym_AMP_AMP] = ACTIONS(4733), - [anon_sym_PIPE_PIPE] = ACTIONS(4733), - [anon_sym_LT] = ACTIONS(4735), - [anon_sym_GT] = ACTIONS(4735), - [anon_sym_GT_GT] = ACTIONS(4733), - [anon_sym_AMP_GT] = ACTIONS(4735), - [anon_sym_AMP_GT_GT] = ACTIONS(4733), - [anon_sym_LT_AMP] = ACTIONS(4733), - [anon_sym_GT_AMP] = ACTIONS(4733), - [anon_sym_LT_LT] = ACTIONS(4735), - [anon_sym_LT_LT_DASH] = ACTIONS(4733), - [anon_sym_LT_LT_LT] = ACTIONS(4733), - [sym__special_characters] = ACTIONS(4733), - [anon_sym_DQUOTE] = ACTIONS(4733), - [anon_sym_DOLLAR] = ACTIONS(4735), - [sym_raw_string] = ACTIONS(4733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4733), - [anon_sym_BQUOTE] = ACTIONS(4733), - [anon_sym_LT_LPAREN] = ACTIONS(4733), - [anon_sym_GT_LPAREN] = ACTIONS(4733), + [sym_variable_assignment] = STATE(3312), + [sym_subscript] = STATE(3311), + [sym_concatenation] = STATE(3312), + [sym_string] = STATE(3306), + [sym_simple_expansion] = STATE(3306), + [sym_string_expansion] = STATE(3306), + [sym_expansion] = STATE(3306), + [sym_command_substitution] = STATE(3306), + [sym_process_substitution] = STATE(3306), + [aux_sym_declaration_command_repeat1] = STATE(3312), + [sym__simple_heredoc_body] = ACTIONS(259), + [sym__heredoc_body_beginning] = ACTIONS(259), + [sym_file_descriptor] = ACTIONS(259), + [sym_variable_name] = ACTIONS(7887), + [anon_sym_SEMI] = ACTIONS(263), + [anon_sym_esac] = ACTIONS(263), + [anon_sym_PIPE] = ACTIONS(263), + [anon_sym_SEMI_SEMI] = ACTIONS(259), + [anon_sym_PIPE_AMP] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(259), + [anon_sym_PIPE_PIPE] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(263), + [anon_sym_GT] = ACTIONS(263), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_AMP_GT] = ACTIONS(263), + [anon_sym_AMP_GT_GT] = ACTIONS(259), + [anon_sym_LT_AMP] = ACTIONS(259), + [anon_sym_GT_AMP] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(263), + [anon_sym_LT_LT_DASH] = ACTIONS(259), + [anon_sym_LT_LT_LT] = ACTIONS(259), + [sym__special_characters] = ACTIONS(7889), + [anon_sym_DQUOTE] = ACTIONS(7891), + [anon_sym_DOLLAR] = ACTIONS(7893), + [sym_raw_string] = ACTIONS(7895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7899), + [anon_sym_BQUOTE] = ACTIONS(7901), + [anon_sym_LT_LPAREN] = ACTIONS(7903), + [anon_sym_GT_LPAREN] = ACTIONS(7903), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4735), - [sym_word] = ACTIONS(4735), - [anon_sym_LF] = ACTIONS(4733), - [anon_sym_AMP] = ACTIONS(4735), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7905), + [sym_word] = ACTIONS(7907), + [anon_sym_LF] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(263), }, [2837] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6614), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(3321), + [sym_string] = STATE(3316), + [sym_simple_expansion] = STATE(3316), + [sym_string_expansion] = STATE(3316), + [sym_expansion] = STATE(3316), + [sym_command_substitution] = STATE(3316), + [sym_process_substitution] = STATE(3316), + [aux_sym_unset_command_repeat1] = STATE(3321), + [sym__simple_heredoc_body] = ACTIONS(285), + [sym__heredoc_body_beginning] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_esac] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(287), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(287), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [sym__special_characters] = ACTIONS(7909), + [anon_sym_DQUOTE] = ACTIONS(7911), + [anon_sym_DOLLAR] = ACTIONS(7913), + [sym_raw_string] = ACTIONS(7915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7917), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7919), + [anon_sym_BQUOTE] = ACTIONS(7921), + [anon_sym_LT_LPAREN] = ACTIONS(7923), + [anon_sym_GT_LPAREN] = ACTIONS(7923), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7925), + [sym_word] = ACTIONS(7927), + [anon_sym_LF] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(287), }, [2838] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6616), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [aux_sym_concatenation_repeat1] = STATE(3323), + [sym__simple_heredoc_body] = ACTIONS(325), + [sym__heredoc_body_beginning] = ACTIONS(325), + [sym_file_descriptor] = ACTIONS(325), + [sym__concat] = ACTIONS(7929), + [anon_sym_SEMI] = ACTIONS(329), + [anon_sym_esac] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(325), + [anon_sym_PIPE_AMP] = ACTIONS(325), + [anon_sym_AMP_AMP] = ACTIONS(325), + [anon_sym_PIPE_PIPE] = ACTIONS(325), + [anon_sym_EQ_TILDE] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(329), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_LT_LT_DASH] = ACTIONS(325), + [anon_sym_LT_LT_LT] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(329), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(329), + [anon_sym_LF] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(329), }, [2839] = { - [sym__simple_heredoc_body] = ACTIONS(4769), - [sym__heredoc_body_beginning] = ACTIONS(4769), - [sym_file_descriptor] = ACTIONS(4769), - [sym__concat] = ACTIONS(4769), - [anon_sym_SEMI] = ACTIONS(4771), - [anon_sym_esac] = ACTIONS(4771), - [anon_sym_PIPE] = ACTIONS(4771), - [anon_sym_SEMI_SEMI] = ACTIONS(4769), - [anon_sym_PIPE_AMP] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4771), - [anon_sym_GT] = ACTIONS(4771), - [anon_sym_GT_GT] = ACTIONS(4769), - [anon_sym_AMP_GT] = ACTIONS(4771), - [anon_sym_AMP_GT_GT] = ACTIONS(4769), - [anon_sym_LT_AMP] = ACTIONS(4769), - [anon_sym_GT_AMP] = ACTIONS(4769), - [anon_sym_LT_LT] = ACTIONS(4771), - [anon_sym_LT_LT_DASH] = ACTIONS(4769), - [anon_sym_LT_LT_LT] = ACTIONS(4769), - [sym__special_characters] = ACTIONS(4769), - [anon_sym_DQUOTE] = ACTIONS(4769), - [anon_sym_DOLLAR] = ACTIONS(4771), - [sym_raw_string] = ACTIONS(4769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4769), - [anon_sym_BQUOTE] = ACTIONS(4769), - [anon_sym_LT_LPAREN] = ACTIONS(4769), - [anon_sym_GT_LPAREN] = ACTIONS(4769), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4771), - [sym_word] = ACTIONS(4771), - [anon_sym_LF] = ACTIONS(4769), - [anon_sym_AMP] = ACTIONS(4771), + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(3326), + [anon_sym_DQUOTE] = ACTIONS(7931), + [anon_sym_DOLLAR] = ACTIONS(7933), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), }, [2840] = { - [sym__simple_heredoc_body] = ACTIONS(4789), - [sym__heredoc_body_beginning] = ACTIONS(4789), - [sym_file_descriptor] = ACTIONS(4789), - [sym__concat] = ACTIONS(4789), - [anon_sym_SEMI] = ACTIONS(4791), - [anon_sym_esac] = ACTIONS(4791), - [anon_sym_PIPE] = ACTIONS(4791), - [anon_sym_SEMI_SEMI] = ACTIONS(4789), - [anon_sym_PIPE_AMP] = ACTIONS(4789), - [anon_sym_AMP_AMP] = ACTIONS(4789), - [anon_sym_PIPE_PIPE] = ACTIONS(4789), - [anon_sym_LT] = ACTIONS(4791), - [anon_sym_GT] = ACTIONS(4791), - [anon_sym_GT_GT] = ACTIONS(4789), - [anon_sym_AMP_GT] = ACTIONS(4791), - [anon_sym_AMP_GT_GT] = ACTIONS(4789), - [anon_sym_LT_AMP] = ACTIONS(4789), - [anon_sym_GT_AMP] = ACTIONS(4789), - [anon_sym_LT_LT] = ACTIONS(4791), - [anon_sym_LT_LT_DASH] = ACTIONS(4789), - [anon_sym_LT_LT_LT] = ACTIONS(4789), - [sym__special_characters] = ACTIONS(4789), - [anon_sym_DQUOTE] = ACTIONS(4789), - [anon_sym_DOLLAR] = ACTIONS(4791), - [sym_raw_string] = ACTIONS(4789), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4789), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4789), - [anon_sym_BQUOTE] = ACTIONS(4789), - [anon_sym_LT_LPAREN] = ACTIONS(4789), - [anon_sym_GT_LPAREN] = ACTIONS(4789), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4791), - [sym_word] = ACTIONS(4791), - [anon_sym_LF] = ACTIONS(4789), - [anon_sym_AMP] = ACTIONS(4791), + [sym_string] = STATE(3328), + [anon_sym_DASH] = ACTIONS(7935), + [anon_sym_DQUOTE] = ACTIONS(6695), + [anon_sym_DOLLAR] = ACTIONS(7935), + [sym_raw_string] = ACTIONS(7937), + [anon_sym_POUND] = ACTIONS(7935), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7939), + [anon_sym_STAR] = ACTIONS(7941), + [anon_sym_AT] = ACTIONS(7941), + [anon_sym_QMARK] = ACTIONS(7941), + [anon_sym_0] = ACTIONS(7939), + [anon_sym__] = ACTIONS(7939), }, [2841] = { - [sym__simple_heredoc_body] = ACTIONS(4793), - [sym__heredoc_body_beginning] = ACTIONS(4793), - [sym_file_descriptor] = ACTIONS(4793), - [sym__concat] = ACTIONS(4793), - [anon_sym_SEMI] = ACTIONS(4795), - [anon_sym_esac] = ACTIONS(4795), - [anon_sym_PIPE] = ACTIONS(4795), - [anon_sym_SEMI_SEMI] = ACTIONS(4793), - [anon_sym_PIPE_AMP] = ACTIONS(4793), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_GT_GT] = ACTIONS(4793), - [anon_sym_AMP_GT] = ACTIONS(4795), - [anon_sym_AMP_GT_GT] = ACTIONS(4793), - [anon_sym_LT_AMP] = ACTIONS(4793), - [anon_sym_GT_AMP] = ACTIONS(4793), - [anon_sym_LT_LT] = ACTIONS(4795), - [anon_sym_LT_LT_DASH] = ACTIONS(4793), - [anon_sym_LT_LT_LT] = ACTIONS(4793), - [sym__special_characters] = ACTIONS(4793), - [anon_sym_DQUOTE] = ACTIONS(4793), - [anon_sym_DOLLAR] = ACTIONS(4795), - [sym_raw_string] = ACTIONS(4793), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4793), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4793), - [anon_sym_BQUOTE] = ACTIONS(4793), - [anon_sym_LT_LPAREN] = ACTIONS(4793), - [anon_sym_GT_LPAREN] = ACTIONS(4793), + [aux_sym_concatenation_repeat1] = STATE(3323), + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [sym__concat] = ACTIONS(7929), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_esac] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4795), - [sym_word] = ACTIONS(4795), - [anon_sym_LF] = ACTIONS(4793), - [anon_sym_AMP] = ACTIONS(4795), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), }, [2842] = { - [sym__simple_heredoc_body] = ACTIONS(5216), - [sym__heredoc_body_beginning] = ACTIONS(5216), - [sym_file_descriptor] = ACTIONS(5216), - [sym__concat] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5218), - [anon_sym_esac] = ACTIONS(5218), - [anon_sym_PIPE] = ACTIONS(5218), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [anon_sym_PIPE_AMP] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_EQ_TILDE] = ACTIONS(5218), - [anon_sym_EQ_EQ] = ACTIONS(5218), - [anon_sym_LT] = ACTIONS(5218), - [anon_sym_GT] = ACTIONS(5218), - [anon_sym_GT_GT] = ACTIONS(5216), - [anon_sym_AMP_GT] = ACTIONS(5218), - [anon_sym_AMP_GT_GT] = ACTIONS(5216), - [anon_sym_LT_AMP] = ACTIONS(5216), - [anon_sym_GT_AMP] = ACTIONS(5216), - [anon_sym_LT_LT] = ACTIONS(5218), - [anon_sym_LT_LT_DASH] = ACTIONS(5216), - [anon_sym_LT_LT_LT] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5218), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(5216), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5218), - [anon_sym_LF] = ACTIONS(5216), - [anon_sym_AMP] = ACTIONS(5218), + [sym_subscript] = STATE(3333), + [sym_variable_name] = ACTIONS(7943), + [anon_sym_BANG] = ACTIONS(7945), + [anon_sym_DASH] = ACTIONS(7947), + [anon_sym_DOLLAR] = ACTIONS(7947), + [anon_sym_POUND] = ACTIONS(7945), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7949), + [anon_sym_STAR] = ACTIONS(7951), + [anon_sym_AT] = ACTIONS(7951), + [anon_sym_QMARK] = ACTIONS(7951), + [anon_sym_0] = ACTIONS(7949), + [anon_sym__] = ACTIONS(7949), }, [2843] = { - [sym__simple_heredoc_body] = ACTIONS(5220), - [sym__heredoc_body_beginning] = ACTIONS(5220), - [sym_file_descriptor] = ACTIONS(5220), - [sym__concat] = ACTIONS(5220), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_esac] = ACTIONS(5222), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_SEMI_SEMI] = ACTIONS(5220), - [anon_sym_PIPE_AMP] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_EQ_TILDE] = ACTIONS(5222), - [anon_sym_EQ_EQ] = ACTIONS(5222), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_GT_GT] = ACTIONS(5220), - [anon_sym_AMP_GT] = ACTIONS(5222), - [anon_sym_AMP_GT_GT] = ACTIONS(5220), - [anon_sym_LT_AMP] = ACTIONS(5220), - [anon_sym_GT_AMP] = ACTIONS(5220), - [anon_sym_LT_LT] = ACTIONS(5222), - [anon_sym_LT_LT_DASH] = ACTIONS(5220), - [anon_sym_LT_LT_LT] = ACTIONS(5220), - [sym__special_characters] = ACTIONS(5220), - [anon_sym_DQUOTE] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [anon_sym_LT_LPAREN] = ACTIONS(5220), - [anon_sym_GT_LPAREN] = ACTIONS(5220), + [sym__statements] = STATE(3334), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(5222), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5222), + [sym_word] = ACTIONS(173), }, [2844] = { - [sym__simple_heredoc_body] = ACTIONS(3941), - [sym__heredoc_body_beginning] = ACTIONS(3941), - [sym_file_descriptor] = ACTIONS(3941), - [sym__concat] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3943), - [anon_sym_esac] = ACTIONS(3941), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [anon_sym_PIPE_AMP] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_GT_GT] = ACTIONS(3941), - [anon_sym_AMP_GT] = ACTIONS(3943), - [anon_sym_AMP_GT_GT] = ACTIONS(3941), - [anon_sym_LT_AMP] = ACTIONS(3941), - [anon_sym_GT_AMP] = ACTIONS(3941), - [anon_sym_LT_LT] = ACTIONS(3943), - [anon_sym_LT_LT_DASH] = ACTIONS(3941), - [anon_sym_LT_LT_LT] = ACTIONS(3941), + [sym__statements] = STATE(3335), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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), - [anon_sym_LF] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), + [sym_word] = ACTIONS(379), }, [2845] = { - [sym__simple_heredoc_body] = ACTIONS(3949), - [sym__heredoc_body_beginning] = ACTIONS(3949), - [sym_file_descriptor] = ACTIONS(3949), - [sym__concat] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3951), - [anon_sym_esac] = ACTIONS(3949), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_SEMI_SEMI] = ACTIONS(3949), - [anon_sym_PIPE_AMP] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3949), - [anon_sym_PIPE_PIPE] = ACTIONS(3949), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3949), - [anon_sym_AMP_GT] = ACTIONS(3951), - [anon_sym_AMP_GT_GT] = ACTIONS(3949), - [anon_sym_LT_AMP] = ACTIONS(3949), - [anon_sym_GT_AMP] = ACTIONS(3949), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_LT_LT_DASH] = ACTIONS(3949), - [anon_sym_LT_LT_LT] = ACTIONS(3949), + [sym__statements] = STATE(3336), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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), - [anon_sym_LF] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3951), + [sym_word] = ACTIONS(173), }, [2846] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6618), + [aux_sym_concatenation_repeat1] = STATE(3323), + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [sym__concat] = ACTIONS(7929), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_esac] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), }, [2847] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__concat] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(6620), + [anon_sym_esac] = ACTIONS(7953), + [anon_sym_SEMI_SEMI] = ACTIONS(7955), [sym_comment] = ACTIONS(57), }, [2848] = { - [anon_sym_RBRACE] = ACTIONS(6620), + [sym_file_redirect] = STATE(3345), + [sym_heredoc_redirect] = STATE(3345), + [sym_heredoc_body] = STATE(3344), + [sym_herestring_redirect] = STATE(3345), + [aux_sym_redirected_statement_repeat1] = STATE(3345), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(7957), + [anon_sym_SEMI] = ACTIONS(7959), + [anon_sym_esac] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(7961), + [anon_sym_SEMI_SEMI] = ACTIONS(393), + [anon_sym_PIPE_AMP] = ACTIONS(7963), + [anon_sym_AMP_AMP] = ACTIONS(7965), + [anon_sym_PIPE_PIPE] = ACTIONS(7965), + [anon_sym_LT] = ACTIONS(7967), + [anon_sym_GT] = ACTIONS(7967), + [anon_sym_GT_GT] = ACTIONS(7969), + [anon_sym_AMP_GT] = ACTIONS(7967), + [anon_sym_AMP_GT_GT] = ACTIONS(7969), + [anon_sym_LT_AMP] = ACTIONS(7969), + [anon_sym_GT_AMP] = ACTIONS(7969), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(7971), [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(7973), + [anon_sym_AMP] = ACTIONS(7959), }, [2849] = { - [sym_concatenation] = STATE(2876), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2876), - [anon_sym_RBRACE] = ACTIONS(6622), - [anon_sym_EQ] = ACTIONS(6624), - [anon_sym_DASH] = ACTIONS(6624), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6626), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6624), - [anon_sym_COLON_QMARK] = ACTIONS(6624), - [anon_sym_COLON_DASH] = ACTIONS(6624), - [anon_sym_PERCENT] = ACTIONS(6624), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_concatenation] = STATE(3349), + [sym_string] = STATE(3348), + [sym_simple_expansion] = STATE(3348), + [sym_string_expansion] = STATE(3348), + [sym_expansion] = STATE(3348), + [sym_command_substitution] = STATE(3348), + [sym_process_substitution] = STATE(3348), + [aux_sym_command_repeat2] = STATE(3349), + [sym__simple_heredoc_body] = ACTIONS(415), + [sym__heredoc_body_beginning] = ACTIONS(415), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_esac] = ACTIONS(417), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(415), + [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_EQ_TILDE] = ACTIONS(7975), + [anon_sym_EQ_EQ] = ACTIONS(7975), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(415), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(415), + [anon_sym_LT_AMP] = ACTIONS(415), + [anon_sym_GT_AMP] = ACTIONS(415), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(415), + [anon_sym_LT_LT_LT] = ACTIONS(415), + [sym__special_characters] = ACTIONS(7977), + [anon_sym_DQUOTE] = ACTIONS(6695), + [anon_sym_DOLLAR] = ACTIONS(6697), + [sym_raw_string] = ACTIONS(7979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6703), + [anon_sym_BQUOTE] = ACTIONS(6705), + [anon_sym_LT_LPAREN] = ACTIONS(6707), + [anon_sym_GT_LPAREN] = ACTIONS(6707), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7981), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), }, [2850] = { - [sym__simple_heredoc_body] = ACTIONS(4005), - [sym__heredoc_body_beginning] = ACTIONS(4005), - [sym_file_descriptor] = ACTIONS(4005), - [sym__concat] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_esac] = ACTIONS(4005), - [anon_sym_PIPE] = ACTIONS(4007), - [anon_sym_SEMI_SEMI] = ACTIONS(4005), - [anon_sym_PIPE_AMP] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4005), - [anon_sym_PIPE_PIPE] = ACTIONS(4005), - [anon_sym_LT] = ACTIONS(4007), - [anon_sym_GT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_AMP_GT] = ACTIONS(4007), - [anon_sym_AMP_GT_GT] = ACTIONS(4005), - [anon_sym_LT_AMP] = ACTIONS(4005), - [anon_sym_GT_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_LT_LT_DASH] = ACTIONS(4005), - [anon_sym_LT_LT_LT] = ACTIONS(4005), + [sym_file_redirect] = STATE(3345), + [sym_heredoc_redirect] = STATE(3345), + [sym_heredoc_body] = STATE(3344), + [sym_herestring_redirect] = STATE(3345), + [aux_sym_redirected_statement_repeat1] = STATE(3345), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(7959), + [anon_sym_esac] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(7961), + [anon_sym_SEMI_SEMI] = ACTIONS(393), + [anon_sym_PIPE_AMP] = ACTIONS(7963), + [anon_sym_AMP_AMP] = ACTIONS(7965), + [anon_sym_PIPE_PIPE] = ACTIONS(7965), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(7971), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4007), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(7973), + [anon_sym_AMP] = ACTIONS(7959), }, [2851] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6622), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [anon_sym_EQ] = ACTIONS(7879), + [anon_sym_PLUS_EQ] = ACTIONS(7879), + [sym_comment] = ACTIONS(57), }, [2852] = { - [sym_concatenation] = STATE(2877), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(2877), - [anon_sym_RBRACE] = ACTIONS(6620), - [anon_sym_EQ] = ACTIONS(6628), - [anon_sym_DASH] = ACTIONS(6628), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(6630), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(6628), - [anon_sym_COLON_QMARK] = ACTIONS(6628), - [anon_sym_COLON_DASH] = ACTIONS(6628), - [anon_sym_PERCENT] = ACTIONS(6628), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__simple_heredoc_body] = ACTIONS(353), + [sym__heredoc_body_beginning] = ACTIONS(353), + [sym_file_descriptor] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_esac] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_SEMI_SEMI] = ACTIONS(353), + [anon_sym_PIPE_AMP] = ACTIONS(353), + [anon_sym_AMP_AMP] = ACTIONS(353), + [anon_sym_PIPE_PIPE] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(355), + [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(353), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(355), + [sym_raw_string] = ACTIONS(353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(353), + [anon_sym_LT_LPAREN] = ACTIONS(353), + [anon_sym_GT_LPAREN] = ACTIONS(353), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(355), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), }, [2853] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6620), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym_redirected_statement] = STATE(3350), + [sym_for_statement] = STATE(3350), + [sym_c_style_for_statement] = STATE(3350), + [sym_while_statement] = STATE(3350), + [sym_if_statement] = STATE(3350), + [sym_case_statement] = STATE(3350), + [sym_function_definition] = STATE(3350), + [sym_compound_statement] = STATE(3350), + [sym_subshell] = STATE(3350), + [sym_pipeline] = STATE(3350), + [sym_list] = STATE(3350), + [sym_negated_command] = STATE(3350), + [sym_test_command] = STATE(3350), + [sym_declaration_command] = STATE(3350), + [sym_unset_command] = STATE(3350), + [sym_command] = STATE(3350), + [sym_command_name] = STATE(2849), + [sym_variable_assignment] = STATE(3351), + [sym_subscript] = STATE(2851), + [sym_file_redirect] = STATE(2854), + [sym_concatenation] = STATE(2852), + [sym_string] = STATE(2841), + [sym_simple_expansion] = STATE(2841), + [sym_string_expansion] = STATE(2841), + [sym_expansion] = STATE(2841), + [sym_command_substitution] = STATE(2841), + [sym_process_substitution] = STATE(2841), + [aux_sym__statements_repeat1] = STATE(236), + [aux_sym_command_repeat1] = STATE(2854), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(6681), + [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(6687), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(6689), + [anon_sym_typeset] = ACTIONS(6689), + [anon_sym_export] = ACTIONS(6689), + [anon_sym_readonly] = ACTIONS(6689), + [anon_sym_local] = ACTIONS(6689), + [anon_sym_unset] = ACTIONS(6691), + [anon_sym_unsetenv] = ACTIONS(6691), + [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(6693), + [anon_sym_DQUOTE] = ACTIONS(6695), + [anon_sym_DOLLAR] = ACTIONS(6697), + [sym_raw_string] = ACTIONS(6699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6703), + [anon_sym_BQUOTE] = ACTIONS(6705), + [anon_sym_LT_LPAREN] = ACTIONS(6707), + [anon_sym_GT_LPAREN] = ACTIONS(6707), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6709), }, [2854] = { - [sym__simple_heredoc_body] = ACTIONS(4050), - [sym__heredoc_body_beginning] = ACTIONS(4050), - [sym_file_descriptor] = ACTIONS(4050), - [sym__concat] = ACTIONS(4050), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_esac] = ACTIONS(4050), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_SEMI_SEMI] = ACTIONS(4050), - [anon_sym_PIPE_AMP] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_PIPE_PIPE] = ACTIONS(4050), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_GT_GT] = ACTIONS(4050), - [anon_sym_AMP_GT] = ACTIONS(4052), - [anon_sym_AMP_GT_GT] = ACTIONS(4050), - [anon_sym_LT_AMP] = ACTIONS(4050), - [anon_sym_GT_AMP] = ACTIONS(4050), - [anon_sym_LT_LT] = ACTIONS(4052), - [anon_sym_LT_LT_DASH] = ACTIONS(4050), - [anon_sym_LT_LT_LT] = ACTIONS(4050), + [sym_command_name] = STATE(3352), + [sym_variable_assignment] = STATE(238), + [sym_subscript] = STATE(141), + [sym_file_redirect] = STATE(238), + [sym_concatenation] = STATE(2852), + [sym_string] = STATE(2841), + [sym_simple_expansion] = STATE(2841), + [sym_string_expansion] = STATE(2841), + [sym_expansion] = STATE(2841), + [sym_command_substitution] = STATE(2841), + [sym_process_substitution] = STATE(2841), + [aux_sym_command_repeat1] = STATE(238), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(223), + [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(7983), + [anon_sym_DQUOTE] = ACTIONS(6695), + [anon_sym_DOLLAR] = ACTIONS(6697), + [sym_raw_string] = ACTIONS(6699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6703), + [anon_sym_BQUOTE] = ACTIONS(6705), + [anon_sym_LT_LPAREN] = ACTIONS(6707), + [anon_sym_GT_LPAREN] = ACTIONS(6707), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4052), + [sym_word] = ACTIONS(6699), }, [2855] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6632), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [sym__statements] = STATE(3353), + [sym_redirected_statement] = STATE(2848), + [sym_for_statement] = STATE(2848), + [sym_c_style_for_statement] = STATE(2848), + [sym_while_statement] = STATE(2848), + [sym_if_statement] = STATE(2848), + [sym_case_statement] = STATE(2848), + [sym_function_definition] = STATE(2848), + [sym_compound_statement] = STATE(2848), + [sym_subshell] = STATE(2848), + [sym_pipeline] = STATE(2848), + [sym_list] = STATE(2848), + [sym_negated_command] = STATE(2848), + [sym_test_command] = STATE(2848), + [sym_declaration_command] = STATE(2848), + [sym_unset_command] = STATE(2848), + [sym_command] = STATE(2848), + [sym_command_name] = STATE(2849), + [sym_variable_assignment] = STATE(2850), + [sym_subscript] = STATE(2851), + [sym_file_redirect] = STATE(2854), + [sym_concatenation] = STATE(2852), + [sym_string] = STATE(2841), + [sym_simple_expansion] = STATE(2841), + [sym_string_expansion] = STATE(2841), + [sym_expansion] = STATE(2841), + [sym_command_substitution] = STATE(2841), + [sym_process_substitution] = STATE(2841), + [aux_sym__statements_repeat1] = STATE(2853), + [aux_sym_command_repeat1] = STATE(2854), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(6681), + [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(7881), + [anon_sym_SEMI_SEMI] = ACTIONS(7955), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(6687), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(6689), + [anon_sym_typeset] = ACTIONS(6689), + [anon_sym_export] = ACTIONS(6689), + [anon_sym_readonly] = ACTIONS(6689), + [anon_sym_local] = ACTIONS(6689), + [anon_sym_unset] = ACTIONS(6691), + [anon_sym_unsetenv] = ACTIONS(6691), + [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(6693), + [anon_sym_DQUOTE] = ACTIONS(6695), + [anon_sym_DOLLAR] = ACTIONS(6697), + [sym_raw_string] = ACTIONS(6699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6703), + [anon_sym_BQUOTE] = ACTIONS(6705), + [anon_sym_LT_LPAREN] = ACTIONS(6707), + [anon_sym_GT_LPAREN] = ACTIONS(6707), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6709), }, [2856] = { - [sym__simple_heredoc_body] = ACTIONS(4084), - [sym__heredoc_body_beginning] = ACTIONS(4084), - [sym_file_descriptor] = ACTIONS(4084), - [sym__concat] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym_esac] = ACTIONS(4084), - [anon_sym_PIPE] = ACTIONS(4086), - [anon_sym_SEMI_SEMI] = ACTIONS(4084), - [anon_sym_PIPE_AMP] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_GT_GT] = ACTIONS(4084), - [anon_sym_AMP_GT] = ACTIONS(4086), - [anon_sym_AMP_GT_GT] = ACTIONS(4084), - [anon_sym_LT_AMP] = ACTIONS(4084), - [anon_sym_GT_AMP] = ACTIONS(4084), - [anon_sym_LT_LT] = ACTIONS(4086), - [anon_sym_LT_LT_DASH] = ACTIONS(4084), - [anon_sym_LT_LT_LT] = ACTIONS(4084), + [aux_sym_case_item_repeat1] = STATE(2856), + [anon_sym_PIPE] = ACTIONS(7985), + [anon_sym_RPAREN] = ACTIONS(7877), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4084), - [anon_sym_AMP] = ACTIONS(4086), }, [2857] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6634), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), + [aux_sym_concatenation_repeat1] = STATE(2857), + [sym__concat] = ACTIONS(4511), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), }, [2858] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(6634), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), + [anon_sym_esac] = ACTIONS(7988), + [sym__special_characters] = ACTIONS(7990), + [anon_sym_DQUOTE] = ACTIONS(7990), + [anon_sym_DOLLAR] = ACTIONS(7992), + [sym_raw_string] = ACTIONS(7990), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7990), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7990), + [anon_sym_BQUOTE] = ACTIONS(7990), + [anon_sym_LT_LPAREN] = ACTIONS(7990), + [anon_sym_GT_LPAREN] = ACTIONS(7990), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_word] = ACTIONS(7992), }, [2859] = { - [sym__simple_heredoc_body] = ACTIONS(4090), - [sym__heredoc_body_beginning] = ACTIONS(4090), - [sym_file_descriptor] = ACTIONS(4090), - [sym__concat] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym_esac] = ACTIONS(4090), - [anon_sym_PIPE] = ACTIONS(4092), - [anon_sym_SEMI_SEMI] = ACTIONS(4090), - [anon_sym_PIPE_AMP] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4090), - [anon_sym_AMP_GT] = ACTIONS(4092), - [anon_sym_AMP_GT_GT] = ACTIONS(4090), - [anon_sym_LT_AMP] = ACTIONS(4090), - [anon_sym_GT_AMP] = ACTIONS(4090), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_LT_LT_DASH] = ACTIONS(4090), - [anon_sym_LT_LT_LT] = ACTIONS(4090), + [anon_sym_esac] = ACTIONS(7994), + [anon_sym_SEMI_SEMI] = ACTIONS(7996), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4092), }, [2860] = { - [sym_file_descriptor] = ACTIONS(1988), - [sym_variable_name] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_RPAREN] = ACTIONS(6636), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_typeset] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_local] = ACTIONS(1992), - [anon_sym_unset] = ACTIONS(1992), - [anon_sym_unsetenv] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_AMP_GT] = ACTIONS(1992), - [anon_sym_AMP_GT_GT] = ACTIONS(1988), - [anon_sym_LT_AMP] = ACTIONS(1988), - [anon_sym_GT_AMP] = ACTIONS(1988), - [sym__special_characters] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_LT_LPAREN] = ACTIONS(1988), - [anon_sym_GT_LPAREN] = ACTIONS(1988), + [sym__statements] = STATE(3355), + [sym_redirected_statement] = STATE(2848), + [sym_for_statement] = STATE(2848), + [sym_c_style_for_statement] = STATE(2848), + [sym_while_statement] = STATE(2848), + [sym_if_statement] = STATE(2848), + [sym_case_statement] = STATE(2848), + [sym_function_definition] = STATE(2848), + [sym_compound_statement] = STATE(2848), + [sym_subshell] = STATE(2848), + [sym_pipeline] = STATE(2848), + [sym_list] = STATE(2848), + [sym_negated_command] = STATE(2848), + [sym_test_command] = STATE(2848), + [sym_declaration_command] = STATE(2848), + [sym_unset_command] = STATE(2848), + [sym_command] = STATE(2848), + [sym_command_name] = STATE(2849), + [sym_variable_assignment] = STATE(2850), + [sym_subscript] = STATE(2851), + [sym_file_redirect] = STATE(2854), + [sym_concatenation] = STATE(2852), + [sym_string] = STATE(2841), + [sym_simple_expansion] = STATE(2841), + [sym_string_expansion] = STATE(2841), + [sym_expansion] = STATE(2841), + [sym_command_substitution] = STATE(2841), + [sym_process_substitution] = STATE(2841), + [aux_sym__statements_repeat1] = STATE(2853), + [aux_sym_command_repeat1] = STATE(2854), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(6681), + [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(7988), + [anon_sym_SEMI_SEMI] = ACTIONS(7996), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(6687), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(6689), + [anon_sym_typeset] = ACTIONS(6689), + [anon_sym_export] = ACTIONS(6689), + [anon_sym_readonly] = ACTIONS(6689), + [anon_sym_local] = ACTIONS(6689), + [anon_sym_unset] = ACTIONS(6691), + [anon_sym_unsetenv] = ACTIONS(6691), + [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(6693), + [anon_sym_DQUOTE] = ACTIONS(6695), + [anon_sym_DOLLAR] = ACTIONS(6697), + [sym_raw_string] = ACTIONS(6699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6703), + [anon_sym_BQUOTE] = ACTIONS(6705), + [anon_sym_LT_LPAREN] = ACTIONS(6707), + [anon_sym_GT_LPAREN] = ACTIONS(6707), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(1992), + [sym_word] = ACTIONS(6709), }, [2861] = { - [sym__simple_heredoc_body] = ACTIONS(4725), - [sym__heredoc_body_beginning] = ACTIONS(4725), - [sym_file_descriptor] = ACTIONS(4725), - [sym__concat] = ACTIONS(4725), - [sym_variable_name] = ACTIONS(4725), - [anon_sym_SEMI] = ACTIONS(4727), - [anon_sym_esac] = ACTIONS(4727), - [anon_sym_PIPE] = ACTIONS(4727), - [anon_sym_SEMI_SEMI] = ACTIONS(4725), - [anon_sym_PIPE_AMP] = ACTIONS(4725), - [anon_sym_AMP_AMP] = ACTIONS(4725), - [anon_sym_PIPE_PIPE] = ACTIONS(4725), - [anon_sym_LT] = ACTIONS(4727), - [anon_sym_GT] = ACTIONS(4727), - [anon_sym_GT_GT] = ACTIONS(4725), - [anon_sym_AMP_GT] = ACTIONS(4727), - [anon_sym_AMP_GT_GT] = ACTIONS(4725), - [anon_sym_LT_AMP] = ACTIONS(4725), - [anon_sym_GT_AMP] = ACTIONS(4725), - [anon_sym_LT_LT] = ACTIONS(4727), - [anon_sym_LT_LT_DASH] = ACTIONS(4725), - [anon_sym_LT_LT_LT] = ACTIONS(4725), - [sym__special_characters] = ACTIONS(4725), - [anon_sym_DQUOTE] = ACTIONS(4725), - [anon_sym_DOLLAR] = ACTIONS(4727), - [sym_raw_string] = ACTIONS(4725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4725), - [anon_sym_BQUOTE] = ACTIONS(4725), - [anon_sym_LT_LPAREN] = ACTIONS(4725), - [anon_sym_GT_LPAREN] = ACTIONS(4725), + [sym__simple_heredoc_body] = ACTIONS(7998), + [sym__heredoc_body_beginning] = ACTIONS(7998), + [sym_file_descriptor] = ACTIONS(7998), + [ts_builtin_sym_end] = ACTIONS(7998), + [anon_sym_SEMI] = ACTIONS(8000), + [anon_sym_done] = ACTIONS(7998), + [anon_sym_fi] = ACTIONS(7998), + [anon_sym_elif] = ACTIONS(7998), + [anon_sym_else] = ACTIONS(7998), + [anon_sym_esac] = ACTIONS(7998), + [anon_sym_PIPE] = ACTIONS(8000), + [anon_sym_RPAREN] = ACTIONS(7998), + [anon_sym_SEMI_SEMI] = ACTIONS(7998), + [anon_sym_PIPE_AMP] = ACTIONS(7998), + [anon_sym_AMP_AMP] = ACTIONS(7998), + [anon_sym_PIPE_PIPE] = ACTIONS(7998), + [anon_sym_LT] = ACTIONS(8000), + [anon_sym_GT] = ACTIONS(8000), + [anon_sym_GT_GT] = ACTIONS(7998), + [anon_sym_AMP_GT] = ACTIONS(8000), + [anon_sym_AMP_GT_GT] = ACTIONS(7998), + [anon_sym_LT_AMP] = ACTIONS(7998), + [anon_sym_GT_AMP] = ACTIONS(7998), + [anon_sym_LT_LT] = ACTIONS(8000), + [anon_sym_LT_LT_DASH] = ACTIONS(7998), + [anon_sym_LT_LT_LT] = ACTIONS(7998), + [anon_sym_BQUOTE] = ACTIONS(7998), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4727), - [anon_sym_LF] = ACTIONS(4725), - [anon_sym_AMP] = ACTIONS(4727), + [anon_sym_LF] = ACTIONS(7998), + [anon_sym_AMP] = ACTIONS(8000), }, [2862] = { - [sym__simple_heredoc_body] = ACTIONS(4729), - [sym__heredoc_body_beginning] = ACTIONS(4729), - [sym_file_descriptor] = ACTIONS(4729), - [sym__concat] = ACTIONS(4729), - [sym_variable_name] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_esac] = ACTIONS(4731), - [anon_sym_PIPE] = ACTIONS(4731), - [anon_sym_SEMI_SEMI] = ACTIONS(4729), - [anon_sym_PIPE_AMP] = ACTIONS(4729), - [anon_sym_AMP_AMP] = ACTIONS(4729), - [anon_sym_PIPE_PIPE] = ACTIONS(4729), - [anon_sym_LT] = ACTIONS(4731), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_GT_GT] = ACTIONS(4729), - [anon_sym_AMP_GT] = ACTIONS(4731), - [anon_sym_AMP_GT_GT] = ACTIONS(4729), - [anon_sym_LT_AMP] = ACTIONS(4729), - [anon_sym_GT_AMP] = ACTIONS(4729), - [anon_sym_LT_LT] = ACTIONS(4731), - [anon_sym_LT_LT_DASH] = ACTIONS(4729), - [anon_sym_LT_LT_LT] = ACTIONS(4729), - [sym__special_characters] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(4729), - [anon_sym_DOLLAR] = ACTIONS(4731), - [sym_raw_string] = ACTIONS(4729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4729), - [anon_sym_BQUOTE] = ACTIONS(4729), - [anon_sym_LT_LPAREN] = ACTIONS(4729), - [anon_sym_GT_LPAREN] = ACTIONS(4729), + [aux_sym_case_item_repeat1] = STATE(3357), + [aux_sym_concatenation_repeat1] = STATE(2231), + [sym__concat] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(5149), + [anon_sym_RPAREN] = ACTIONS(8002), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4731), - [anon_sym_LF] = ACTIONS(4729), - [anon_sym_AMP] = ACTIONS(4731), }, [2863] = { - [sym__simple_heredoc_body] = ACTIONS(4733), - [sym__heredoc_body_beginning] = ACTIONS(4733), - [sym_file_descriptor] = ACTIONS(4733), - [sym__concat] = ACTIONS(4733), - [sym_variable_name] = ACTIONS(4733), - [anon_sym_SEMI] = ACTIONS(4735), - [anon_sym_esac] = ACTIONS(4735), - [anon_sym_PIPE] = ACTIONS(4735), - [anon_sym_SEMI_SEMI] = ACTIONS(4733), - [anon_sym_PIPE_AMP] = ACTIONS(4733), - [anon_sym_AMP_AMP] = ACTIONS(4733), - [anon_sym_PIPE_PIPE] = ACTIONS(4733), - [anon_sym_LT] = ACTIONS(4735), - [anon_sym_GT] = ACTIONS(4735), - [anon_sym_GT_GT] = ACTIONS(4733), - [anon_sym_AMP_GT] = ACTIONS(4735), - [anon_sym_AMP_GT_GT] = ACTIONS(4733), - [anon_sym_LT_AMP] = ACTIONS(4733), - [anon_sym_GT_AMP] = ACTIONS(4733), - [anon_sym_LT_LT] = ACTIONS(4735), - [anon_sym_LT_LT_DASH] = ACTIONS(4733), - [anon_sym_LT_LT_LT] = ACTIONS(4733), - [sym__special_characters] = ACTIONS(4733), - [anon_sym_DQUOTE] = ACTIONS(4733), - [anon_sym_DOLLAR] = ACTIONS(4735), - [sym_raw_string] = ACTIONS(4733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4733), - [anon_sym_BQUOTE] = ACTIONS(4733), - [anon_sym_LT_LPAREN] = ACTIONS(4733), - [anon_sym_GT_LPAREN] = ACTIONS(4733), + [aux_sym_case_item_repeat1] = STATE(3359), + [aux_sym_concatenation_repeat1] = STATE(2231), + [sym__concat] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(5149), + [anon_sym_RPAREN] = ACTIONS(8004), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4735), - [anon_sym_LF] = ACTIONS(4733), - [anon_sym_AMP] = ACTIONS(4735), }, [2864] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6638), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [aux_sym_case_item_repeat1] = STATE(3359), + [anon_sym_PIPE] = ACTIONS(5149), + [anon_sym_RPAREN] = ACTIONS(8004), + [sym_comment] = ACTIONS(57), }, [2865] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6640), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [anon_sym_esac] = ACTIONS(8006), + [sym_comment] = ACTIONS(57), }, [2866] = { - [sym__simple_heredoc_body] = ACTIONS(4769), - [sym__heredoc_body_beginning] = ACTIONS(4769), - [sym_file_descriptor] = ACTIONS(4769), - [sym__concat] = ACTIONS(4769), - [sym_variable_name] = ACTIONS(4769), - [anon_sym_SEMI] = ACTIONS(4771), - [anon_sym_esac] = ACTIONS(4771), - [anon_sym_PIPE] = ACTIONS(4771), - [anon_sym_SEMI_SEMI] = ACTIONS(4769), - [anon_sym_PIPE_AMP] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4771), - [anon_sym_GT] = ACTIONS(4771), - [anon_sym_GT_GT] = ACTIONS(4769), - [anon_sym_AMP_GT] = ACTIONS(4771), - [anon_sym_AMP_GT_GT] = ACTIONS(4769), - [anon_sym_LT_AMP] = ACTIONS(4769), - [anon_sym_GT_AMP] = ACTIONS(4769), - [anon_sym_LT_LT] = ACTIONS(4771), - [anon_sym_LT_LT_DASH] = ACTIONS(4769), - [anon_sym_LT_LT_LT] = ACTIONS(4769), - [sym__special_characters] = ACTIONS(4769), - [anon_sym_DQUOTE] = ACTIONS(4769), - [anon_sym_DOLLAR] = ACTIONS(4771), - [sym_raw_string] = ACTIONS(4769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4769), - [anon_sym_BQUOTE] = ACTIONS(4769), - [anon_sym_LT_LPAREN] = ACTIONS(4769), - [anon_sym_GT_LPAREN] = ACTIONS(4769), + [sym__simple_heredoc_body] = ACTIONS(8008), + [sym__heredoc_body_beginning] = ACTIONS(8008), + [sym_file_descriptor] = ACTIONS(8008), + [ts_builtin_sym_end] = ACTIONS(8008), + [anon_sym_SEMI] = ACTIONS(8010), + [anon_sym_done] = ACTIONS(8008), + [anon_sym_fi] = ACTIONS(8008), + [anon_sym_elif] = ACTIONS(8008), + [anon_sym_else] = ACTIONS(8008), + [anon_sym_esac] = ACTIONS(8008), + [anon_sym_PIPE] = ACTIONS(8010), + [anon_sym_RPAREN] = ACTIONS(8008), + [anon_sym_SEMI_SEMI] = ACTIONS(8008), + [anon_sym_PIPE_AMP] = ACTIONS(8008), + [anon_sym_AMP_AMP] = ACTIONS(8008), + [anon_sym_PIPE_PIPE] = ACTIONS(8008), + [anon_sym_LT] = ACTIONS(8010), + [anon_sym_GT] = ACTIONS(8010), + [anon_sym_GT_GT] = ACTIONS(8008), + [anon_sym_AMP_GT] = ACTIONS(8010), + [anon_sym_AMP_GT_GT] = ACTIONS(8008), + [anon_sym_LT_AMP] = ACTIONS(8008), + [anon_sym_GT_AMP] = ACTIONS(8008), + [anon_sym_LT_LT] = ACTIONS(8010), + [anon_sym_LT_LT_DASH] = ACTIONS(8008), + [anon_sym_LT_LT_LT] = ACTIONS(8008), + [anon_sym_BQUOTE] = ACTIONS(8008), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4771), - [anon_sym_LF] = ACTIONS(4769), - [anon_sym_AMP] = ACTIONS(4771), + [anon_sym_LF] = ACTIONS(8008), + [anon_sym_AMP] = ACTIONS(8010), }, [2867] = { - [sym__simple_heredoc_body] = ACTIONS(4789), - [sym__heredoc_body_beginning] = ACTIONS(4789), - [sym_file_descriptor] = ACTIONS(4789), - [sym__concat] = ACTIONS(4789), - [sym_variable_name] = ACTIONS(4789), - [anon_sym_SEMI] = ACTIONS(4791), - [anon_sym_esac] = ACTIONS(4791), - [anon_sym_PIPE] = ACTIONS(4791), - [anon_sym_SEMI_SEMI] = ACTIONS(4789), - [anon_sym_PIPE_AMP] = ACTIONS(4789), - [anon_sym_AMP_AMP] = ACTIONS(4789), - [anon_sym_PIPE_PIPE] = ACTIONS(4789), - [anon_sym_LT] = ACTIONS(4791), - [anon_sym_GT] = ACTIONS(4791), - [anon_sym_GT_GT] = ACTIONS(4789), - [anon_sym_AMP_GT] = ACTIONS(4791), - [anon_sym_AMP_GT_GT] = ACTIONS(4789), - [anon_sym_LT_AMP] = ACTIONS(4789), - [anon_sym_GT_AMP] = ACTIONS(4789), - [anon_sym_LT_LT] = ACTIONS(4791), - [anon_sym_LT_LT_DASH] = ACTIONS(4789), - [anon_sym_LT_LT_LT] = ACTIONS(4789), - [sym__special_characters] = ACTIONS(4789), - [anon_sym_DQUOTE] = ACTIONS(4789), - [anon_sym_DOLLAR] = ACTIONS(4791), - [sym_raw_string] = ACTIONS(4789), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4789), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4789), - [anon_sym_BQUOTE] = ACTIONS(4789), - [anon_sym_LT_LPAREN] = ACTIONS(4789), - [anon_sym_GT_LPAREN] = ACTIONS(4789), + [anon_sym_esac] = ACTIONS(8012), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4791), - [anon_sym_LF] = ACTIONS(4789), - [anon_sym_AMP] = ACTIONS(4791), }, [2868] = { - [sym__simple_heredoc_body] = ACTIONS(4793), - [sym__heredoc_body_beginning] = ACTIONS(4793), - [sym_file_descriptor] = ACTIONS(4793), - [sym__concat] = ACTIONS(4793), - [sym_variable_name] = ACTIONS(4793), - [anon_sym_SEMI] = ACTIONS(4795), - [anon_sym_esac] = ACTIONS(4795), - [anon_sym_PIPE] = ACTIONS(4795), - [anon_sym_SEMI_SEMI] = ACTIONS(4793), - [anon_sym_PIPE_AMP] = ACTIONS(4793), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_GT_GT] = ACTIONS(4793), - [anon_sym_AMP_GT] = ACTIONS(4795), - [anon_sym_AMP_GT_GT] = ACTIONS(4793), - [anon_sym_LT_AMP] = ACTIONS(4793), - [anon_sym_GT_AMP] = ACTIONS(4793), - [anon_sym_LT_LT] = ACTIONS(4795), - [anon_sym_LT_LT_DASH] = ACTIONS(4793), - [anon_sym_LT_LT_LT] = ACTIONS(4793), - [sym__special_characters] = ACTIONS(4793), - [anon_sym_DQUOTE] = ACTIONS(4793), - [anon_sym_DOLLAR] = ACTIONS(4795), - [sym_raw_string] = ACTIONS(4793), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4793), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4793), - [anon_sym_BQUOTE] = ACTIONS(4793), - [anon_sym_LT_LPAREN] = ACTIONS(4793), - [anon_sym_GT_LPAREN] = ACTIONS(4793), + [sym__concat] = ACTIONS(7025), + [anon_sym_in] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(4795), - [anon_sym_LF] = ACTIONS(4793), - [anon_sym_AMP] = ACTIONS(4795), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7025), }, [2869] = { - [sym__simple_heredoc_body] = ACTIONS(5216), - [sym__heredoc_body_beginning] = ACTIONS(5216), - [sym_file_descriptor] = ACTIONS(5216), - [sym__concat] = ACTIONS(5216), - [sym_variable_name] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5218), - [anon_sym_esac] = ACTIONS(5218), - [anon_sym_PIPE] = ACTIONS(5218), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [anon_sym_PIPE_AMP] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5218), - [anon_sym_GT] = ACTIONS(5218), - [anon_sym_GT_GT] = ACTIONS(5216), - [anon_sym_AMP_GT] = ACTIONS(5218), - [anon_sym_AMP_GT_GT] = ACTIONS(5216), - [anon_sym_LT_AMP] = ACTIONS(5216), - [anon_sym_GT_AMP] = ACTIONS(5216), - [anon_sym_LT_LT] = ACTIONS(5218), - [anon_sym_LT_LT_DASH] = ACTIONS(5216), - [anon_sym_LT_LT_LT] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5218), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(5216), + [sym__concat] = ACTIONS(7029), + [anon_sym_in] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5218), - [sym_word] = ACTIONS(5218), - [anon_sym_LF] = ACTIONS(5216), - [anon_sym_AMP] = ACTIONS(5218), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7029), }, [2870] = { - [sym__simple_heredoc_body] = ACTIONS(5220), - [sym__heredoc_body_beginning] = ACTIONS(5220), - [sym_file_descriptor] = ACTIONS(5220), - [sym__concat] = ACTIONS(5220), - [sym_variable_name] = ACTIONS(5220), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_esac] = ACTIONS(5222), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_SEMI_SEMI] = ACTIONS(5220), - [anon_sym_PIPE_AMP] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_GT_GT] = ACTIONS(5220), - [anon_sym_AMP_GT] = ACTIONS(5222), - [anon_sym_AMP_GT_GT] = ACTIONS(5220), - [anon_sym_LT_AMP] = ACTIONS(5220), - [anon_sym_GT_AMP] = ACTIONS(5220), - [anon_sym_LT_LT] = ACTIONS(5222), - [anon_sym_LT_LT_DASH] = ACTIONS(5220), - [anon_sym_LT_LT_LT] = ACTIONS(5220), - [sym__special_characters] = ACTIONS(5220), - [anon_sym_DQUOTE] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [anon_sym_LT_LPAREN] = ACTIONS(5220), - [anon_sym_GT_LPAREN] = ACTIONS(5220), + [sym__concat] = ACTIONS(7033), + [anon_sym_in] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5222), - [sym_word] = ACTIONS(5222), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5222), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7033), }, [2871] = { - [sym__simple_heredoc_body] = ACTIONS(5216), - [sym__heredoc_body_beginning] = ACTIONS(5216), - [sym_file_descriptor] = ACTIONS(5216), - [sym__concat] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5218), - [anon_sym_esac] = ACTIONS(5218), - [anon_sym_PIPE] = ACTIONS(5218), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [anon_sym_PIPE_AMP] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5218), - [anon_sym_GT] = ACTIONS(5218), - [anon_sym_GT_GT] = ACTIONS(5216), - [anon_sym_AMP_GT] = ACTIONS(5218), - [anon_sym_AMP_GT_GT] = ACTIONS(5216), - [anon_sym_LT_AMP] = ACTIONS(5216), - [anon_sym_GT_AMP] = ACTIONS(5216), - [anon_sym_LT_LT] = ACTIONS(5218), - [anon_sym_LT_LT_DASH] = ACTIONS(5216), - [anon_sym_LT_LT_LT] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5218), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(5216), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5218), - [sym_word] = ACTIONS(5218), - [anon_sym_LF] = ACTIONS(5216), - [anon_sym_AMP] = ACTIONS(5218), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8014), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2872] = { - [sym__simple_heredoc_body] = ACTIONS(5220), - [sym__heredoc_body_beginning] = ACTIONS(5220), - [sym_file_descriptor] = ACTIONS(5220), - [sym__concat] = ACTIONS(5220), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_esac] = ACTIONS(5222), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_SEMI_SEMI] = ACTIONS(5220), - [anon_sym_PIPE_AMP] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_GT_GT] = ACTIONS(5220), - [anon_sym_AMP_GT] = ACTIONS(5222), - [anon_sym_AMP_GT_GT] = ACTIONS(5220), - [anon_sym_LT_AMP] = ACTIONS(5220), - [anon_sym_GT_AMP] = ACTIONS(5220), - [anon_sym_LT_LT] = ACTIONS(5222), - [anon_sym_LT_LT_DASH] = ACTIONS(5220), - [anon_sym_LT_LT_LT] = ACTIONS(5220), - [sym__special_characters] = ACTIONS(5220), - [anon_sym_DQUOTE] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [anon_sym_LT_LPAREN] = ACTIONS(5220), - [anon_sym_GT_LPAREN] = ACTIONS(5220), - [sym_comment] = ACTIONS(57), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5222), - [sym_word] = ACTIONS(5222), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5222), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8016), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2873] = { - [sym__simple_heredoc_body] = ACTIONS(4725), - [sym__heredoc_body_beginning] = ACTIONS(4725), - [sym_file_descriptor] = ACTIONS(4725), - [sym__concat] = ACTIONS(4725), - [anon_sym_SEMI] = ACTIONS(4727), - [anon_sym_esac] = ACTIONS(4725), - [anon_sym_PIPE] = ACTIONS(4727), - [anon_sym_SEMI_SEMI] = ACTIONS(4725), - [anon_sym_PIPE_AMP] = ACTIONS(4725), - [anon_sym_AMP_AMP] = ACTIONS(4725), - [anon_sym_PIPE_PIPE] = ACTIONS(4725), - [anon_sym_LT] = ACTIONS(4727), - [anon_sym_GT] = ACTIONS(4727), - [anon_sym_GT_GT] = ACTIONS(4725), - [anon_sym_AMP_GT] = ACTIONS(4727), - [anon_sym_AMP_GT_GT] = ACTIONS(4725), - [anon_sym_LT_AMP] = ACTIONS(4725), - [anon_sym_GT_AMP] = ACTIONS(4725), - [anon_sym_LT_LT] = ACTIONS(4727), - [anon_sym_LT_LT_DASH] = ACTIONS(4725), - [anon_sym_LT_LT_LT] = ACTIONS(4725), + [sym__concat] = ACTIONS(7069), + [anon_sym_in] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4725), - [anon_sym_AMP] = ACTIONS(4727), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7069), }, [2874] = { - [sym__simple_heredoc_body] = ACTIONS(4729), - [sym__heredoc_body_beginning] = ACTIONS(4729), - [sym_file_descriptor] = ACTIONS(4729), - [sym__concat] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_esac] = ACTIONS(4729), - [anon_sym_PIPE] = ACTIONS(4731), - [anon_sym_SEMI_SEMI] = ACTIONS(4729), - [anon_sym_PIPE_AMP] = ACTIONS(4729), - [anon_sym_AMP_AMP] = ACTIONS(4729), - [anon_sym_PIPE_PIPE] = ACTIONS(4729), - [anon_sym_LT] = ACTIONS(4731), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_GT_GT] = ACTIONS(4729), - [anon_sym_AMP_GT] = ACTIONS(4731), - [anon_sym_AMP_GT_GT] = ACTIONS(4729), - [anon_sym_LT_AMP] = ACTIONS(4729), - [anon_sym_GT_AMP] = ACTIONS(4729), - [anon_sym_LT_LT] = ACTIONS(4731), - [anon_sym_LT_LT_DASH] = ACTIONS(4729), - [anon_sym_LT_LT_LT] = ACTIONS(4729), + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [sym_variable_name] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_RBRACE] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4729), - [anon_sym_AMP] = ACTIONS(4731), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), }, [2875] = { - [sym__simple_heredoc_body] = ACTIONS(4733), - [sym__heredoc_body_beginning] = ACTIONS(4733), - [sym_file_descriptor] = ACTIONS(4733), - [sym__concat] = ACTIONS(4733), - [anon_sym_SEMI] = ACTIONS(4735), - [anon_sym_esac] = ACTIONS(4733), - [anon_sym_PIPE] = ACTIONS(4735), - [anon_sym_SEMI_SEMI] = ACTIONS(4733), - [anon_sym_PIPE_AMP] = ACTIONS(4733), - [anon_sym_AMP_AMP] = ACTIONS(4733), - [anon_sym_PIPE_PIPE] = ACTIONS(4733), - [anon_sym_LT] = ACTIONS(4735), - [anon_sym_GT] = ACTIONS(4735), - [anon_sym_GT_GT] = ACTIONS(4733), - [anon_sym_AMP_GT] = ACTIONS(4735), - [anon_sym_AMP_GT_GT] = ACTIONS(4733), - [anon_sym_LT_AMP] = ACTIONS(4733), - [anon_sym_GT_AMP] = ACTIONS(4733), - [anon_sym_LT_LT] = ACTIONS(4735), - [anon_sym_LT_LT_DASH] = ACTIONS(4733), - [anon_sym_LT_LT_LT] = ACTIONS(4733), + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [sym_variable_name] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4017), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4733), - [anon_sym_AMP] = ACTIONS(4735), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), }, [2876] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6642), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8018), + [sym_comment] = ACTIONS(57), }, [2877] = { - [sym_concatenation] = STATE(942), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_string_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), - [aux_sym_expansion_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(6644), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1882), - [anon_sym_COLON_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LT_LPAREN] = ACTIONS(863), - [anon_sym_GT_LPAREN] = ACTIONS(863), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(865), + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8020), + [sym_comment] = ACTIONS(57), }, [2878] = { - [sym__simple_heredoc_body] = ACTIONS(4769), - [sym__heredoc_body_beginning] = ACTIONS(4769), - [sym_file_descriptor] = ACTIONS(4769), - [sym__concat] = ACTIONS(4769), - [anon_sym_SEMI] = ACTIONS(4771), - [anon_sym_esac] = ACTIONS(4769), - [anon_sym_PIPE] = ACTIONS(4771), - [anon_sym_SEMI_SEMI] = ACTIONS(4769), - [anon_sym_PIPE_AMP] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4771), - [anon_sym_GT] = ACTIONS(4771), - [anon_sym_GT_GT] = ACTIONS(4769), - [anon_sym_AMP_GT] = ACTIONS(4771), - [anon_sym_AMP_GT_GT] = ACTIONS(4769), - [anon_sym_LT_AMP] = ACTIONS(4769), - [anon_sym_GT_AMP] = ACTIONS(4769), - [anon_sym_LT_LT] = ACTIONS(4771), - [anon_sym_LT_LT_DASH] = ACTIONS(4769), - [anon_sym_LT_LT_LT] = ACTIONS(4769), + [anon_sym_RBRACE] = ACTIONS(8020), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4769), - [anon_sym_AMP] = ACTIONS(4771), }, [2879] = { - [sym__simple_heredoc_body] = ACTIONS(4789), - [sym__heredoc_body_beginning] = ACTIONS(4789), - [sym_file_descriptor] = ACTIONS(4789), - [sym__concat] = ACTIONS(4789), - [anon_sym_SEMI] = ACTIONS(4791), - [anon_sym_esac] = ACTIONS(4789), - [anon_sym_PIPE] = ACTIONS(4791), - [anon_sym_SEMI_SEMI] = ACTIONS(4789), - [anon_sym_PIPE_AMP] = ACTIONS(4789), - [anon_sym_AMP_AMP] = ACTIONS(4789), - [anon_sym_PIPE_PIPE] = ACTIONS(4789), - [anon_sym_LT] = ACTIONS(4791), - [anon_sym_GT] = ACTIONS(4791), - [anon_sym_GT_GT] = ACTIONS(4789), - [anon_sym_AMP_GT] = ACTIONS(4791), - [anon_sym_AMP_GT_GT] = ACTIONS(4789), - [anon_sym_LT_AMP] = ACTIONS(4789), - [anon_sym_GT_AMP] = ACTIONS(4789), - [anon_sym_LT_LT] = ACTIONS(4791), - [anon_sym_LT_LT_DASH] = ACTIONS(4789), - [anon_sym_LT_LT_LT] = ACTIONS(4789), + [sym_concatenation] = STATE(3368), + [sym_string] = STATE(3367), + [sym_simple_expansion] = STATE(3367), + [sym_string_expansion] = STATE(3367), + [sym_expansion] = STATE(3367), + [sym_command_substitution] = STATE(3367), + [sym_process_substitution] = STATE(3367), + [anon_sym_RBRACE] = ACTIONS(8020), + [sym__special_characters] = ACTIONS(8022), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(8024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4789), - [anon_sym_AMP] = ACTIONS(4791), + [sym_word] = ACTIONS(8024), }, [2880] = { - [sym__simple_heredoc_body] = ACTIONS(4793), - [sym__heredoc_body_beginning] = ACTIONS(4793), - [sym_file_descriptor] = ACTIONS(4793), - [sym__concat] = ACTIONS(4793), - [anon_sym_SEMI] = ACTIONS(4795), - [anon_sym_esac] = ACTIONS(4793), - [anon_sym_PIPE] = ACTIONS(4795), - [anon_sym_SEMI_SEMI] = ACTIONS(4793), - [anon_sym_PIPE_AMP] = ACTIONS(4793), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_GT_GT] = ACTIONS(4793), - [anon_sym_AMP_GT] = ACTIONS(4795), - [anon_sym_AMP_GT_GT] = ACTIONS(4793), - [anon_sym_LT_AMP] = ACTIONS(4793), - [anon_sym_GT_AMP] = ACTIONS(4793), - [anon_sym_LT_LT] = ACTIONS(4795), - [anon_sym_LT_LT_DASH] = ACTIONS(4793), - [anon_sym_LT_LT_LT] = ACTIONS(4793), + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [sym_variable_name] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_RBRACE] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4053), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(4793), - [anon_sym_AMP] = ACTIONS(4795), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), }, [2881] = { - [sym__simple_heredoc_body] = ACTIONS(5216), - [sym__heredoc_body_beginning] = ACTIONS(5216), - [sym_file_descriptor] = ACTIONS(5216), - [sym__concat] = ACTIONS(5216), - [sym_variable_name] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5218), - [anon_sym_esac] = ACTIONS(5218), - [anon_sym_PIPE] = ACTIONS(5218), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [anon_sym_PIPE_AMP] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5218), - [anon_sym_GT] = ACTIONS(5218), - [anon_sym_GT_GT] = ACTIONS(5216), - [anon_sym_AMP_GT] = ACTIONS(5218), - [anon_sym_AMP_GT_GT] = ACTIONS(5216), - [anon_sym_LT_AMP] = ACTIONS(5216), - [anon_sym_GT_AMP] = ACTIONS(5216), - [anon_sym_LT_LT] = ACTIONS(5218), - [anon_sym_LT_LT_DASH] = ACTIONS(5216), - [anon_sym_LT_LT_LT] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5218), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(5216), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5218), - [anon_sym_LF] = ACTIONS(5216), - [anon_sym_AMP] = ACTIONS(5218), + [sym_concatenation] = STATE(3371), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3371), + [sym_regex] = ACTIONS(8026), + [anon_sym_RBRACE] = ACTIONS(8028), + [anon_sym_EQ] = ACTIONS(8030), + [anon_sym_DASH] = ACTIONS(8030), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8030), + [anon_sym_COLON_QMARK] = ACTIONS(8030), + [anon_sym_COLON_DASH] = ACTIONS(8030), + [anon_sym_PERCENT] = ACTIONS(8030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2882] = { - [sym__simple_heredoc_body] = ACTIONS(5220), - [sym__heredoc_body_beginning] = ACTIONS(5220), - [sym_file_descriptor] = ACTIONS(5220), - [sym__concat] = ACTIONS(5220), - [sym_variable_name] = ACTIONS(5220), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_esac] = ACTIONS(5222), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_SEMI_SEMI] = ACTIONS(5220), - [anon_sym_PIPE_AMP] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_GT_GT] = ACTIONS(5220), - [anon_sym_AMP_GT] = ACTIONS(5222), - [anon_sym_AMP_GT_GT] = ACTIONS(5220), - [anon_sym_LT_AMP] = ACTIONS(5220), - [anon_sym_GT_AMP] = ACTIONS(5220), - [anon_sym_LT_LT] = ACTIONS(5222), - [anon_sym_LT_LT_DASH] = ACTIONS(5220), - [anon_sym_LT_LT_LT] = ACTIONS(5220), - [sym__special_characters] = ACTIONS(5220), - [anon_sym_DQUOTE] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [anon_sym_LT_LPAREN] = ACTIONS(5220), - [anon_sym_GT_LPAREN] = ACTIONS(5220), - [sym_comment] = ACTIONS(57), - [sym_word] = ACTIONS(5222), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5222), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8028), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2883] = { - [sym__simple_heredoc_body] = ACTIONS(5216), - [sym__heredoc_body_beginning] = ACTIONS(5216), - [sym_file_descriptor] = ACTIONS(5216), - [sym__concat] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5218), - [anon_sym_esac] = ACTIONS(5216), - [anon_sym_PIPE] = ACTIONS(5218), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [anon_sym_PIPE_AMP] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5218), - [anon_sym_GT] = ACTIONS(5218), - [anon_sym_GT_GT] = ACTIONS(5216), - [anon_sym_AMP_GT] = ACTIONS(5218), - [anon_sym_AMP_GT_GT] = ACTIONS(5216), - [anon_sym_LT_AMP] = ACTIONS(5216), - [anon_sym_GT_AMP] = ACTIONS(5216), - [anon_sym_LT_LT] = ACTIONS(5218), - [anon_sym_LT_LT_DASH] = ACTIONS(5216), - [anon_sym_LT_LT_LT] = ACTIONS(5216), - [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5216), - [anon_sym_AMP] = ACTIONS(5218), + [sym_concatenation] = STATE(3373), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3373), + [sym_regex] = ACTIONS(8034), + [anon_sym_RBRACE] = ACTIONS(8020), + [anon_sym_EQ] = ACTIONS(8036), + [anon_sym_DASH] = ACTIONS(8036), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8036), + [anon_sym_COLON_QMARK] = ACTIONS(8036), + [anon_sym_COLON_DASH] = ACTIONS(8036), + [anon_sym_PERCENT] = ACTIONS(8036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), }, [2884] = { - [sym__simple_heredoc_body] = ACTIONS(5220), - [sym__heredoc_body_beginning] = ACTIONS(5220), - [sym_file_descriptor] = ACTIONS(5220), - [sym__concat] = ACTIONS(5220), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_esac] = ACTIONS(5220), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_SEMI_SEMI] = ACTIONS(5220), - [anon_sym_PIPE_AMP] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_GT_GT] = ACTIONS(5220), - [anon_sym_AMP_GT] = ACTIONS(5222), - [anon_sym_AMP_GT_GT] = ACTIONS(5220), - [anon_sym_LT_AMP] = ACTIONS(5220), - [anon_sym_GT_AMP] = ACTIONS(5220), - [anon_sym_LT_LT] = ACTIONS(5222), - [anon_sym_LT_LT_DASH] = ACTIONS(5220), - [anon_sym_LT_LT_LT] = ACTIONS(5220), + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8020), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2885] = { + [sym_concatenation] = STATE(3375), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3375), + [anon_sym_RBRACE] = ACTIONS(8040), + [anon_sym_EQ] = ACTIONS(8042), + [anon_sym_DASH] = ACTIONS(8042), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8042), + [anon_sym_COLON_QMARK] = ACTIONS(8042), + [anon_sym_COLON_DASH] = ACTIONS(8042), + [anon_sym_PERCENT] = ACTIONS(8042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2886] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [sym_variable_name] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_RBRACE] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), [sym_comment] = ACTIONS(57), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5222), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [2887] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8040), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2888] = { + [sym_concatenation] = STATE(3373), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3373), + [anon_sym_RBRACE] = ACTIONS(8020), + [anon_sym_EQ] = ACTIONS(8036), + [anon_sym_DASH] = ACTIONS(8036), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8036), + [anon_sym_COLON_QMARK] = ACTIONS(8036), + [anon_sym_COLON_DASH] = ACTIONS(8036), + [anon_sym_PERCENT] = ACTIONS(8036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2889] = { + [sym_do_group] = STATE(3376), + [sym_compound_statement] = STATE(3376), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(191), + [sym_comment] = ACTIONS(57), + }, + [2890] = { + [sym__simple_heredoc_body] = ACTIONS(5745), + [sym__heredoc_body_beginning] = ACTIONS(5745), + [sym_file_descriptor] = ACTIONS(5745), + [anon_sym_SEMI] = ACTIONS(5747), + [anon_sym_PIPE] = ACTIONS(5747), + [anon_sym_SEMI_SEMI] = ACTIONS(5745), + [anon_sym_RBRACE] = ACTIONS(5745), + [anon_sym_PIPE_AMP] = ACTIONS(5745), + [anon_sym_AMP_AMP] = ACTIONS(5745), + [anon_sym_PIPE_PIPE] = ACTIONS(5745), + [anon_sym_LT] = ACTIONS(5747), + [anon_sym_GT] = ACTIONS(5747), + [anon_sym_GT_GT] = ACTIONS(5745), + [anon_sym_AMP_GT] = ACTIONS(5747), + [anon_sym_AMP_GT_GT] = ACTIONS(5745), + [anon_sym_LT_AMP] = ACTIONS(5745), + [anon_sym_GT_AMP] = ACTIONS(5745), + [anon_sym_LT_LT] = ACTIONS(5747), + [anon_sym_LT_LT_DASH] = ACTIONS(5745), + [anon_sym_LT_LT_LT] = ACTIONS(5745), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5745), + [anon_sym_AMP] = ACTIONS(5747), + }, + [2891] = { + [sym_do_group] = STATE(3376), + [sym_compound_statement] = STATE(3376), + [anon_sym_SEMI] = ACTIONS(8046), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(191), + [sym_comment] = ACTIONS(57), + }, + [2892] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(8048), + [anon_sym_AMP_AMP] = ACTIONS(553), + [anon_sym_PIPE_PIPE] = ACTIONS(553), + [anon_sym_EQ_TILDE] = ACTIONS(555), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_PLUS_EQ] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_DASH_EQ] = ACTIONS(553), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(553), + }, + [2893] = { + [sym__expression] = STATE(3379), + [sym_binary_expression] = STATE(3379), + [sym_unary_expression] = STATE(3379), + [sym_postfix_expression] = STATE(3379), + [sym_parenthesized_expression] = STATE(3379), + [sym_concatenation] = STATE(3379), + [sym_string] = STATE(46), + [sym_simple_expansion] = STATE(46), + [sym_string_expansion] = STATE(46), + [sym_expansion] = STATE(46), + [sym_command_substitution] = STATE(46), + [sym_process_substitution] = STATE(46), + [anon_sym_RPAREN_RPAREN] = ACTIONS(8048), + [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), + }, + [2894] = { + [sym__simple_heredoc_body] = ACTIONS(5818), + [sym__heredoc_body_beginning] = ACTIONS(5818), + [sym_file_descriptor] = ACTIONS(5818), + [anon_sym_SEMI] = ACTIONS(5820), + [anon_sym_PIPE] = ACTIONS(5820), + [anon_sym_SEMI_SEMI] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(5818), + [anon_sym_PIPE_AMP] = ACTIONS(5818), + [anon_sym_AMP_AMP] = ACTIONS(5818), + [anon_sym_PIPE_PIPE] = ACTIONS(5818), + [anon_sym_LT] = ACTIONS(5820), + [anon_sym_GT] = ACTIONS(5820), + [anon_sym_GT_GT] = ACTIONS(5818), + [anon_sym_AMP_GT] = ACTIONS(5820), + [anon_sym_AMP_GT_GT] = ACTIONS(5818), + [anon_sym_LT_AMP] = ACTIONS(5818), + [anon_sym_GT_AMP] = ACTIONS(5818), + [anon_sym_LT_LT] = ACTIONS(5820), + [anon_sym_LT_LT_DASH] = ACTIONS(5818), + [anon_sym_LT_LT_LT] = ACTIONS(5818), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5818), + [anon_sym_AMP] = ACTIONS(5820), + }, + [2895] = { + [sym__simple_heredoc_body] = ACTIONS(6621), + [sym__heredoc_body_beginning] = ACTIONS(6621), + [sym_file_descriptor] = ACTIONS(6621), + [anon_sym_SEMI] = ACTIONS(6623), + [anon_sym_PIPE] = ACTIONS(6623), + [anon_sym_SEMI_SEMI] = ACTIONS(6621), + [anon_sym_RBRACE] = ACTIONS(6621), + [anon_sym_PIPE_AMP] = ACTIONS(6621), + [anon_sym_AMP_AMP] = ACTIONS(6621), + [anon_sym_PIPE_PIPE] = ACTIONS(6621), + [anon_sym_LT] = ACTIONS(6623), + [anon_sym_GT] = ACTIONS(6623), + [anon_sym_GT_GT] = ACTIONS(6621), + [anon_sym_AMP_GT] = ACTIONS(6623), + [anon_sym_AMP_GT_GT] = ACTIONS(6621), + [anon_sym_LT_AMP] = ACTIONS(6621), + [anon_sym_GT_AMP] = ACTIONS(6621), + [anon_sym_LT_LT] = ACTIONS(6623), + [anon_sym_LT_LT_DASH] = ACTIONS(6621), + [anon_sym_LT_LT_LT] = ACTIONS(6621), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6621), + [anon_sym_AMP] = ACTIONS(6623), + }, + [2896] = { + [anon_sym_fi] = ACTIONS(8050), + [sym_comment] = ACTIONS(57), + }, + [2897] = { + [sym__simple_heredoc_body] = ACTIONS(6719), + [sym__heredoc_body_beginning] = ACTIONS(6719), + [sym_file_descriptor] = ACTIONS(6719), + [anon_sym_SEMI] = ACTIONS(6721), + [anon_sym_PIPE] = ACTIONS(6721), + [anon_sym_SEMI_SEMI] = ACTIONS(6719), + [anon_sym_RBRACE] = ACTIONS(6719), + [anon_sym_PIPE_AMP] = ACTIONS(6719), + [anon_sym_AMP_AMP] = ACTIONS(6719), + [anon_sym_PIPE_PIPE] = ACTIONS(6719), + [anon_sym_LT] = ACTIONS(6721), + [anon_sym_GT] = ACTIONS(6721), + [anon_sym_GT_GT] = ACTIONS(6719), + [anon_sym_AMP_GT] = ACTIONS(6721), + [anon_sym_AMP_GT_GT] = ACTIONS(6719), + [anon_sym_LT_AMP] = ACTIONS(6719), + [anon_sym_GT_AMP] = ACTIONS(6719), + [anon_sym_LT_LT] = ACTIONS(6721), + [anon_sym_LT_LT_DASH] = ACTIONS(6719), + [anon_sym_LT_LT_LT] = ACTIONS(6719), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6719), + [anon_sym_AMP] = ACTIONS(6721), + }, + [2898] = { + [anon_sym_esac] = ACTIONS(8052), + [sym_comment] = ACTIONS(57), + }, + [2899] = { + [sym_case_item] = STATE(2236), + [sym_last_case_item] = STATE(3382), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2236), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3413), + }, + [2900] = { + [sym__simple_heredoc_body] = ACTIONS(6749), + [sym__heredoc_body_beginning] = ACTIONS(6749), + [sym_file_descriptor] = ACTIONS(6749), + [anon_sym_SEMI] = ACTIONS(6751), + [anon_sym_PIPE] = ACTIONS(6751), + [anon_sym_SEMI_SEMI] = ACTIONS(6749), + [anon_sym_RBRACE] = ACTIONS(6749), + [anon_sym_PIPE_AMP] = ACTIONS(6749), + [anon_sym_AMP_AMP] = ACTIONS(6749), + [anon_sym_PIPE_PIPE] = ACTIONS(6749), + [anon_sym_LT] = ACTIONS(6751), + [anon_sym_GT] = ACTIONS(6751), + [anon_sym_GT_GT] = ACTIONS(6749), + [anon_sym_AMP_GT] = ACTIONS(6751), + [anon_sym_AMP_GT_GT] = ACTIONS(6749), + [anon_sym_LT_AMP] = ACTIONS(6749), + [anon_sym_GT_AMP] = ACTIONS(6749), + [anon_sym_LT_LT] = ACTIONS(6751), + [anon_sym_LT_LT_DASH] = ACTIONS(6749), + [anon_sym_LT_LT_LT] = ACTIONS(6749), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6749), + [anon_sym_AMP] = ACTIONS(6751), + }, + [2901] = { + [anon_sym_esac] = ACTIONS(8054), + [sym_comment] = ACTIONS(57), + }, + [2902] = { + [sym_case_item] = STATE(2236), + [sym_last_case_item] = STATE(3384), + [sym_concatenation] = STATE(1556), + [sym_string] = STATE(1554), + [sym_simple_expansion] = STATE(1554), + [sym_string_expansion] = STATE(1554), + [sym_expansion] = STATE(1554), + [sym_command_substitution] = STATE(1554), + [sym_process_substitution] = STATE(1554), + [aux_sym_case_statement_repeat1] = STATE(2236), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(511), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3413), + }, + [2903] = { + [sym__simple_heredoc_body] = ACTIONS(4334), + [sym__heredoc_body_beginning] = ACTIONS(4334), + [sym_file_descriptor] = ACTIONS(4334), + [sym_variable_name] = ACTIONS(4334), + [anon_sym_SEMI] = ACTIONS(4336), + [anon_sym_PIPE] = ACTIONS(4336), + [anon_sym_SEMI_SEMI] = ACTIONS(4334), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_PIPE_AMP] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4336), + [anon_sym_GT] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4334), + [anon_sym_AMP_GT] = ACTIONS(4336), + [anon_sym_AMP_GT_GT] = ACTIONS(4334), + [anon_sym_LT_AMP] = ACTIONS(4334), + [anon_sym_GT_AMP] = ACTIONS(4334), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_LT_LT_DASH] = ACTIONS(4334), + [anon_sym_LT_LT_LT] = ACTIONS(4334), + [sym__special_characters] = ACTIONS(4336), + [anon_sym_DQUOTE] = ACTIONS(4334), + [anon_sym_DOLLAR] = ACTIONS(4336), + [sym_raw_string] = ACTIONS(4334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4334), + [anon_sym_BQUOTE] = ACTIONS(4334), + [anon_sym_LT_LPAREN] = ACTIONS(4334), + [anon_sym_GT_LPAREN] = ACTIONS(4334), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4336), + [sym_word] = ACTIONS(4336), + [anon_sym_LF] = ACTIONS(4334), + [anon_sym_AMP] = ACTIONS(4336), + }, + [2904] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [sym_variable_name] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_RBRACE] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5527), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5527), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [2905] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [sym_variable_name] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_RBRACE] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5535), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5535), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [2906] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8056), + [sym_comment] = ACTIONS(57), + }, + [2907] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8058), + [sym_comment] = ACTIONS(57), + }, + [2908] = { + [anon_sym_RBRACE] = ACTIONS(8058), + [sym_comment] = ACTIONS(57), + }, + [2909] = { + [sym_concatenation] = STATE(3388), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3388), + [anon_sym_RBRACE] = ACTIONS(8060), + [anon_sym_EQ] = ACTIONS(8062), + [anon_sym_DASH] = ACTIONS(8062), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8064), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8062), + [anon_sym_COLON_QMARK] = ACTIONS(8062), + [anon_sym_COLON_DASH] = ACTIONS(8062), + [anon_sym_PERCENT] = ACTIONS(8062), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2910] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [sym_variable_name] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_RBRACE] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5579), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5579), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [2911] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8060), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2912] = { + [sym_concatenation] = STATE(3389), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3389), + [anon_sym_RBRACE] = ACTIONS(8058), + [anon_sym_EQ] = ACTIONS(8066), + [anon_sym_DASH] = ACTIONS(8066), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8066), + [anon_sym_COLON_QMARK] = ACTIONS(8066), + [anon_sym_COLON_DASH] = ACTIONS(8066), + [anon_sym_PERCENT] = ACTIONS(8066), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2913] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8058), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2914] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [sym_variable_name] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_RBRACE] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5624), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5624), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [2915] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8070), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2916] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_RBRACE] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5527), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5527), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [2917] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_RBRACE] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5535), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5535), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [2918] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8072), + [sym_comment] = ACTIONS(57), + }, + [2919] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8074), + [sym_comment] = ACTIONS(57), + }, + [2920] = { + [anon_sym_RBRACE] = ACTIONS(8074), + [sym_comment] = ACTIONS(57), + }, + [2921] = { + [sym_concatenation] = STATE(3394), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3394), + [anon_sym_RBRACE] = ACTIONS(8076), + [anon_sym_EQ] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(8078), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8080), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8078), + [anon_sym_COLON_QMARK] = ACTIONS(8078), + [anon_sym_COLON_DASH] = ACTIONS(8078), + [anon_sym_PERCENT] = ACTIONS(8078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2922] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_RBRACE] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5579), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5579), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [2923] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8076), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2924] = { + [sym_concatenation] = STATE(3395), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3395), + [anon_sym_RBRACE] = ACTIONS(8074), + [anon_sym_EQ] = ACTIONS(8082), + [anon_sym_DASH] = ACTIONS(8082), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8082), + [anon_sym_COLON_QMARK] = ACTIONS(8082), + [anon_sym_COLON_DASH] = ACTIONS(8082), + [anon_sym_PERCENT] = ACTIONS(8082), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2925] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8074), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2926] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_RBRACE] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5624), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5624), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [2927] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8086), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2928] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_RBRACE] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_EQ_TILDE] = ACTIONS(7027), + [anon_sym_EQ_EQ] = ACTIONS(7027), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7027), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [2929] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_RBRACE] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_EQ_TILDE] = ACTIONS(7031), + [anon_sym_EQ_EQ] = ACTIONS(7031), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7031), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [2930] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_RBRACE] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_EQ_TILDE] = ACTIONS(7035), + [anon_sym_EQ_EQ] = ACTIONS(7035), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7035), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [2931] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8088), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2932] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8090), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2933] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_RBRACE] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_EQ_TILDE] = ACTIONS(7071), + [anon_sym_EQ_EQ] = ACTIONS(7071), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7071), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [2934] = { + [sym__concat] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_RBRACK] = ACTIONS(7025), + [anon_sym_EQ_TILDE] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7025), + [anon_sym_EQ] = ACTIONS(7027), + [anon_sym_PLUS_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_BANG_EQ] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7027), + [anon_sym_DASH] = ACTIONS(7027), + [anon_sym_DASH_EQ] = ACTIONS(7025), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7025), + [anon_sym_PLUS_PLUS] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(7025), + }, + [2935] = { + [sym__concat] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_RBRACK] = ACTIONS(7029), + [anon_sym_EQ_TILDE] = ACTIONS(7029), + [anon_sym_EQ_EQ] = ACTIONS(7029), + [anon_sym_EQ] = ACTIONS(7031), + [anon_sym_PLUS_EQ] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_BANG_EQ] = ACTIONS(7029), + [anon_sym_PLUS] = ACTIONS(7031), + [anon_sym_DASH] = ACTIONS(7031), + [anon_sym_DASH_EQ] = ACTIONS(7029), + [anon_sym_LT_EQ] = ACTIONS(7029), + [anon_sym_GT_EQ] = ACTIONS(7029), + [anon_sym_PLUS_PLUS] = ACTIONS(7029), + [anon_sym_DASH_DASH] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(7029), + }, + [2936] = { + [sym__concat] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_RBRACK] = ACTIONS(7033), + [anon_sym_EQ_TILDE] = ACTIONS(7033), + [anon_sym_EQ_EQ] = ACTIONS(7033), + [anon_sym_EQ] = ACTIONS(7035), + [anon_sym_PLUS_EQ] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_BANG_EQ] = ACTIONS(7033), + [anon_sym_PLUS] = ACTIONS(7035), + [anon_sym_DASH] = ACTIONS(7035), + [anon_sym_DASH_EQ] = ACTIONS(7033), + [anon_sym_LT_EQ] = ACTIONS(7033), + [anon_sym_GT_EQ] = ACTIONS(7033), + [anon_sym_PLUS_PLUS] = ACTIONS(7033), + [anon_sym_DASH_DASH] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(7033), + }, + [2937] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8092), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2938] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8094), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2939] = { + [sym__concat] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_RBRACK] = ACTIONS(7069), + [anon_sym_EQ_TILDE] = ACTIONS(7069), + [anon_sym_EQ_EQ] = ACTIONS(7069), + [anon_sym_EQ] = ACTIONS(7071), + [anon_sym_PLUS_EQ] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_BANG_EQ] = ACTIONS(7069), + [anon_sym_PLUS] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(7071), + [anon_sym_DASH_EQ] = ACTIONS(7069), + [anon_sym_LT_EQ] = ACTIONS(7069), + [anon_sym_GT_EQ] = ACTIONS(7069), + [anon_sym_PLUS_PLUS] = ACTIONS(7069), + [anon_sym_DASH_DASH] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(7069), + }, + [2940] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [sym_variable_name] = ACTIONS(7025), + [ts_builtin_sym_end] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_RPAREN] = ACTIONS(7025), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7027), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [2941] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [sym_variable_name] = ACTIONS(7029), + [ts_builtin_sym_end] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_RPAREN] = ACTIONS(7029), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7031), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [2942] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [sym_variable_name] = ACTIONS(7033), + [ts_builtin_sym_end] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_RPAREN] = ACTIONS(7033), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7035), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [2943] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8096), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2944] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8098), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2945] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [sym_variable_name] = ACTIONS(7069), + [ts_builtin_sym_end] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_RPAREN] = ACTIONS(7069), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7071), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [2946] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [ts_builtin_sym_end] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_RPAREN] = ACTIONS(7025), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7027), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [2947] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [ts_builtin_sym_end] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_RPAREN] = ACTIONS(7029), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7031), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [2948] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [ts_builtin_sym_end] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_RPAREN] = ACTIONS(7033), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7035), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [2949] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8100), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2950] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8102), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2951] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [ts_builtin_sym_end] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_RPAREN] = ACTIONS(7069), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7071), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [2952] = { + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [sym_variable_name] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7025), + }, + [2953] = { + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [sym_variable_name] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7029), + }, + [2954] = { + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [sym_variable_name] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7033), + }, + [2955] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8104), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2956] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8106), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2957] = { + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [sym_variable_name] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7069), + }, + [2958] = { + [sym__concat] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7027), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym__string_content] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7027), + [anon_sym_BQUOTE] = ACTIONS(7027), + [sym_comment] = ACTIONS(343), + }, + [2959] = { + [sym__concat] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7031), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym__string_content] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7031), + [anon_sym_BQUOTE] = ACTIONS(7031), + [sym_comment] = ACTIONS(343), + }, + [2960] = { + [sym__concat] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7035), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym__string_content] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7035), + [anon_sym_BQUOTE] = ACTIONS(7035), + [sym_comment] = ACTIONS(343), + }, + [2961] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8108), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2962] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8110), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2963] = { + [sym__concat] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7071), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym__string_content] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7071), + [anon_sym_BQUOTE] = ACTIONS(7071), + [sym_comment] = ACTIONS(343), + }, + [2964] = { + [anon_sym_RBRACE] = ACTIONS(5676), + [anon_sym_EQ] = ACTIONS(8112), + [anon_sym_DASH] = ACTIONS(8112), + [sym__special_characters] = ACTIONS(8112), + [anon_sym_DQUOTE] = ACTIONS(5676), + [anon_sym_DOLLAR] = ACTIONS(8112), + [sym_raw_string] = ACTIONS(5676), + [anon_sym_POUND] = ACTIONS(5676), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5676), + [anon_sym_SLASH] = ACTIONS(5676), + [anon_sym_COLON] = ACTIONS(8112), + [anon_sym_COLON_QMARK] = ACTIONS(8112), + [anon_sym_COLON_DASH] = ACTIONS(8112), + [anon_sym_PERCENT] = ACTIONS(8112), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5676), + [anon_sym_BQUOTE] = ACTIONS(5676), + [anon_sym_LT_LPAREN] = ACTIONS(5676), + [anon_sym_GT_LPAREN] = ACTIONS(5676), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(8112), + }, + [2965] = { + [anon_sym_RBRACE] = ACTIONS(5678), + [anon_sym_EQ] = ACTIONS(8114), + [anon_sym_DASH] = ACTIONS(8114), + [sym__special_characters] = ACTIONS(8114), + [anon_sym_DQUOTE] = ACTIONS(5678), + [anon_sym_DOLLAR] = ACTIONS(8114), + [sym_raw_string] = ACTIONS(5678), + [anon_sym_POUND] = ACTIONS(5678), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5678), + [anon_sym_SLASH] = ACTIONS(5678), + [anon_sym_COLON] = ACTIONS(8114), + [anon_sym_COLON_QMARK] = ACTIONS(8114), + [anon_sym_COLON_DASH] = ACTIONS(8114), + [anon_sym_PERCENT] = ACTIONS(8114), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5678), + [anon_sym_BQUOTE] = ACTIONS(5678), + [anon_sym_LT_LPAREN] = ACTIONS(5678), + [anon_sym_GT_LPAREN] = ACTIONS(5678), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(8114), + }, + [2966] = { + [sym__concat] = ACTIONS(4001), + [anon_sym_RBRACE] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + }, + [2967] = { + [sym__concat] = ACTIONS(4015), + [anon_sym_RBRACE] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + }, + [2968] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8116), + [sym_comment] = ACTIONS(57), + }, + [2969] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8118), + [sym_comment] = ACTIONS(57), + }, + [2970] = { + [anon_sym_RBRACE] = ACTIONS(8118), + [sym_comment] = ACTIONS(57), + }, + [2971] = { + [sym_concatenation] = STATE(3413), + [sym_string] = STATE(3412), + [sym_simple_expansion] = STATE(3412), + [sym_string_expansion] = STATE(3412), + [sym_expansion] = STATE(3412), + [sym_command_substitution] = STATE(3412), + [sym_process_substitution] = STATE(3412), + [anon_sym_RBRACE] = ACTIONS(8118), + [sym__special_characters] = ACTIONS(8120), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(8122), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8122), + }, + [2972] = { + [sym__concat] = ACTIONS(4051), + [anon_sym_RBRACE] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + }, + [2973] = { + [sym_concatenation] = STATE(3416), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3416), + [sym_regex] = ACTIONS(8124), + [anon_sym_RBRACE] = ACTIONS(8126), + [anon_sym_EQ] = ACTIONS(8128), + [anon_sym_DASH] = ACTIONS(8128), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8128), + [anon_sym_COLON_QMARK] = ACTIONS(8128), + [anon_sym_COLON_DASH] = ACTIONS(8128), + [anon_sym_PERCENT] = ACTIONS(8128), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2974] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8126), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2975] = { + [sym_concatenation] = STATE(3418), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3418), + [sym_regex] = ACTIONS(8132), + [anon_sym_RBRACE] = ACTIONS(8118), + [anon_sym_EQ] = ACTIONS(8134), + [anon_sym_DASH] = ACTIONS(8134), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8136), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8134), + [anon_sym_COLON_QMARK] = ACTIONS(8134), + [anon_sym_COLON_DASH] = ACTIONS(8134), + [anon_sym_PERCENT] = ACTIONS(8134), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2976] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8118), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2977] = { + [sym_concatenation] = STATE(3420), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3420), + [anon_sym_RBRACE] = ACTIONS(8138), + [anon_sym_EQ] = ACTIONS(8140), + [anon_sym_DASH] = ACTIONS(8140), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8142), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8140), + [anon_sym_COLON_QMARK] = ACTIONS(8140), + [anon_sym_COLON_DASH] = ACTIONS(8140), + [anon_sym_PERCENT] = ACTIONS(8140), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2978] = { + [sym__concat] = ACTIONS(4107), + [anon_sym_RBRACE] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + }, + [2979] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8138), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2980] = { + [sym_concatenation] = STATE(3418), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3418), + [anon_sym_RBRACE] = ACTIONS(8118), + [anon_sym_EQ] = ACTIONS(8134), + [anon_sym_DASH] = ACTIONS(8134), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8136), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8134), + [anon_sym_COLON_QMARK] = ACTIONS(8134), + [anon_sym_COLON_DASH] = ACTIONS(8134), + [anon_sym_PERCENT] = ACTIONS(8134), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2981] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [ts_builtin_sym_end] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_RPAREN] = ACTIONS(8144), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_EQ_TILDE] = ACTIONS(8146), + [anon_sym_EQ_EQ] = ACTIONS(8146), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [2982] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [ts_builtin_sym_end] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_RPAREN] = ACTIONS(8148), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_EQ_TILDE] = ACTIONS(8150), + [anon_sym_EQ_EQ] = ACTIONS(8150), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [2983] = { + [sym__concat] = ACTIONS(5525), + [anon_sym_RBRACE] = ACTIONS(5525), + [anon_sym_EQ] = ACTIONS(5527), + [anon_sym_DASH] = ACTIONS(5527), + [sym__special_characters] = ACTIONS(5527), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_POUND] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_COLON] = ACTIONS(5527), + [anon_sym_COLON_QMARK] = ACTIONS(5527), + [anon_sym_COLON_DASH] = ACTIONS(5527), + [anon_sym_PERCENT] = ACTIONS(5527), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(5527), + }, + [2984] = { + [sym__concat] = ACTIONS(5533), + [anon_sym_RBRACE] = ACTIONS(5533), + [anon_sym_EQ] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(5535), + [sym__special_characters] = ACTIONS(5535), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_POUND] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_COLON] = ACTIONS(5535), + [anon_sym_COLON_QMARK] = ACTIONS(5535), + [anon_sym_COLON_DASH] = ACTIONS(5535), + [anon_sym_PERCENT] = ACTIONS(5535), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(5535), + }, + [2985] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8152), + [sym_comment] = ACTIONS(57), + }, + [2986] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8154), + [sym_comment] = ACTIONS(57), + }, + [2987] = { + [anon_sym_RBRACE] = ACTIONS(8154), + [sym_comment] = ACTIONS(57), + }, + [2988] = { + [sym_concatenation] = STATE(3424), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3424), + [anon_sym_RBRACE] = ACTIONS(8156), + [anon_sym_EQ] = ACTIONS(8158), + [anon_sym_DASH] = ACTIONS(8158), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8160), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8158), + [anon_sym_COLON_QMARK] = ACTIONS(8158), + [anon_sym_COLON_DASH] = ACTIONS(8158), + [anon_sym_PERCENT] = ACTIONS(8158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2989] = { + [sym__concat] = ACTIONS(5577), + [anon_sym_RBRACE] = ACTIONS(5577), + [anon_sym_EQ] = ACTIONS(5579), + [anon_sym_DASH] = ACTIONS(5579), + [sym__special_characters] = ACTIONS(5579), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_POUND] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_COLON] = ACTIONS(5579), + [anon_sym_COLON_QMARK] = ACTIONS(5579), + [anon_sym_COLON_DASH] = ACTIONS(5579), + [anon_sym_PERCENT] = ACTIONS(5579), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(5579), + }, + [2990] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8156), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2991] = { + [sym_concatenation] = STATE(3425), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3425), + [anon_sym_RBRACE] = ACTIONS(8154), + [anon_sym_EQ] = ACTIONS(8162), + [anon_sym_DASH] = ACTIONS(8162), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8162), + [anon_sym_COLON_QMARK] = ACTIONS(8162), + [anon_sym_COLON_DASH] = ACTIONS(8162), + [anon_sym_PERCENT] = ACTIONS(8162), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2992] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8154), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2993] = { + [sym__concat] = ACTIONS(5622), + [anon_sym_RBRACE] = ACTIONS(5622), + [anon_sym_EQ] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5624), + [sym__special_characters] = ACTIONS(5624), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_POUND] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_COLON_QMARK] = ACTIONS(5624), + [anon_sym_COLON_DASH] = ACTIONS(5624), + [anon_sym_PERCENT] = ACTIONS(5624), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(5624), + }, + [2994] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8166), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [2995] = { + [sym__heredoc_body_middle] = ACTIONS(5525), + [sym__heredoc_body_end] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + }, + [2996] = { + [sym__heredoc_body_middle] = ACTIONS(5533), + [sym__heredoc_body_end] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + }, + [2997] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8168), + [sym_comment] = ACTIONS(57), + }, + [2998] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8170), + [sym_comment] = ACTIONS(57), + }, + [2999] = { + [anon_sym_RBRACE] = ACTIONS(8170), + [sym_comment] = ACTIONS(57), + }, + [3000] = { + [sym_concatenation] = STATE(3430), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3430), + [anon_sym_RBRACE] = ACTIONS(8172), + [anon_sym_EQ] = ACTIONS(8174), + [anon_sym_DASH] = ACTIONS(8174), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8176), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8174), + [anon_sym_COLON_QMARK] = ACTIONS(8174), + [anon_sym_COLON_DASH] = ACTIONS(8174), + [anon_sym_PERCENT] = ACTIONS(8174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3001] = { + [sym__heredoc_body_middle] = ACTIONS(5577), + [sym__heredoc_body_end] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + }, + [3002] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8172), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3003] = { + [sym_concatenation] = STATE(3431), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3431), + [anon_sym_RBRACE] = ACTIONS(8170), + [anon_sym_EQ] = ACTIONS(8178), + [anon_sym_DASH] = ACTIONS(8178), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8180), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8178), + [anon_sym_COLON_QMARK] = ACTIONS(8178), + [anon_sym_COLON_DASH] = ACTIONS(8178), + [anon_sym_PERCENT] = ACTIONS(8178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3004] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8170), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3005] = { + [sym__heredoc_body_middle] = ACTIONS(5622), + [sym__heredoc_body_end] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + }, + [3006] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8182), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3007] = { + [aux_sym_concatenation_repeat1] = STATE(3007), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3008] = { + [sym__concat] = ACTIONS(5525), + [anon_sym_RPAREN] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5525), + }, + [3009] = { + [sym__concat] = ACTIONS(5533), + [anon_sym_RPAREN] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5533), + }, + [3010] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8184), + [sym_comment] = ACTIONS(57), + }, + [3011] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8186), + [sym_comment] = ACTIONS(57), + }, + [3012] = { + [anon_sym_RBRACE] = ACTIONS(8186), + [sym_comment] = ACTIONS(57), + }, + [3013] = { + [sym_concatenation] = STATE(3436), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3436), + [anon_sym_RBRACE] = ACTIONS(8188), + [anon_sym_EQ] = ACTIONS(8190), + [anon_sym_DASH] = ACTIONS(8190), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8190), + [anon_sym_COLON_QMARK] = ACTIONS(8190), + [anon_sym_COLON_DASH] = ACTIONS(8190), + [anon_sym_PERCENT] = ACTIONS(8190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3014] = { + [sym__concat] = ACTIONS(5577), + [anon_sym_RPAREN] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5577), + }, + [3015] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8188), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3016] = { + [sym_concatenation] = STATE(3437), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3437), + [anon_sym_RBRACE] = ACTIONS(8186), + [anon_sym_EQ] = ACTIONS(8194), + [anon_sym_DASH] = ACTIONS(8194), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8194), + [anon_sym_COLON_QMARK] = ACTIONS(8194), + [anon_sym_COLON_DASH] = ACTIONS(8194), + [anon_sym_PERCENT] = ACTIONS(8194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3017] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8186), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3018] = { + [sym__concat] = ACTIONS(5622), + [anon_sym_RPAREN] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5622), + }, + [3019] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8198), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3020] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [sym_variable_name] = ACTIONS(7025), + [ts_builtin_sym_end] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_RPAREN] = ACTIONS(7025), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3021] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [sym_variable_name] = ACTIONS(7029), + [ts_builtin_sym_end] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_RPAREN] = ACTIONS(7029), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3022] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [sym_variable_name] = ACTIONS(7033), + [ts_builtin_sym_end] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_RPAREN] = ACTIONS(7033), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3023] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8200), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3024] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8202), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3025] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [sym_variable_name] = ACTIONS(7069), + [ts_builtin_sym_end] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_RPAREN] = ACTIONS(7069), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [3026] = { + [sym__simple_heredoc_body] = ACTIONS(8204), + [sym__heredoc_body_beginning] = ACTIONS(8204), + [sym_file_descriptor] = ACTIONS(8204), + [ts_builtin_sym_end] = ACTIONS(8204), + [anon_sym_SEMI] = ACTIONS(8206), + [anon_sym_done] = ACTIONS(8204), + [anon_sym_fi] = ACTIONS(8204), + [anon_sym_elif] = ACTIONS(8204), + [anon_sym_else] = ACTIONS(8204), + [anon_sym_esac] = ACTIONS(8204), + [anon_sym_PIPE] = ACTIONS(8206), + [anon_sym_RPAREN] = ACTIONS(8204), + [anon_sym_SEMI_SEMI] = ACTIONS(8204), + [anon_sym_PIPE_AMP] = ACTIONS(8204), + [anon_sym_AMP_AMP] = ACTIONS(8204), + [anon_sym_PIPE_PIPE] = ACTIONS(8204), + [anon_sym_LT] = ACTIONS(8206), + [anon_sym_GT] = ACTIONS(8206), + [anon_sym_GT_GT] = ACTIONS(8204), + [anon_sym_AMP_GT] = ACTIONS(8206), + [anon_sym_AMP_GT_GT] = ACTIONS(8204), + [anon_sym_LT_AMP] = ACTIONS(8204), + [anon_sym_GT_AMP] = ACTIONS(8204), + [anon_sym_LT_LT] = ACTIONS(8206), + [anon_sym_LT_LT_DASH] = ACTIONS(8204), + [anon_sym_LT_LT_LT] = ACTIONS(8204), + [anon_sym_BQUOTE] = ACTIONS(8204), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8204), + [anon_sym_AMP] = ACTIONS(8206), + }, + [3027] = { + [sym_do_group] = STATE(3441), + [sym_compound_statement] = STATE(3441), + [anon_sym_do] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), + }, + [3028] = { + [sym__concat] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_EQ_TILDE] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7025), + [anon_sym_EQ] = ACTIONS(7027), + [anon_sym_PLUS_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_BANG_EQ] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7027), + [anon_sym_DASH] = ACTIONS(7027), + [anon_sym_DASH_EQ] = ACTIONS(7025), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7025), + [anon_sym_PLUS_PLUS] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(7025), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3029] = { + [sym__concat] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_EQ_TILDE] = ACTIONS(7029), + [anon_sym_EQ_EQ] = ACTIONS(7029), + [anon_sym_EQ] = ACTIONS(7031), + [anon_sym_PLUS_EQ] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_BANG_EQ] = ACTIONS(7029), + [anon_sym_PLUS] = ACTIONS(7031), + [anon_sym_DASH] = ACTIONS(7031), + [anon_sym_DASH_EQ] = ACTIONS(7029), + [anon_sym_LT_EQ] = ACTIONS(7029), + [anon_sym_GT_EQ] = ACTIONS(7029), + [anon_sym_PLUS_PLUS] = ACTIONS(7029), + [anon_sym_DASH_DASH] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(7029), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3030] = { + [sym__concat] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_EQ_TILDE] = ACTIONS(7033), + [anon_sym_EQ_EQ] = ACTIONS(7033), + [anon_sym_EQ] = ACTIONS(7035), + [anon_sym_PLUS_EQ] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_BANG_EQ] = ACTIONS(7033), + [anon_sym_PLUS] = ACTIONS(7035), + [anon_sym_DASH] = ACTIONS(7035), + [anon_sym_DASH_EQ] = ACTIONS(7033), + [anon_sym_LT_EQ] = ACTIONS(7033), + [anon_sym_GT_EQ] = ACTIONS(7033), + [anon_sym_PLUS_PLUS] = ACTIONS(7033), + [anon_sym_DASH_DASH] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(7033), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3031] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8208), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3032] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8210), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3033] = { + [sym__concat] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_EQ_TILDE] = ACTIONS(7069), + [anon_sym_EQ_EQ] = ACTIONS(7069), + [anon_sym_EQ] = ACTIONS(7071), + [anon_sym_PLUS_EQ] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_BANG_EQ] = ACTIONS(7069), + [anon_sym_PLUS] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(7071), + [anon_sym_DASH_EQ] = ACTIONS(7069), + [anon_sym_LT_EQ] = ACTIONS(7069), + [anon_sym_GT_EQ] = ACTIONS(7069), + [anon_sym_PLUS_PLUS] = ACTIONS(7069), + [anon_sym_DASH_DASH] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(7069), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [3034] = { + [sym_do_group] = STATE(3441), + [sym_compound_statement] = STATE(3441), + [anon_sym_SEMI] = ACTIONS(8212), + [anon_sym_do] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), + }, + [3035] = { + [sym__concat] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5525), + }, + [3036] = { + [sym__concat] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5533), + }, + [3037] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8214), + [sym_comment] = ACTIONS(57), + }, + [3038] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8216), + [sym_comment] = ACTIONS(57), + }, + [3039] = { + [anon_sym_RBRACE] = ACTIONS(8216), + [sym_comment] = ACTIONS(57), + }, + [3040] = { + [sym_concatenation] = STATE(3448), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3448), + [anon_sym_RBRACE] = ACTIONS(8218), + [anon_sym_EQ] = ACTIONS(8220), + [anon_sym_DASH] = ACTIONS(8220), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8220), + [anon_sym_COLON_QMARK] = ACTIONS(8220), + [anon_sym_COLON_DASH] = ACTIONS(8220), + [anon_sym_PERCENT] = ACTIONS(8220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3041] = { + [sym__concat] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5577), + }, + [3042] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8218), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3043] = { + [sym_concatenation] = STATE(3449), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3449), + [anon_sym_RBRACE] = ACTIONS(8216), + [anon_sym_EQ] = ACTIONS(8224), + [anon_sym_DASH] = ACTIONS(8224), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8226), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8224), + [anon_sym_COLON_QMARK] = ACTIONS(8224), + [anon_sym_COLON_DASH] = ACTIONS(8224), + [anon_sym_PERCENT] = ACTIONS(8224), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3044] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8216), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3045] = { + [sym__concat] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5622), + }, + [3046] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8228), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3047] = { + [sym__concat] = ACTIONS(7025), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_RPAREN] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_EQ_TILDE] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7025), + [anon_sym_EQ] = ACTIONS(7027), + [anon_sym_PLUS_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_BANG_EQ] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7027), + [anon_sym_DASH] = ACTIONS(7027), + [anon_sym_DASH_EQ] = ACTIONS(7025), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7025), + [anon_sym_PLUS_PLUS] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(7025), + }, + [3048] = { + [sym__concat] = ACTIONS(7029), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_RPAREN] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_EQ_TILDE] = ACTIONS(7029), + [anon_sym_EQ_EQ] = ACTIONS(7029), + [anon_sym_EQ] = ACTIONS(7031), + [anon_sym_PLUS_EQ] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_BANG_EQ] = ACTIONS(7029), + [anon_sym_PLUS] = ACTIONS(7031), + [anon_sym_DASH] = ACTIONS(7031), + [anon_sym_DASH_EQ] = ACTIONS(7029), + [anon_sym_LT_EQ] = ACTIONS(7029), + [anon_sym_GT_EQ] = ACTIONS(7029), + [anon_sym_PLUS_PLUS] = ACTIONS(7029), + [anon_sym_DASH_DASH] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(7029), + }, + [3049] = { + [sym__concat] = ACTIONS(7033), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_RPAREN] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_EQ_TILDE] = ACTIONS(7033), + [anon_sym_EQ_EQ] = ACTIONS(7033), + [anon_sym_EQ] = ACTIONS(7035), + [anon_sym_PLUS_EQ] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_BANG_EQ] = ACTIONS(7033), + [anon_sym_PLUS] = ACTIONS(7035), + [anon_sym_DASH] = ACTIONS(7035), + [anon_sym_DASH_EQ] = ACTIONS(7033), + [anon_sym_LT_EQ] = ACTIONS(7033), + [anon_sym_GT_EQ] = ACTIONS(7033), + [anon_sym_PLUS_PLUS] = ACTIONS(7033), + [anon_sym_DASH_DASH] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(7033), + }, + [3050] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8230), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3051] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8232), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3052] = { + [sym__concat] = ACTIONS(7069), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_RPAREN] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_EQ_TILDE] = ACTIONS(7069), + [anon_sym_EQ_EQ] = ACTIONS(7069), + [anon_sym_EQ] = ACTIONS(7071), + [anon_sym_PLUS_EQ] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_BANG_EQ] = ACTIONS(7069), + [anon_sym_PLUS] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(7071), + [anon_sym_DASH_EQ] = ACTIONS(7069), + [anon_sym_LT_EQ] = ACTIONS(7069), + [anon_sym_GT_EQ] = ACTIONS(7069), + [anon_sym_PLUS_PLUS] = ACTIONS(7069), + [anon_sym_DASH_DASH] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(7069), + }, + [3053] = { + [sym__concat] = ACTIONS(8144), + [anon_sym_RPAREN_RPAREN] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8144), + [anon_sym_EQ_TILDE] = ACTIONS(8144), + [anon_sym_EQ_EQ] = ACTIONS(8144), + [anon_sym_EQ] = ACTIONS(8146), + [anon_sym_PLUS_EQ] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_BANG_EQ] = ACTIONS(8144), + [anon_sym_PLUS] = ACTIONS(8146), + [anon_sym_DASH] = ACTIONS(8146), + [anon_sym_DASH_EQ] = ACTIONS(8144), + [anon_sym_LT_EQ] = ACTIONS(8144), + [anon_sym_GT_EQ] = ACTIONS(8144), + [anon_sym_PLUS_PLUS] = ACTIONS(8144), + [anon_sym_DASH_DASH] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(8144), + }, + [3054] = { + [sym__concat] = ACTIONS(8148), + [anon_sym_RPAREN_RPAREN] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8148), + [anon_sym_EQ_TILDE] = ACTIONS(8148), + [anon_sym_EQ_EQ] = ACTIONS(8148), + [anon_sym_EQ] = ACTIONS(8150), + [anon_sym_PLUS_EQ] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_BANG_EQ] = ACTIONS(8148), + [anon_sym_PLUS] = ACTIONS(8150), + [anon_sym_DASH] = ACTIONS(8150), + [anon_sym_DASH_EQ] = ACTIONS(8148), + [anon_sym_LT_EQ] = ACTIONS(8148), + [anon_sym_GT_EQ] = ACTIONS(8148), + [anon_sym_PLUS_PLUS] = ACTIONS(8148), + [anon_sym_DASH_DASH] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(8148), + }, + [3055] = { + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [sym_variable_name] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [3056] = { + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [sym_variable_name] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [3057] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8234), + [sym_comment] = ACTIONS(57), + }, + [3058] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8236), + [sym_comment] = ACTIONS(57), + }, + [3059] = { + [anon_sym_RBRACE] = ACTIONS(8236), + [sym_comment] = ACTIONS(57), + }, + [3060] = { + [sym_concatenation] = STATE(3456), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3456), + [anon_sym_RBRACE] = ACTIONS(8238), + [anon_sym_EQ] = ACTIONS(8240), + [anon_sym_DASH] = ACTIONS(8240), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8240), + [anon_sym_COLON_QMARK] = ACTIONS(8240), + [anon_sym_COLON_DASH] = ACTIONS(8240), + [anon_sym_PERCENT] = ACTIONS(8240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3061] = { + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [sym_variable_name] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [3062] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8238), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3063] = { + [sym_concatenation] = STATE(3457), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3457), + [anon_sym_RBRACE] = ACTIONS(8236), + [anon_sym_EQ] = ACTIONS(8244), + [anon_sym_DASH] = ACTIONS(8244), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8246), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8244), + [anon_sym_COLON_QMARK] = ACTIONS(8244), + [anon_sym_COLON_DASH] = ACTIONS(8244), + [anon_sym_PERCENT] = ACTIONS(8244), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3064] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8236), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3065] = { + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [sym_variable_name] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [3066] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8248), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3067] = { + [sym_file_descriptor] = ACTIONS(7145), + [anon_sym_SEMI] = ACTIONS(7147), + [anon_sym_PIPE] = ACTIONS(7147), + [anon_sym_SEMI_SEMI] = ACTIONS(7145), + [anon_sym_PIPE_AMP] = ACTIONS(7145), + [anon_sym_AMP_AMP] = ACTIONS(7145), + [anon_sym_PIPE_PIPE] = ACTIONS(7145), + [anon_sym_LT] = ACTIONS(7147), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_GT_GT] = ACTIONS(7145), + [anon_sym_AMP_GT] = ACTIONS(7147), + [anon_sym_AMP_GT_GT] = ACTIONS(7145), + [anon_sym_LT_AMP] = ACTIONS(7145), + [anon_sym_GT_AMP] = ACTIONS(7145), + [anon_sym_LT_LT] = ACTIONS(7147), + [anon_sym_LT_LT_DASH] = ACTIONS(7145), + [anon_sym_LT_LT_LT] = ACTIONS(7145), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(7145), + [anon_sym_AMP] = ACTIONS(7147), + }, + [3068] = { + [sym_do_group] = STATE(3459), + [sym_compound_statement] = STATE(3459), + [anon_sym_do] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(113), + [sym_comment] = ACTIONS(57), + }, + [3069] = { + [sym_do_group] = STATE(3459), + [sym_compound_statement] = STATE(3459), + [anon_sym_SEMI] = ACTIONS(8250), + [anon_sym_do] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(113), + [sym_comment] = ACTIONS(57), + }, + [3070] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(8252), + [anon_sym_AMP_AMP] = ACTIONS(553), + [anon_sym_PIPE_PIPE] = ACTIONS(553), + [anon_sym_EQ_TILDE] = ACTIONS(555), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_PLUS_EQ] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_DASH_EQ] = ACTIONS(553), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(553), + }, + [3071] = { + [sym_file_descriptor] = ACTIONS(7871), + [anon_sym_SEMI] = ACTIONS(7873), + [anon_sym_PIPE] = ACTIONS(7873), + [anon_sym_SEMI_SEMI] = ACTIONS(7871), + [anon_sym_PIPE_AMP] = ACTIONS(7871), + [anon_sym_AMP_AMP] = ACTIONS(7871), + [anon_sym_PIPE_PIPE] = ACTIONS(7871), + [anon_sym_LT] = ACTIONS(7873), + [anon_sym_GT] = ACTIONS(7873), + [anon_sym_GT_GT] = ACTIONS(7871), + [anon_sym_AMP_GT] = ACTIONS(7873), + [anon_sym_AMP_GT_GT] = ACTIONS(7871), + [anon_sym_LT_AMP] = ACTIONS(7871), + [anon_sym_GT_AMP] = ACTIONS(7871), + [anon_sym_LT_LT] = ACTIONS(7873), + [anon_sym_LT_LT_DASH] = ACTIONS(7871), + [anon_sym_LT_LT_LT] = ACTIONS(7871), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(7871), + [anon_sym_AMP] = ACTIONS(7873), + }, + [3072] = { + [sym_file_descriptor] = ACTIONS(7998), + [anon_sym_SEMI] = ACTIONS(8000), + [anon_sym_PIPE] = ACTIONS(8000), + [anon_sym_SEMI_SEMI] = ACTIONS(7998), + [anon_sym_PIPE_AMP] = ACTIONS(7998), + [anon_sym_AMP_AMP] = ACTIONS(7998), + [anon_sym_PIPE_PIPE] = ACTIONS(7998), + [anon_sym_LT] = ACTIONS(8000), + [anon_sym_GT] = ACTIONS(8000), + [anon_sym_GT_GT] = ACTIONS(7998), + [anon_sym_AMP_GT] = ACTIONS(8000), + [anon_sym_AMP_GT_GT] = ACTIONS(7998), + [anon_sym_LT_AMP] = ACTIONS(7998), + [anon_sym_GT_AMP] = ACTIONS(7998), + [anon_sym_LT_LT] = ACTIONS(8000), + [anon_sym_LT_LT_DASH] = ACTIONS(7998), + [anon_sym_LT_LT_LT] = ACTIONS(7998), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(7998), + [anon_sym_AMP] = ACTIONS(8000), + }, + [3073] = { + [anon_sym_esac] = ACTIONS(8254), + [sym_comment] = ACTIONS(57), + }, + [3074] = { + [sym_file_descriptor] = ACTIONS(8008), + [anon_sym_SEMI] = ACTIONS(8010), + [anon_sym_PIPE] = ACTIONS(8010), + [anon_sym_SEMI_SEMI] = ACTIONS(8008), + [anon_sym_PIPE_AMP] = ACTIONS(8008), + [anon_sym_AMP_AMP] = ACTIONS(8008), + [anon_sym_PIPE_PIPE] = ACTIONS(8008), + [anon_sym_LT] = ACTIONS(8010), + [anon_sym_GT] = ACTIONS(8010), + [anon_sym_GT_GT] = ACTIONS(8008), + [anon_sym_AMP_GT] = ACTIONS(8010), + [anon_sym_AMP_GT_GT] = ACTIONS(8008), + [anon_sym_LT_AMP] = ACTIONS(8008), + [anon_sym_GT_AMP] = ACTIONS(8008), + [anon_sym_LT_LT] = ACTIONS(8010), + [anon_sym_LT_LT_DASH] = ACTIONS(8008), + [anon_sym_LT_LT_LT] = ACTIONS(8008), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8008), + [anon_sym_AMP] = ACTIONS(8010), + }, + [3075] = { + [anon_sym_esac] = ACTIONS(8256), + [sym_comment] = ACTIONS(57), + }, + [3076] = { + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [sym_variable_name] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7027), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3077] = { + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [sym_variable_name] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7031), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3078] = { + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [sym_variable_name] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7035), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3079] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8258), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3080] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8260), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3081] = { + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [sym_variable_name] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7071), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [3082] = { + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7027), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3083] = { + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7031), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3084] = { + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7035), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3085] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8262), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3086] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8264), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3087] = { + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7071), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [3088] = { + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_EQ_TILDE] = ACTIONS(8146), + [anon_sym_EQ_EQ] = ACTIONS(8146), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [3089] = { + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_EQ_TILDE] = ACTIONS(8150), + [anon_sym_EQ_EQ] = ACTIONS(8150), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [3090] = { + [sym__simple_heredoc_body] = ACTIONS(4334), + [sym__heredoc_body_beginning] = ACTIONS(4334), + [sym_file_descriptor] = ACTIONS(4334), + [sym_variable_name] = ACTIONS(4334), + [anon_sym_SEMI] = ACTIONS(4336), + [anon_sym_done] = ACTIONS(4336), + [anon_sym_PIPE] = ACTIONS(4336), + [anon_sym_SEMI_SEMI] = ACTIONS(4334), + [anon_sym_PIPE_AMP] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4336), + [anon_sym_GT] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4334), + [anon_sym_AMP_GT] = ACTIONS(4336), + [anon_sym_AMP_GT_GT] = ACTIONS(4334), + [anon_sym_LT_AMP] = ACTIONS(4334), + [anon_sym_GT_AMP] = ACTIONS(4334), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_LT_LT_DASH] = ACTIONS(4334), + [anon_sym_LT_LT_LT] = ACTIONS(4334), + [sym__special_characters] = ACTIONS(4334), + [anon_sym_DQUOTE] = ACTIONS(4334), + [anon_sym_DOLLAR] = ACTIONS(4336), + [sym_raw_string] = ACTIONS(4334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4334), + [anon_sym_BQUOTE] = ACTIONS(4334), + [anon_sym_LT_LPAREN] = ACTIONS(4334), + [anon_sym_GT_LPAREN] = ACTIONS(4334), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4336), + [anon_sym_LF] = ACTIONS(4334), + [anon_sym_AMP] = ACTIONS(4336), + }, + [3091] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_done] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3092] = { + [aux_sym_concatenation_repeat1] = STATE(3092), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(8266), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_done] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3093] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [sym_variable_name] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_done] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [3094] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(8269), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [3095] = { + [sym_concatenation] = STATE(3472), + [sym_string] = STATE(3471), + [sym_simple_expansion] = STATE(3471), + [sym_string_expansion] = STATE(3471), + [sym_expansion] = STATE(3471), + [sym_command_substitution] = STATE(3471), + [sym_process_substitution] = STATE(3471), + [anon_sym_RBRACE] = ACTIONS(8271), + [sym__special_characters] = ACTIONS(8273), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(8275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8275), + }, + [3096] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(8277), + [sym_comment] = ACTIONS(57), + }, + [3097] = { + [sym_concatenation] = STATE(3476), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3476), + [anon_sym_RBRACE] = ACTIONS(8279), + [anon_sym_EQ] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(8281), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8281), + [anon_sym_COLON_QMARK] = ACTIONS(8281), + [anon_sym_COLON_DASH] = ACTIONS(8281), + [anon_sym_PERCENT] = ACTIONS(8281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3098] = { + [sym_concatenation] = STATE(3478), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3478), + [anon_sym_RBRACE] = ACTIONS(8271), + [anon_sym_EQ] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(8287), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(8291), + [anon_sym_COLON] = ACTIONS(8287), + [anon_sym_COLON_QMARK] = ACTIONS(8287), + [anon_sym_COLON_DASH] = ACTIONS(8287), + [anon_sym_PERCENT] = ACTIONS(8287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3099] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [sym_variable_name] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_done] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [3100] = { + [sym_concatenation] = STATE(3481), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3481), + [sym_regex] = ACTIONS(8293), + [anon_sym_RBRACE] = ACTIONS(8295), + [anon_sym_EQ] = ACTIONS(8297), + [anon_sym_DASH] = ACTIONS(8297), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8297), + [anon_sym_COLON_QMARK] = ACTIONS(8297), + [anon_sym_COLON_DASH] = ACTIONS(8297), + [anon_sym_PERCENT] = ACTIONS(8297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3101] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8295), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3102] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [sym_variable_name] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_done] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [3103] = { + [sym_concatenation] = STATE(3478), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3478), + [sym_regex] = ACTIONS(8301), + [anon_sym_RBRACE] = ACTIONS(8271), + [anon_sym_EQ] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(8287), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8287), + [anon_sym_COLON_QMARK] = ACTIONS(8287), + [anon_sym_COLON_DASH] = ACTIONS(8287), + [anon_sym_PERCENT] = ACTIONS(8287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3104] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8271), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3105] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [sym_variable_name] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_done] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [3106] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [sym_variable_name] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_done] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [3107] = { + [sym__simple_heredoc_body] = ACTIONS(2646), + [sym__heredoc_body_beginning] = ACTIONS(2646), + [sym_file_descriptor] = ACTIONS(2646), + [sym_variable_name] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_done] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_SEMI_SEMI] = ACTIONS(2646), + [anon_sym_PIPE_AMP] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_PIPE_PIPE] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_GT] = ACTIONS(2648), + [anon_sym_GT_GT] = ACTIONS(2646), + [anon_sym_AMP_GT] = ACTIONS(2648), + [anon_sym_AMP_GT_GT] = ACTIONS(2646), + [anon_sym_LT_AMP] = ACTIONS(2646), + [anon_sym_GT_AMP] = ACTIONS(2646), + [anon_sym_LT_LT] = ACTIONS(2648), + [anon_sym_LT_LT_DASH] = ACTIONS(2646), + [anon_sym_LT_LT_LT] = ACTIONS(2646), + [sym__special_characters] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2648), + [sym_raw_string] = ACTIONS(2646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2646), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2646), + [anon_sym_BQUOTE] = ACTIONS(2646), + [anon_sym_LT_LPAREN] = ACTIONS(2646), + [anon_sym_GT_LPAREN] = ACTIONS(2646), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2648), + [sym_word] = ACTIONS(2648), + [anon_sym_LF] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2648), + }, + [3108] = { + [sym_concatenation] = STATE(1243), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1243), + [anon_sym_RPAREN] = ACTIONS(8303), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [3109] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [sym_variable_name] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_done] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4003), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [3110] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [sym_variable_name] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_done] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4017), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [3111] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8305), + [sym_comment] = ACTIONS(57), + }, + [3112] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8307), + [sym_comment] = ACTIONS(57), + }, + [3113] = { + [anon_sym_RBRACE] = ACTIONS(8307), + [sym_comment] = ACTIONS(57), + }, + [3114] = { + [sym_concatenation] = STATE(3488), + [sym_string] = STATE(3487), + [sym_simple_expansion] = STATE(3487), + [sym_string_expansion] = STATE(3487), + [sym_expansion] = STATE(3487), + [sym_command_substitution] = STATE(3487), + [sym_process_substitution] = STATE(3487), + [anon_sym_RBRACE] = ACTIONS(8307), + [sym__special_characters] = ACTIONS(8309), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(8311), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8311), + }, + [3115] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [sym_variable_name] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_done] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4053), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [3116] = { + [sym_concatenation] = STATE(3491), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3491), + [sym_regex] = ACTIONS(8313), + [anon_sym_RBRACE] = ACTIONS(8315), + [anon_sym_EQ] = ACTIONS(8317), + [anon_sym_DASH] = ACTIONS(8317), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8319), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8317), + [anon_sym_COLON_QMARK] = ACTIONS(8317), + [anon_sym_COLON_DASH] = ACTIONS(8317), + [anon_sym_PERCENT] = ACTIONS(8317), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3117] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8315), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3118] = { + [sym_concatenation] = STATE(3493), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3493), + [sym_regex] = ACTIONS(8321), + [anon_sym_RBRACE] = ACTIONS(8307), + [anon_sym_EQ] = ACTIONS(8323), + [anon_sym_DASH] = ACTIONS(8323), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8323), + [anon_sym_COLON_QMARK] = ACTIONS(8323), + [anon_sym_COLON_DASH] = ACTIONS(8323), + [anon_sym_PERCENT] = ACTIONS(8323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3119] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8307), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3120] = { + [sym_concatenation] = STATE(3495), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3495), + [anon_sym_RBRACE] = ACTIONS(8327), + [anon_sym_EQ] = ACTIONS(8329), + [anon_sym_DASH] = ACTIONS(8329), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8329), + [anon_sym_COLON_QMARK] = ACTIONS(8329), + [anon_sym_COLON_DASH] = ACTIONS(8329), + [anon_sym_PERCENT] = ACTIONS(8329), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3121] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [sym_variable_name] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_done] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4109), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [3122] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8327), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3123] = { + [sym_concatenation] = STATE(3493), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3493), + [anon_sym_RBRACE] = ACTIONS(8307), + [anon_sym_EQ] = ACTIONS(8323), + [anon_sym_DASH] = ACTIONS(8323), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8323), + [anon_sym_COLON_QMARK] = ACTIONS(8323), + [anon_sym_COLON_DASH] = ACTIONS(8323), + [anon_sym_PERCENT] = ACTIONS(8323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3124] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_done] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4003), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [3125] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_done] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4017), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [3126] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8333), + [sym_comment] = ACTIONS(57), + }, + [3127] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8335), + [sym_comment] = ACTIONS(57), + }, + [3128] = { + [anon_sym_RBRACE] = ACTIONS(8335), + [sym_comment] = ACTIONS(57), + }, + [3129] = { + [sym_concatenation] = STATE(3500), + [sym_string] = STATE(3499), + [sym_simple_expansion] = STATE(3499), + [sym_string_expansion] = STATE(3499), + [sym_expansion] = STATE(3499), + [sym_command_substitution] = STATE(3499), + [sym_process_substitution] = STATE(3499), + [anon_sym_RBRACE] = ACTIONS(8335), + [sym__special_characters] = ACTIONS(8337), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(8339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8339), + }, + [3130] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_done] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4053), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [3131] = { + [sym_concatenation] = STATE(3503), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3503), + [sym_regex] = ACTIONS(8341), + [anon_sym_RBRACE] = ACTIONS(8343), + [anon_sym_EQ] = ACTIONS(8345), + [anon_sym_DASH] = ACTIONS(8345), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8345), + [anon_sym_COLON_QMARK] = ACTIONS(8345), + [anon_sym_COLON_DASH] = ACTIONS(8345), + [anon_sym_PERCENT] = ACTIONS(8345), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3132] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8343), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3133] = { + [sym_concatenation] = STATE(3505), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3505), + [sym_regex] = ACTIONS(8349), + [anon_sym_RBRACE] = ACTIONS(8335), + [anon_sym_EQ] = ACTIONS(8351), + [anon_sym_DASH] = ACTIONS(8351), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8351), + [anon_sym_COLON_QMARK] = ACTIONS(8351), + [anon_sym_COLON_DASH] = ACTIONS(8351), + [anon_sym_PERCENT] = ACTIONS(8351), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3134] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8335), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3135] = { + [sym_concatenation] = STATE(3507), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3507), + [anon_sym_RBRACE] = ACTIONS(8355), + [anon_sym_EQ] = ACTIONS(8357), + [anon_sym_DASH] = ACTIONS(8357), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8357), + [anon_sym_COLON_QMARK] = ACTIONS(8357), + [anon_sym_COLON_DASH] = ACTIONS(8357), + [anon_sym_PERCENT] = ACTIONS(8357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3136] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_done] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4109), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [3137] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8355), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3138] = { + [sym_concatenation] = STATE(3505), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3505), + [anon_sym_RBRACE] = ACTIONS(8335), + [anon_sym_EQ] = ACTIONS(8351), + [anon_sym_DASH] = ACTIONS(8351), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8351), + [anon_sym_COLON_QMARK] = ACTIONS(8351), + [anon_sym_COLON_DASH] = ACTIONS(8351), + [anon_sym_PERCENT] = ACTIONS(8351), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3139] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_done] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_EQ_TILDE] = ACTIONS(5527), + [anon_sym_EQ_EQ] = ACTIONS(5527), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [3140] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_done] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_EQ_TILDE] = ACTIONS(5535), + [anon_sym_EQ_EQ] = ACTIONS(5535), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [3141] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8361), + [sym_comment] = ACTIONS(57), + }, + [3142] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8363), + [sym_comment] = ACTIONS(57), + }, + [3143] = { + [anon_sym_RBRACE] = ACTIONS(8363), + [sym_comment] = ACTIONS(57), + }, + [3144] = { + [sym_concatenation] = STATE(3511), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3511), + [anon_sym_RBRACE] = ACTIONS(8365), + [anon_sym_EQ] = ACTIONS(8367), + [anon_sym_DASH] = ACTIONS(8367), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8367), + [anon_sym_COLON_QMARK] = ACTIONS(8367), + [anon_sym_COLON_DASH] = ACTIONS(8367), + [anon_sym_PERCENT] = ACTIONS(8367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3145] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_done] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_EQ_TILDE] = ACTIONS(5579), + [anon_sym_EQ_EQ] = ACTIONS(5579), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [3146] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8365), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3147] = { + [sym_concatenation] = STATE(3512), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3512), + [anon_sym_RBRACE] = ACTIONS(8363), + [anon_sym_EQ] = ACTIONS(8371), + [anon_sym_DASH] = ACTIONS(8371), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8371), + [anon_sym_COLON_QMARK] = ACTIONS(8371), + [anon_sym_COLON_DASH] = ACTIONS(8371), + [anon_sym_PERCENT] = ACTIONS(8371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3148] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8363), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3149] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_done] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_EQ_TILDE] = ACTIONS(5624), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [3150] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8375), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3151] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_done] = ACTIONS(2292), + [anon_sym_fi] = ACTIONS(2292), + [anon_sym_elif] = ACTIONS(2292), + [anon_sym_else] = ACTIONS(2292), + [anon_sym_esac] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3152] = { + [aux_sym_concatenation_repeat1] = STATE(3152), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(8377), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_done] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3153] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_done] = ACTIONS(2299), + [anon_sym_fi] = ACTIONS(2299), + [anon_sym_elif] = ACTIONS(2299), + [anon_sym_else] = ACTIONS(2299), + [anon_sym_esac] = ACTIONS(2299), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [3154] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(8380), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [3155] = { + [sym_concatenation] = STATE(3518), + [sym_string] = STATE(3517), + [sym_simple_expansion] = STATE(3517), + [sym_string_expansion] = STATE(3517), + [sym_expansion] = STATE(3517), + [sym_command_substitution] = STATE(3517), + [sym_process_substitution] = STATE(3517), + [anon_sym_RBRACE] = ACTIONS(8382), + [sym__special_characters] = ACTIONS(8384), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(8386), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8386), + }, + [3156] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(8388), + [sym_comment] = ACTIONS(57), + }, + [3157] = { + [sym_concatenation] = STATE(3522), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3522), + [anon_sym_RBRACE] = ACTIONS(8390), + [anon_sym_EQ] = ACTIONS(8392), + [anon_sym_DASH] = ACTIONS(8392), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(8396), + [anon_sym_COLON] = ACTIONS(8392), + [anon_sym_COLON_QMARK] = ACTIONS(8392), + [anon_sym_COLON_DASH] = ACTIONS(8392), + [anon_sym_PERCENT] = ACTIONS(8392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3158] = { + [sym_concatenation] = STATE(3524), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3524), + [anon_sym_RBRACE] = ACTIONS(8382), + [anon_sym_EQ] = ACTIONS(8398), + [anon_sym_DASH] = ACTIONS(8398), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(8402), + [anon_sym_COLON] = ACTIONS(8398), + [anon_sym_COLON_QMARK] = ACTIONS(8398), + [anon_sym_COLON_DASH] = ACTIONS(8398), + [anon_sym_PERCENT] = ACTIONS(8398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3159] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_done] = ACTIONS(2392), + [anon_sym_fi] = ACTIONS(2392), + [anon_sym_elif] = ACTIONS(2392), + [anon_sym_else] = ACTIONS(2392), + [anon_sym_esac] = ACTIONS(2392), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [3160] = { + [sym_concatenation] = STATE(3527), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3527), + [sym_regex] = ACTIONS(8404), + [anon_sym_RBRACE] = ACTIONS(8406), + [anon_sym_EQ] = ACTIONS(8408), + [anon_sym_DASH] = ACTIONS(8408), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8408), + [anon_sym_COLON_QMARK] = ACTIONS(8408), + [anon_sym_COLON_DASH] = ACTIONS(8408), + [anon_sym_PERCENT] = ACTIONS(8408), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3161] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8406), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3162] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_done] = ACTIONS(2440), + [anon_sym_fi] = ACTIONS(2440), + [anon_sym_elif] = ACTIONS(2440), + [anon_sym_else] = ACTIONS(2440), + [anon_sym_esac] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [3163] = { + [sym_concatenation] = STATE(3524), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3524), + [sym_regex] = ACTIONS(8412), + [anon_sym_RBRACE] = ACTIONS(8382), + [anon_sym_EQ] = ACTIONS(8398), + [anon_sym_DASH] = ACTIONS(8398), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8398), + [anon_sym_COLON_QMARK] = ACTIONS(8398), + [anon_sym_COLON_DASH] = ACTIONS(8398), + [anon_sym_PERCENT] = ACTIONS(8398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3164] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8382), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3165] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_done] = ACTIONS(2446), + [anon_sym_fi] = ACTIONS(2446), + [anon_sym_elif] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2446), + [anon_sym_esac] = ACTIONS(2446), + [anon_sym_PIPE] = ACTIONS(2448), + [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), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [3166] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_done] = ACTIONS(2484), + [anon_sym_fi] = ACTIONS(2484), + [anon_sym_elif] = ACTIONS(2484), + [anon_sym_else] = ACTIONS(2484), + [anon_sym_esac] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [3167] = { + [sym__simple_heredoc_body] = ACTIONS(4334), + [sym__heredoc_body_beginning] = ACTIONS(4334), + [sym_file_descriptor] = ACTIONS(4334), + [sym_variable_name] = ACTIONS(4334), + [anon_sym_SEMI] = ACTIONS(4336), + [anon_sym_fi] = ACTIONS(4336), + [anon_sym_elif] = ACTIONS(4336), + [anon_sym_else] = ACTIONS(4336), + [anon_sym_PIPE] = ACTIONS(4336), + [anon_sym_SEMI_SEMI] = ACTIONS(4334), + [anon_sym_PIPE_AMP] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4336), + [anon_sym_GT] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4334), + [anon_sym_AMP_GT] = ACTIONS(4336), + [anon_sym_AMP_GT_GT] = ACTIONS(4334), + [anon_sym_LT_AMP] = ACTIONS(4334), + [anon_sym_GT_AMP] = ACTIONS(4334), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_LT_LT_DASH] = ACTIONS(4334), + [anon_sym_LT_LT_LT] = ACTIONS(4334), + [sym__special_characters] = ACTIONS(4334), + [anon_sym_DQUOTE] = ACTIONS(4334), + [anon_sym_DOLLAR] = ACTIONS(4336), + [sym_raw_string] = ACTIONS(4334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4334), + [anon_sym_BQUOTE] = ACTIONS(4334), + [anon_sym_LT_LPAREN] = ACTIONS(4334), + [anon_sym_GT_LPAREN] = ACTIONS(4334), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4336), + [anon_sym_LF] = ACTIONS(4334), + [anon_sym_AMP] = ACTIONS(4336), + }, + [3168] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_fi] = ACTIONS(2294), + [anon_sym_elif] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3169] = { + [aux_sym_concatenation_repeat1] = STATE(3169), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(8414), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_fi] = ACTIONS(2294), + [anon_sym_elif] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3170] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [sym_variable_name] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_fi] = ACTIONS(2301), + [anon_sym_elif] = ACTIONS(2301), + [anon_sym_else] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [3171] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(8417), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [3172] = { + [sym_concatenation] = STATE(3533), + [sym_string] = STATE(3532), + [sym_simple_expansion] = STATE(3532), + [sym_string_expansion] = STATE(3532), + [sym_expansion] = STATE(3532), + [sym_command_substitution] = STATE(3532), + [sym_process_substitution] = STATE(3532), + [anon_sym_RBRACE] = ACTIONS(8419), + [sym__special_characters] = ACTIONS(8421), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(8423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8423), + }, + [3173] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(8425), + [sym_comment] = ACTIONS(57), + }, + [3174] = { + [sym_concatenation] = STATE(3537), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3537), + [anon_sym_RBRACE] = ACTIONS(8427), + [anon_sym_EQ] = ACTIONS(8429), + [anon_sym_DASH] = ACTIONS(8429), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8431), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(8433), + [anon_sym_COLON] = ACTIONS(8429), + [anon_sym_COLON_QMARK] = ACTIONS(8429), + [anon_sym_COLON_DASH] = ACTIONS(8429), + [anon_sym_PERCENT] = ACTIONS(8429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3175] = { + [sym_concatenation] = STATE(3539), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3539), + [anon_sym_RBRACE] = ACTIONS(8419), + [anon_sym_EQ] = ACTIONS(8435), + [anon_sym_DASH] = ACTIONS(8435), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8437), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(8439), + [anon_sym_COLON] = ACTIONS(8435), + [anon_sym_COLON_QMARK] = ACTIONS(8435), + [anon_sym_COLON_DASH] = ACTIONS(8435), + [anon_sym_PERCENT] = ACTIONS(8435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3176] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [sym_variable_name] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_fi] = ACTIONS(2394), + [anon_sym_elif] = ACTIONS(2394), + [anon_sym_else] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [3177] = { + [sym_concatenation] = STATE(3542), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3542), + [sym_regex] = ACTIONS(8441), + [anon_sym_RBRACE] = ACTIONS(8443), + [anon_sym_EQ] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8445), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8445), + [anon_sym_COLON_QMARK] = ACTIONS(8445), + [anon_sym_COLON_DASH] = ACTIONS(8445), + [anon_sym_PERCENT] = ACTIONS(8445), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3178] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8443), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3179] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [sym_variable_name] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_fi] = ACTIONS(2442), + [anon_sym_elif] = ACTIONS(2442), + [anon_sym_else] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [3180] = { + [sym_concatenation] = STATE(3539), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3539), + [sym_regex] = ACTIONS(8449), + [anon_sym_RBRACE] = ACTIONS(8419), + [anon_sym_EQ] = ACTIONS(8435), + [anon_sym_DASH] = ACTIONS(8435), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8437), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8435), + [anon_sym_COLON_QMARK] = ACTIONS(8435), + [anon_sym_COLON_DASH] = ACTIONS(8435), + [anon_sym_PERCENT] = ACTIONS(8435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3181] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8419), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3182] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [sym_variable_name] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_fi] = ACTIONS(2448), + [anon_sym_elif] = ACTIONS(2448), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [3183] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [sym_variable_name] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_fi] = ACTIONS(2486), + [anon_sym_elif] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [3184] = { + [sym__simple_heredoc_body] = ACTIONS(2646), + [sym__heredoc_body_beginning] = ACTIONS(2646), + [sym_file_descriptor] = ACTIONS(2646), + [sym_variable_name] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_fi] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_SEMI_SEMI] = ACTIONS(2646), + [anon_sym_PIPE_AMP] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_PIPE_PIPE] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_GT] = ACTIONS(2648), + [anon_sym_GT_GT] = ACTIONS(2646), + [anon_sym_AMP_GT] = ACTIONS(2648), + [anon_sym_AMP_GT_GT] = ACTIONS(2646), + [anon_sym_LT_AMP] = ACTIONS(2646), + [anon_sym_GT_AMP] = ACTIONS(2646), + [anon_sym_LT_LT] = ACTIONS(2648), + [anon_sym_LT_LT_DASH] = ACTIONS(2646), + [anon_sym_LT_LT_LT] = ACTIONS(2646), + [sym__special_characters] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2648), + [sym_raw_string] = ACTIONS(2646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2646), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2646), + [anon_sym_BQUOTE] = ACTIONS(2646), + [anon_sym_LT_LPAREN] = ACTIONS(2646), + [anon_sym_GT_LPAREN] = ACTIONS(2646), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2648), + [anon_sym_LF] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2648), + }, + [3185] = { + [sym_concatenation] = STATE(1243), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1243), + [anon_sym_RPAREN] = ACTIONS(8451), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [3186] = { + [sym_string] = STATE(3545), + [sym_simple_expansion] = STATE(3545), + [sym_string_expansion] = STATE(3545), + [sym_expansion] = STATE(3545), + [sym_command_substitution] = STATE(3545), + [sym_process_substitution] = STATE(3545), + [sym__special_characters] = ACTIONS(8453), + [anon_sym_DQUOTE] = ACTIONS(6311), + [anon_sym_DOLLAR] = ACTIONS(6313), + [sym_raw_string] = ACTIONS(8453), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6317), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6319), + [anon_sym_BQUOTE] = ACTIONS(6321), + [anon_sym_LT_LPAREN] = ACTIONS(6323), + [anon_sym_GT_LPAREN] = ACTIONS(6323), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8453), + }, + [3187] = { + [aux_sym_concatenation_repeat1] = STATE(3546), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(7513), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_fi] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [3188] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [sym_variable_name] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_fi] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [3189] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(8455), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [3190] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(8455), + [anon_sym_DOLLAR] = ACTIONS(8457), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [3191] = { + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [sym_variable_name] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_fi] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [3192] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1085), + [sym_variable_name] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_fi] = 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), + }, + [3193] = { + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [sym_variable_name] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_fi] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + }, + [3194] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(8459), + [sym_comment] = ACTIONS(57), + }, + [3195] = { + [sym_subscript] = STATE(3552), + [sym_variable_name] = ACTIONS(8461), + [anon_sym_DASH] = ACTIONS(8463), + [anon_sym_DOLLAR] = ACTIONS(8463), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8465), + [anon_sym_STAR] = ACTIONS(8467), + [anon_sym_AT] = ACTIONS(8467), + [anon_sym_QMARK] = ACTIONS(8467), + [anon_sym_0] = ACTIONS(8465), + [anon_sym__] = ACTIONS(8465), + }, + [3196] = { + [sym_concatenation] = STATE(3555), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3555), + [anon_sym_RBRACE] = ACTIONS(8469), + [anon_sym_EQ] = ACTIONS(8471), + [anon_sym_DASH] = ACTIONS(8471), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(8475), + [anon_sym_COLON] = ACTIONS(8471), + [anon_sym_COLON_QMARK] = ACTIONS(8471), + [anon_sym_COLON_DASH] = ACTIONS(8471), + [anon_sym_PERCENT] = ACTIONS(8471), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3197] = { + [sym_concatenation] = STATE(3558), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3558), + [anon_sym_RBRACE] = ACTIONS(8477), + [anon_sym_EQ] = ACTIONS(8479), + [anon_sym_DASH] = ACTIONS(8479), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(8483), + [anon_sym_COLON] = ACTIONS(8479), + [anon_sym_COLON_QMARK] = ACTIONS(8479), + [anon_sym_COLON_DASH] = ACTIONS(8479), + [anon_sym_PERCENT] = ACTIONS(8479), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3198] = { + [anon_sym_RPAREN] = ACTIONS(8485), + [sym_comment] = ACTIONS(57), + }, + [3199] = { + [anon_sym_BQUOTE] = ACTIONS(8485), + [sym_comment] = ACTIONS(57), + }, + [3200] = { + [anon_sym_RPAREN] = ACTIONS(8487), + [sym_comment] = ACTIONS(57), + }, + [3201] = { + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_fi] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1373), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [3202] = { + [sym_concatenation] = STATE(3562), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(3562), + [anon_sym_RPAREN] = ACTIONS(8489), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [3203] = { + [aux_sym_concatenation_repeat1] = STATE(2709), + [sym__simple_heredoc_body] = ACTIONS(1393), + [sym__heredoc_body_beginning] = ACTIONS(1393), + [sym_file_descriptor] = ACTIONS(1393), + [sym__concat] = ACTIONS(6327), + [sym_variable_name] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_fi] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_SEMI_SEMI] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_AMP_GT] = ACTIONS(1397), + [anon_sym_AMP_GT_GT] = ACTIONS(1393), + [anon_sym_LT_AMP] = ACTIONS(1393), + [anon_sym_GT_AMP] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_LT_LT_DASH] = ACTIONS(1393), + [anon_sym_LT_LT_LT] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1397), + [sym_raw_string] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1393), + [anon_sym_GT_LPAREN] = ACTIONS(1393), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1397), + [sym_word] = ACTIONS(1397), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1397), + }, + [3204] = { + [aux_sym_concatenation_repeat1] = STATE(2709), + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym__concat] = ACTIONS(6327), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_fi] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1373), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [3205] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_fi] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3206] = { + [aux_sym_concatenation_repeat1] = STATE(3206), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(8491), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_fi] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3207] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [sym_variable_name] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_fi] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2301), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [3208] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(8494), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [3209] = { + [sym_concatenation] = STATE(3567), + [sym_string] = STATE(3566), + [sym_simple_expansion] = STATE(3566), + [sym_string_expansion] = STATE(3566), + [sym_expansion] = STATE(3566), + [sym_command_substitution] = STATE(3566), + [sym_process_substitution] = STATE(3566), + [anon_sym_RBRACE] = ACTIONS(8496), + [sym__special_characters] = ACTIONS(8498), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(8500), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8500), + }, + [3210] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(8502), + [sym_comment] = ACTIONS(57), + }, + [3211] = { + [sym_concatenation] = STATE(3571), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3571), + [anon_sym_RBRACE] = ACTIONS(8504), + [anon_sym_EQ] = ACTIONS(8506), + [anon_sym_DASH] = ACTIONS(8506), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8508), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(8510), + [anon_sym_COLON] = ACTIONS(8506), + [anon_sym_COLON_QMARK] = ACTIONS(8506), + [anon_sym_COLON_DASH] = ACTIONS(8506), + [anon_sym_PERCENT] = ACTIONS(8506), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3212] = { + [sym_concatenation] = STATE(3573), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3573), + [anon_sym_RBRACE] = ACTIONS(8496), + [anon_sym_EQ] = ACTIONS(8512), + [anon_sym_DASH] = ACTIONS(8512), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8514), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(8516), + [anon_sym_COLON] = ACTIONS(8512), + [anon_sym_COLON_QMARK] = ACTIONS(8512), + [anon_sym_COLON_DASH] = ACTIONS(8512), + [anon_sym_PERCENT] = ACTIONS(8512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3213] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [sym_variable_name] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_fi] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2394), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [3214] = { + [sym_concatenation] = STATE(3576), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3576), + [sym_regex] = ACTIONS(8518), + [anon_sym_RBRACE] = ACTIONS(8520), + [anon_sym_EQ] = ACTIONS(8522), + [anon_sym_DASH] = ACTIONS(8522), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8522), + [anon_sym_COLON_QMARK] = ACTIONS(8522), + [anon_sym_COLON_DASH] = ACTIONS(8522), + [anon_sym_PERCENT] = ACTIONS(8522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3215] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8520), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3216] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [sym_variable_name] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_fi] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2442), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [3217] = { + [sym_concatenation] = STATE(3573), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3573), + [sym_regex] = ACTIONS(8526), + [anon_sym_RBRACE] = ACTIONS(8496), + [anon_sym_EQ] = ACTIONS(8512), + [anon_sym_DASH] = ACTIONS(8512), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8514), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8512), + [anon_sym_COLON_QMARK] = ACTIONS(8512), + [anon_sym_COLON_DASH] = ACTIONS(8512), + [anon_sym_PERCENT] = ACTIONS(8512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3218] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8496), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3219] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [sym_variable_name] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_fi] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2448), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [3220] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [sym_variable_name] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_fi] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2486), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [3221] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_fi] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3222] = { + [aux_sym_concatenation_repeat1] = STATE(3222), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(8528), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_fi] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3223] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_fi] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2301), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [3224] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(8531), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [3225] = { + [sym_concatenation] = STATE(3582), + [sym_string] = STATE(3581), + [sym_simple_expansion] = STATE(3581), + [sym_string_expansion] = STATE(3581), + [sym_expansion] = STATE(3581), + [sym_command_substitution] = STATE(3581), + [sym_process_substitution] = STATE(3581), + [anon_sym_RBRACE] = ACTIONS(8533), + [sym__special_characters] = ACTIONS(8535), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(8537), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8537), + }, + [3226] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(8539), + [sym_comment] = ACTIONS(57), + }, + [3227] = { + [sym_concatenation] = STATE(3586), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3586), + [anon_sym_RBRACE] = ACTIONS(8541), + [anon_sym_EQ] = ACTIONS(8543), + [anon_sym_DASH] = ACTIONS(8543), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(8547), + [anon_sym_COLON] = ACTIONS(8543), + [anon_sym_COLON_QMARK] = ACTIONS(8543), + [anon_sym_COLON_DASH] = ACTIONS(8543), + [anon_sym_PERCENT] = ACTIONS(8543), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3228] = { + [sym_concatenation] = STATE(3588), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3588), + [anon_sym_RBRACE] = ACTIONS(8533), + [anon_sym_EQ] = ACTIONS(8549), + [anon_sym_DASH] = ACTIONS(8549), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8551), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(8553), + [anon_sym_COLON] = ACTIONS(8549), + [anon_sym_COLON_QMARK] = ACTIONS(8549), + [anon_sym_COLON_DASH] = ACTIONS(8549), + [anon_sym_PERCENT] = ACTIONS(8549), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3229] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_fi] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2394), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [3230] = { + [sym_concatenation] = STATE(3591), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3591), + [sym_regex] = ACTIONS(8555), + [anon_sym_RBRACE] = ACTIONS(8557), + [anon_sym_EQ] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(8559), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8559), + [anon_sym_COLON_QMARK] = ACTIONS(8559), + [anon_sym_COLON_DASH] = ACTIONS(8559), + [anon_sym_PERCENT] = ACTIONS(8559), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3231] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8557), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3232] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_fi] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2442), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [3233] = { + [sym_concatenation] = STATE(3588), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3588), + [sym_regex] = ACTIONS(8563), + [anon_sym_RBRACE] = ACTIONS(8533), + [anon_sym_EQ] = ACTIONS(8549), + [anon_sym_DASH] = ACTIONS(8549), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8551), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8549), + [anon_sym_COLON_QMARK] = ACTIONS(8549), + [anon_sym_COLON_DASH] = ACTIONS(8549), + [anon_sym_PERCENT] = ACTIONS(8549), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3234] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8533), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3235] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_fi] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2448), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [3236] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_fi] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2486), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [3237] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_fi] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_EQ_TILDE] = ACTIONS(4003), + [anon_sym_EQ_EQ] = ACTIONS(4003), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [3238] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_fi] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_EQ_TILDE] = ACTIONS(4017), + [anon_sym_EQ_EQ] = ACTIONS(4017), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [3239] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8565), + [sym_comment] = ACTIONS(57), + }, + [3240] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8567), + [sym_comment] = ACTIONS(57), + }, + [3241] = { + [anon_sym_RBRACE] = ACTIONS(8567), + [sym_comment] = ACTIONS(57), + }, + [3242] = { + [sym_concatenation] = STATE(3597), + [sym_string] = STATE(3596), + [sym_simple_expansion] = STATE(3596), + [sym_string_expansion] = STATE(3596), + [sym_expansion] = STATE(3596), + [sym_command_substitution] = STATE(3596), + [sym_process_substitution] = STATE(3596), + [anon_sym_RBRACE] = ACTIONS(8567), + [sym__special_characters] = ACTIONS(8569), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(8571), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8571), + }, + [3243] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_fi] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_EQ_TILDE] = ACTIONS(4053), + [anon_sym_EQ_EQ] = ACTIONS(4053), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [3244] = { + [sym_concatenation] = STATE(3600), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3600), + [sym_regex] = ACTIONS(8573), + [anon_sym_RBRACE] = ACTIONS(8575), + [anon_sym_EQ] = ACTIONS(8577), + [anon_sym_DASH] = ACTIONS(8577), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8579), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8577), + [anon_sym_COLON_QMARK] = ACTIONS(8577), + [anon_sym_COLON_DASH] = ACTIONS(8577), + [anon_sym_PERCENT] = ACTIONS(8577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3245] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8575), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3246] = { + [sym_concatenation] = STATE(3602), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3602), + [sym_regex] = ACTIONS(8581), + [anon_sym_RBRACE] = ACTIONS(8567), + [anon_sym_EQ] = ACTIONS(8583), + [anon_sym_DASH] = ACTIONS(8583), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8583), + [anon_sym_COLON_QMARK] = ACTIONS(8583), + [anon_sym_COLON_DASH] = ACTIONS(8583), + [anon_sym_PERCENT] = ACTIONS(8583), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3247] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8567), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3248] = { + [sym_concatenation] = STATE(3604), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3604), + [anon_sym_RBRACE] = ACTIONS(8587), + [anon_sym_EQ] = ACTIONS(8589), + [anon_sym_DASH] = ACTIONS(8589), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8591), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8589), + [anon_sym_COLON_QMARK] = ACTIONS(8589), + [anon_sym_COLON_DASH] = ACTIONS(8589), + [anon_sym_PERCENT] = ACTIONS(8589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3249] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_fi] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_EQ_TILDE] = ACTIONS(4109), + [anon_sym_EQ_EQ] = ACTIONS(4109), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [3250] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8587), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3251] = { + [sym_concatenation] = STATE(3602), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3602), + [anon_sym_RBRACE] = ACTIONS(8567), + [anon_sym_EQ] = ACTIONS(8583), + [anon_sym_DASH] = ACTIONS(8583), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8583), + [anon_sym_COLON_QMARK] = ACTIONS(8583), + [anon_sym_COLON_DASH] = ACTIONS(8583), + [anon_sym_PERCENT] = ACTIONS(8583), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3252] = { + [aux_sym_concatenation_repeat1] = STATE(3254), + [sym__simple_heredoc_body] = ACTIONS(1353), + [sym__heredoc_body_beginning] = ACTIONS(1353), + [sym_file_descriptor] = ACTIONS(1353), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_fi] = ACTIONS(1353), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_SEMI_SEMI] = ACTIONS(1353), + [anon_sym_PIPE_AMP] = ACTIONS(1353), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_GT] = ACTIONS(1355), + [anon_sym_GT_GT] = ACTIONS(1353), + [anon_sym_AMP_GT] = ACTIONS(1355), + [anon_sym_AMP_GT_GT] = ACTIONS(1353), + [anon_sym_LT_AMP] = ACTIONS(1353), + [anon_sym_GT_AMP] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(1355), + [anon_sym_LT_LT_DASH] = ACTIONS(1353), + [anon_sym_LT_LT_LT] = ACTIONS(1353), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1355), + }, + [3253] = { + [aux_sym_concatenation_repeat1] = STATE(3254), + [sym__simple_heredoc_body] = ACTIONS(1357), + [sym__heredoc_body_beginning] = ACTIONS(1357), + [sym_file_descriptor] = ACTIONS(1357), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fi] = ACTIONS(1357), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_SEMI_SEMI] = ACTIONS(1357), + [anon_sym_PIPE_AMP] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1357), + [anon_sym_AMP_GT] = ACTIONS(1359), + [anon_sym_AMP_GT_GT] = ACTIONS(1357), + [anon_sym_LT_AMP] = ACTIONS(1357), + [anon_sym_GT_AMP] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_LT_LT_DASH] = ACTIONS(1357), + [anon_sym_LT_LT_LT] = ACTIONS(1357), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), + }, + [3254] = { + [aux_sym_concatenation_repeat1] = STATE(3605), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_fi] = ACTIONS(1043), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [3255] = { + [sym_file_descriptor] = ACTIONS(2536), + [sym_variable_name] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_LPAREN_LPAREN] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_fi] = ACTIONS(7469), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2540), + [anon_sym_typeset] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_readonly] = ACTIONS(2540), + [anon_sym_local] = ACTIONS(2540), + [anon_sym_unset] = ACTIONS(2540), + [anon_sym_unsetenv] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_GT] = ACTIONS(2540), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_AMP_GT] = ACTIONS(2540), + [anon_sym_AMP_GT_GT] = ACTIONS(2536), + [anon_sym_LT_AMP] = ACTIONS(2536), + [anon_sym_GT_AMP] = ACTIONS(2536), + [sym__special_characters] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2536), + [anon_sym_DOLLAR] = ACTIONS(2540), + [sym_raw_string] = ACTIONS(2536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2536), + [anon_sym_BQUOTE] = ACTIONS(2536), + [anon_sym_LT_LPAREN] = ACTIONS(2536), + [anon_sym_GT_LPAREN] = ACTIONS(2536), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2540), + }, + [3256] = { + [sym__simple_heredoc_body] = ACTIONS(2646), + [sym__heredoc_body_beginning] = ACTIONS(2646), + [sym_file_descriptor] = ACTIONS(2646), + [sym_variable_name] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_fi] = ACTIONS(2648), + [anon_sym_elif] = ACTIONS(2648), + [anon_sym_else] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_SEMI_SEMI] = ACTIONS(2646), + [anon_sym_PIPE_AMP] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_PIPE_PIPE] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_GT] = ACTIONS(2648), + [anon_sym_GT_GT] = ACTIONS(2646), + [anon_sym_AMP_GT] = ACTIONS(2648), + [anon_sym_AMP_GT_GT] = ACTIONS(2646), + [anon_sym_LT_AMP] = ACTIONS(2646), + [anon_sym_GT_AMP] = ACTIONS(2646), + [anon_sym_LT_LT] = ACTIONS(2648), + [anon_sym_LT_LT_DASH] = ACTIONS(2646), + [anon_sym_LT_LT_LT] = ACTIONS(2646), + [sym__special_characters] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2648), + [sym_raw_string] = ACTIONS(2646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2646), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2646), + [anon_sym_BQUOTE] = ACTIONS(2646), + [anon_sym_LT_LPAREN] = ACTIONS(2646), + [anon_sym_GT_LPAREN] = ACTIONS(2646), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2648), + [sym_word] = ACTIONS(2648), + [anon_sym_LF] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2648), + }, + [3257] = { + [sym_concatenation] = STATE(1243), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1243), + [anon_sym_RPAREN] = ACTIONS(8593), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [3258] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [sym_variable_name] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_fi] = ACTIONS(4003), + [anon_sym_elif] = ACTIONS(4003), + [anon_sym_else] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4003), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [3259] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [sym_variable_name] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_fi] = ACTIONS(4017), + [anon_sym_elif] = ACTIONS(4017), + [anon_sym_else] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4017), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [3260] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8595), + [sym_comment] = ACTIONS(57), + }, + [3261] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8597), + [sym_comment] = ACTIONS(57), + }, + [3262] = { + [anon_sym_RBRACE] = ACTIONS(8597), + [sym_comment] = ACTIONS(57), + }, + [3263] = { + [sym_concatenation] = STATE(3611), + [sym_string] = STATE(3610), + [sym_simple_expansion] = STATE(3610), + [sym_string_expansion] = STATE(3610), + [sym_expansion] = STATE(3610), + [sym_command_substitution] = STATE(3610), + [sym_process_substitution] = STATE(3610), + [anon_sym_RBRACE] = ACTIONS(8597), + [sym__special_characters] = ACTIONS(8599), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(8601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8601), + }, + [3264] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [sym_variable_name] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_fi] = ACTIONS(4053), + [anon_sym_elif] = ACTIONS(4053), + [anon_sym_else] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4053), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [3265] = { + [sym_concatenation] = STATE(3614), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3614), + [sym_regex] = ACTIONS(8603), + [anon_sym_RBRACE] = ACTIONS(8605), + [anon_sym_EQ] = ACTIONS(8607), + [anon_sym_DASH] = ACTIONS(8607), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8609), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8607), + [anon_sym_COLON_QMARK] = ACTIONS(8607), + [anon_sym_COLON_DASH] = ACTIONS(8607), + [anon_sym_PERCENT] = ACTIONS(8607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3266] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8605), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3267] = { + [sym_concatenation] = STATE(3616), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3616), + [sym_regex] = ACTIONS(8611), + [anon_sym_RBRACE] = ACTIONS(8597), + [anon_sym_EQ] = ACTIONS(8613), + [anon_sym_DASH] = ACTIONS(8613), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8615), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8613), + [anon_sym_COLON_QMARK] = ACTIONS(8613), + [anon_sym_COLON_DASH] = ACTIONS(8613), + [anon_sym_PERCENT] = ACTIONS(8613), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3268] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8597), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3269] = { + [sym_concatenation] = STATE(3618), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3618), + [anon_sym_RBRACE] = ACTIONS(8617), + [anon_sym_EQ] = ACTIONS(8619), + [anon_sym_DASH] = ACTIONS(8619), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8619), + [anon_sym_COLON_QMARK] = ACTIONS(8619), + [anon_sym_COLON_DASH] = ACTIONS(8619), + [anon_sym_PERCENT] = ACTIONS(8619), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3270] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [sym_variable_name] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_fi] = ACTIONS(4109), + [anon_sym_elif] = ACTIONS(4109), + [anon_sym_else] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4109), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [3271] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8617), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3272] = { + [sym_concatenation] = STATE(3616), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3616), + [anon_sym_RBRACE] = ACTIONS(8597), + [anon_sym_EQ] = ACTIONS(8613), + [anon_sym_DASH] = ACTIONS(8613), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8615), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8613), + [anon_sym_COLON_QMARK] = ACTIONS(8613), + [anon_sym_COLON_DASH] = ACTIONS(8613), + [anon_sym_PERCENT] = ACTIONS(8613), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3273] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_fi] = ACTIONS(4003), + [anon_sym_elif] = ACTIONS(4003), + [anon_sym_else] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4003), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [3274] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_fi] = ACTIONS(4017), + [anon_sym_elif] = ACTIONS(4017), + [anon_sym_else] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4017), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [3275] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8623), + [sym_comment] = ACTIONS(57), + }, + [3276] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8625), + [sym_comment] = ACTIONS(57), + }, + [3277] = { + [anon_sym_RBRACE] = ACTIONS(8625), + [sym_comment] = ACTIONS(57), + }, + [3278] = { + [sym_concatenation] = STATE(3623), + [sym_string] = STATE(3622), + [sym_simple_expansion] = STATE(3622), + [sym_string_expansion] = STATE(3622), + [sym_expansion] = STATE(3622), + [sym_command_substitution] = STATE(3622), + [sym_process_substitution] = STATE(3622), + [anon_sym_RBRACE] = ACTIONS(8625), + [sym__special_characters] = ACTIONS(8627), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(8629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8629), + }, + [3279] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_fi] = ACTIONS(4053), + [anon_sym_elif] = ACTIONS(4053), + [anon_sym_else] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4053), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [3280] = { + [sym_concatenation] = STATE(3626), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3626), + [sym_regex] = ACTIONS(8631), + [anon_sym_RBRACE] = ACTIONS(8633), + [anon_sym_EQ] = ACTIONS(8635), + [anon_sym_DASH] = ACTIONS(8635), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8637), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8635), + [anon_sym_COLON_QMARK] = ACTIONS(8635), + [anon_sym_COLON_DASH] = ACTIONS(8635), + [anon_sym_PERCENT] = ACTIONS(8635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3281] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8633), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3282] = { + [sym_concatenation] = STATE(3628), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3628), + [sym_regex] = ACTIONS(8639), + [anon_sym_RBRACE] = ACTIONS(8625), + [anon_sym_EQ] = ACTIONS(8641), + [anon_sym_DASH] = ACTIONS(8641), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8643), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8641), + [anon_sym_COLON_QMARK] = ACTIONS(8641), + [anon_sym_COLON_DASH] = ACTIONS(8641), + [anon_sym_PERCENT] = ACTIONS(8641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3283] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8625), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3284] = { + [sym_concatenation] = STATE(3630), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3630), + [anon_sym_RBRACE] = ACTIONS(8645), + [anon_sym_EQ] = ACTIONS(8647), + [anon_sym_DASH] = ACTIONS(8647), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8649), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8647), + [anon_sym_COLON_QMARK] = ACTIONS(8647), + [anon_sym_COLON_DASH] = ACTIONS(8647), + [anon_sym_PERCENT] = ACTIONS(8647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3285] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_fi] = ACTIONS(4109), + [anon_sym_elif] = ACTIONS(4109), + [anon_sym_else] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4109), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [3286] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8645), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3287] = { + [sym_concatenation] = STATE(3628), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3628), + [anon_sym_RBRACE] = ACTIONS(8625), + [anon_sym_EQ] = ACTIONS(8641), + [anon_sym_DASH] = ACTIONS(8641), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8643), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8641), + [anon_sym_COLON_QMARK] = ACTIONS(8641), + [anon_sym_COLON_DASH] = ACTIONS(8641), + [anon_sym_PERCENT] = ACTIONS(8641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3288] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_fi] = ACTIONS(5527), + [anon_sym_elif] = ACTIONS(5527), + [anon_sym_else] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_EQ_TILDE] = ACTIONS(5527), + [anon_sym_EQ_EQ] = ACTIONS(5527), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [3289] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_fi] = ACTIONS(5535), + [anon_sym_elif] = ACTIONS(5535), + [anon_sym_else] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_EQ_TILDE] = ACTIONS(5535), + [anon_sym_EQ_EQ] = ACTIONS(5535), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [3290] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8651), + [sym_comment] = ACTIONS(57), + }, + [3291] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8653), + [sym_comment] = ACTIONS(57), + }, + [3292] = { + [anon_sym_RBRACE] = ACTIONS(8653), + [sym_comment] = ACTIONS(57), + }, + [3293] = { + [sym_concatenation] = STATE(3634), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3634), + [anon_sym_RBRACE] = ACTIONS(8655), + [anon_sym_EQ] = ACTIONS(8657), + [anon_sym_DASH] = ACTIONS(8657), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8657), + [anon_sym_COLON_QMARK] = ACTIONS(8657), + [anon_sym_COLON_DASH] = ACTIONS(8657), + [anon_sym_PERCENT] = ACTIONS(8657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3294] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_fi] = ACTIONS(5579), + [anon_sym_elif] = ACTIONS(5579), + [anon_sym_else] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_EQ_TILDE] = ACTIONS(5579), + [anon_sym_EQ_EQ] = ACTIONS(5579), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [3295] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8655), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3296] = { + [sym_concatenation] = STATE(3635), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3635), + [anon_sym_RBRACE] = ACTIONS(8653), + [anon_sym_EQ] = ACTIONS(8661), + [anon_sym_DASH] = ACTIONS(8661), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8663), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8661), + [anon_sym_COLON_QMARK] = ACTIONS(8661), + [anon_sym_COLON_DASH] = ACTIONS(8661), + [anon_sym_PERCENT] = ACTIONS(8661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3297] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8653), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3298] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_fi] = ACTIONS(5624), + [anon_sym_elif] = ACTIONS(5624), + [anon_sym_else] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_EQ_TILDE] = ACTIONS(5624), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [3299] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8665), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3300] = { + [aux_sym_concatenation_repeat1] = STATE(3300), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(8377), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_fi] = ACTIONS(2292), + [anon_sym_elif] = ACTIONS(2292), + [anon_sym_else] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3301] = { + [sym_concatenation] = STATE(3637), + [sym_string] = STATE(3642), + [sym_array] = STATE(3637), + [sym_simple_expansion] = STATE(3642), + [sym_string_expansion] = STATE(3642), + [sym_expansion] = STATE(3642), + [sym_command_substitution] = STATE(3642), + [sym_process_substitution] = STATE(3642), + [sym__empty_value] = ACTIONS(8667), + [anon_sym_LPAREN] = ACTIONS(8669), + [sym__special_characters] = ACTIONS(8671), + [anon_sym_DQUOTE] = ACTIONS(8673), + [anon_sym_DOLLAR] = ACTIONS(8675), + [sym_raw_string] = ACTIONS(8677), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8679), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8681), + [anon_sym_BQUOTE] = ACTIONS(8683), + [anon_sym_LT_LPAREN] = ACTIONS(8685), + [anon_sym_GT_LPAREN] = ACTIONS(8685), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8677), + }, + [3302] = { + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(8687), + [anon_sym_PLUS_EQ] = ACTIONS(8687), + [sym_comment] = ACTIONS(57), + }, + [3303] = { + [aux_sym_concatenation_repeat1] = STATE(3649), + [sym__simple_heredoc_body] = ACTIONS(933), + [sym__heredoc_body_beginning] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(933), + [sym__concat] = ACTIONS(8689), + [sym_variable_name] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_esac] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(937), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(937), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(937), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [sym__special_characters] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(937), + [sym_raw_string] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(937), + [sym_word] = ACTIONS(937), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(937), + }, + [3304] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(3652), + [anon_sym_DQUOTE] = ACTIONS(8691), + [anon_sym_DOLLAR] = ACTIONS(8693), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [3305] = { + [sym_string] = STATE(3654), + [anon_sym_DASH] = ACTIONS(8695), + [anon_sym_DQUOTE] = ACTIONS(7891), + [anon_sym_DOLLAR] = ACTIONS(8695), + [sym_raw_string] = ACTIONS(8697), + [anon_sym_POUND] = ACTIONS(8695), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8699), + [anon_sym_STAR] = ACTIONS(8701), + [anon_sym_AT] = ACTIONS(8701), + [anon_sym_QMARK] = ACTIONS(8701), + [anon_sym_0] = ACTIONS(8699), + [anon_sym__] = ACTIONS(8699), + }, + [3306] = { + [aux_sym_concatenation_repeat1] = STATE(3649), + [sym__simple_heredoc_body] = ACTIONS(951), + [sym__heredoc_body_beginning] = ACTIONS(951), + [sym_file_descriptor] = ACTIONS(951), + [sym__concat] = ACTIONS(8689), + [sym_variable_name] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_esac] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_SEMI_SEMI] = ACTIONS(951), + [anon_sym_PIPE_AMP] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_LT] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(953), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_AMP_GT] = ACTIONS(953), + [anon_sym_AMP_GT_GT] = ACTIONS(951), + [anon_sym_LT_AMP] = ACTIONS(951), + [anon_sym_GT_AMP] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(953), + [anon_sym_LT_LT_DASH] = ACTIONS(951), + [anon_sym_LT_LT_LT] = ACTIONS(951), + [sym__special_characters] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(953), + [sym_raw_string] = ACTIONS(951), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(951), + [anon_sym_BQUOTE] = ACTIONS(951), + [anon_sym_LT_LPAREN] = ACTIONS(951), + [anon_sym_GT_LPAREN] = ACTIONS(951), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(953), + [sym_word] = ACTIONS(953), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_AMP] = ACTIONS(953), + }, + [3307] = { + [sym_subscript] = STATE(3659), + [sym_variable_name] = ACTIONS(8703), + [anon_sym_BANG] = ACTIONS(8705), + [anon_sym_DASH] = ACTIONS(8707), + [anon_sym_DOLLAR] = ACTIONS(8707), + [anon_sym_POUND] = ACTIONS(8705), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8709), + [anon_sym_STAR] = ACTIONS(8711), + [anon_sym_AT] = ACTIONS(8711), + [anon_sym_QMARK] = ACTIONS(8711), + [anon_sym_0] = ACTIONS(8709), + [anon_sym__] = ACTIONS(8709), + }, + [3308] = { + [sym__statements] = STATE(3660), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [3309] = { + [sym__statements] = STATE(3661), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [3310] = { + [sym__statements] = STATE(3662), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [3311] = { + [anon_sym_EQ] = ACTIONS(8687), + [anon_sym_PLUS_EQ] = ACTIONS(8687), + [sym_comment] = ACTIONS(57), + }, + [3312] = { + [sym_variable_assignment] = STATE(3663), + [sym_subscript] = STATE(3311), + [sym_concatenation] = STATE(3663), + [sym_string] = STATE(3306), + [sym_simple_expansion] = STATE(3306), + [sym_string_expansion] = STATE(3306), + [sym_expansion] = STATE(3306), + [sym_command_substitution] = STATE(3306), + [sym_process_substitution] = STATE(3306), + [aux_sym_declaration_command_repeat1] = STATE(3663), + [sym__simple_heredoc_body] = ACTIONS(965), + [sym__heredoc_body_beginning] = ACTIONS(965), + [sym_file_descriptor] = ACTIONS(965), + [sym_variable_name] = ACTIONS(7887), + [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_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(7889), + [anon_sym_DQUOTE] = ACTIONS(7891), + [anon_sym_DOLLAR] = ACTIONS(7893), + [sym_raw_string] = ACTIONS(7895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7899), + [anon_sym_BQUOTE] = ACTIONS(7901), + [anon_sym_LT_LPAREN] = ACTIONS(7903), + [anon_sym_GT_LPAREN] = ACTIONS(7903), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8713), + [sym_word] = ACTIONS(7907), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + }, + [3313] = { + [aux_sym_concatenation_repeat1] = STATE(3665), + [sym__simple_heredoc_body] = ACTIONS(971), + [sym__heredoc_body_beginning] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(971), + [sym__concat] = ACTIONS(8715), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_esac] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [sym__special_characters] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(975), + [sym_word] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(975), + }, + [3314] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(3668), + [anon_sym_DQUOTE] = ACTIONS(8717), + [anon_sym_DOLLAR] = ACTIONS(8719), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [3315] = { + [sym_string] = STATE(3670), + [anon_sym_DASH] = ACTIONS(8721), + [anon_sym_DQUOTE] = ACTIONS(7911), + [anon_sym_DOLLAR] = ACTIONS(8721), + [sym_raw_string] = ACTIONS(8723), + [anon_sym_POUND] = ACTIONS(8721), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8725), + [anon_sym_STAR] = ACTIONS(8727), + [anon_sym_AT] = ACTIONS(8727), + [anon_sym_QMARK] = ACTIONS(8727), + [anon_sym_0] = ACTIONS(8725), + [anon_sym__] = ACTIONS(8725), + }, + [3316] = { + [aux_sym_concatenation_repeat1] = STATE(3665), + [sym__simple_heredoc_body] = ACTIONS(989), + [sym__heredoc_body_beginning] = ACTIONS(989), + [sym_file_descriptor] = ACTIONS(989), + [sym__concat] = ACTIONS(8715), + [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_LT] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_AMP_GT] = ACTIONS(991), + [anon_sym_AMP_GT_GT] = ACTIONS(989), + [anon_sym_LT_AMP] = ACTIONS(989), + [anon_sym_GT_AMP] = ACTIONS(989), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_LT_LT_DASH] = ACTIONS(989), + [anon_sym_LT_LT_LT] = ACTIONS(989), + [sym__special_characters] = ACTIONS(989), + [anon_sym_DQUOTE] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(991), + [sym_raw_string] = ACTIONS(989), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(989), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(989), + [anon_sym_LT_LPAREN] = ACTIONS(989), + [anon_sym_GT_LPAREN] = ACTIONS(989), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(991), + [sym_word] = ACTIONS(991), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [3317] = { + [sym_subscript] = STATE(3675), + [sym_variable_name] = ACTIONS(8729), + [anon_sym_BANG] = ACTIONS(8731), + [anon_sym_DASH] = ACTIONS(8733), + [anon_sym_DOLLAR] = ACTIONS(8733), + [anon_sym_POUND] = ACTIONS(8731), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8735), + [anon_sym_STAR] = ACTIONS(8737), + [anon_sym_AT] = ACTIONS(8737), + [anon_sym_QMARK] = ACTIONS(8737), + [anon_sym_0] = ACTIONS(8735), + [anon_sym__] = ACTIONS(8735), + }, + [3318] = { + [sym__statements] = STATE(3676), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [3319] = { + [sym__statements] = STATE(3677), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [3320] = { + [sym__statements] = STATE(3678), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [3321] = { + [sym_concatenation] = STATE(3679), + [sym_string] = STATE(3316), + [sym_simple_expansion] = STATE(3316), + [sym_string_expansion] = STATE(3316), + [sym_expansion] = STATE(3316), + [sym_command_substitution] = STATE(3316), + [sym_process_substitution] = STATE(3316), + [aux_sym_unset_command_repeat1] = STATE(3679), + [sym__simple_heredoc_body] = ACTIONS(1003), + [sym__heredoc_body_beginning] = ACTIONS(1003), + [sym_file_descriptor] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_esac] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_SEMI_SEMI] = ACTIONS(1003), + [anon_sym_PIPE_AMP] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_AMP_GT] = ACTIONS(1005), + [anon_sym_AMP_GT_GT] = ACTIONS(1003), + [anon_sym_LT_AMP] = ACTIONS(1003), + [anon_sym_GT_AMP] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_LT_LT_DASH] = ACTIONS(1003), + [anon_sym_LT_LT_LT] = ACTIONS(1003), + [sym__special_characters] = ACTIONS(7909), + [anon_sym_DQUOTE] = ACTIONS(7911), + [anon_sym_DOLLAR] = ACTIONS(7913), + [sym_raw_string] = ACTIONS(7915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7917), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7919), + [anon_sym_BQUOTE] = ACTIONS(7921), + [anon_sym_LT_LPAREN] = ACTIONS(7923), + [anon_sym_GT_LPAREN] = ACTIONS(7923), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8739), + [sym_word] = ACTIONS(7927), + [anon_sym_LF] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1005), + }, + [3322] = { + [sym_string] = STATE(3680), + [sym_simple_expansion] = STATE(3680), + [sym_string_expansion] = STATE(3680), + [sym_expansion] = STATE(3680), + [sym_command_substitution] = STATE(3680), + [sym_process_substitution] = STATE(3680), + [sym__special_characters] = ACTIONS(8741), + [anon_sym_DQUOTE] = ACTIONS(6695), + [anon_sym_DOLLAR] = ACTIONS(6697), + [sym_raw_string] = ACTIONS(8741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6703), + [anon_sym_BQUOTE] = ACTIONS(6705), + [anon_sym_LT_LPAREN] = ACTIONS(6707), + [anon_sym_GT_LPAREN] = ACTIONS(6707), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8741), + }, + [3323] = { + [aux_sym_concatenation_repeat1] = STATE(3681), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(7929), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_esac] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_EQ_TILDE] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [3324] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_esac] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1049), + [anon_sym_EQ_EQ] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [3325] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(8743), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [3326] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(8743), + [anon_sym_DOLLAR] = ACTIONS(8745), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [3327] = { + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_esac] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1083), + [anon_sym_EQ_EQ] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [3328] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = 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_EQ_TILDE] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1087), + [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), + }, + [3329] = { + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_esac] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1091), + [anon_sym_EQ_EQ] = ACTIONS(1091), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + }, + [3330] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(8747), + [sym_comment] = ACTIONS(57), + }, + [3331] = { + [sym_subscript] = STATE(3687), + [sym_variable_name] = ACTIONS(8749), + [anon_sym_DASH] = ACTIONS(8751), + [anon_sym_DOLLAR] = ACTIONS(8751), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8753), + [anon_sym_STAR] = ACTIONS(8755), + [anon_sym_AT] = ACTIONS(8755), + [anon_sym_QMARK] = ACTIONS(8755), + [anon_sym_0] = ACTIONS(8753), + [anon_sym__] = ACTIONS(8753), + }, + [3332] = { + [sym_concatenation] = STATE(3690), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3690), + [anon_sym_RBRACE] = ACTIONS(8757), + [anon_sym_EQ] = ACTIONS(8759), + [anon_sym_DASH] = ACTIONS(8759), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8761), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(8763), + [anon_sym_COLON] = ACTIONS(8759), + [anon_sym_COLON_QMARK] = ACTIONS(8759), + [anon_sym_COLON_DASH] = ACTIONS(8759), + [anon_sym_PERCENT] = ACTIONS(8759), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3333] = { + [sym_concatenation] = STATE(3693), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3693), + [anon_sym_RBRACE] = ACTIONS(8765), + [anon_sym_EQ] = ACTIONS(8767), + [anon_sym_DASH] = ACTIONS(8767), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8769), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(8771), + [anon_sym_COLON] = ACTIONS(8767), + [anon_sym_COLON_QMARK] = ACTIONS(8767), + [anon_sym_COLON_DASH] = ACTIONS(8767), + [anon_sym_PERCENT] = ACTIONS(8767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3334] = { + [anon_sym_RPAREN] = ACTIONS(8773), + [sym_comment] = ACTIONS(57), + }, + [3335] = { + [anon_sym_BQUOTE] = ACTIONS(8773), + [sym_comment] = ACTIONS(57), + }, + [3336] = { + [anon_sym_RPAREN] = ACTIONS(8775), + [sym_comment] = ACTIONS(57), + }, + [3337] = { + [anon_sym_esac] = ACTIONS(8777), + [sym__special_characters] = ACTIONS(8779), + [anon_sym_DQUOTE] = ACTIONS(8779), + [anon_sym_DOLLAR] = ACTIONS(8781), + [sym_raw_string] = ACTIONS(8779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8779), + [anon_sym_BQUOTE] = ACTIONS(8779), + [anon_sym_LT_LPAREN] = ACTIONS(8779), + [anon_sym_GT_LPAREN] = ACTIONS(8779), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8781), + }, + [3338] = { + [anon_sym_LT] = ACTIONS(8783), + [anon_sym_GT] = ACTIONS(8783), + [anon_sym_GT_GT] = ACTIONS(8785), + [anon_sym_AMP_GT] = ACTIONS(8783), + [anon_sym_AMP_GT_GT] = ACTIONS(8785), + [anon_sym_LT_AMP] = ACTIONS(8785), + [anon_sym_GT_AMP] = ACTIONS(8785), + [sym_comment] = ACTIONS(57), + }, + [3339] = { + [sym_file_descriptor] = ACTIONS(1213), + [sym_variable_name] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_esac] = ACTIONS(4862), + [anon_sym_SEMI_SEMI] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_typeset] = ACTIONS(1217), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_local] = ACTIONS(1217), + [anon_sym_unset] = ACTIONS(1217), + [anon_sym_unsetenv] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_GT] = ACTIONS(1213), + [anon_sym_AMP_GT] = ACTIONS(1217), + [anon_sym_AMP_GT_GT] = ACTIONS(1213), + [anon_sym_LT_AMP] = ACTIONS(1213), + [anon_sym_GT_AMP] = ACTIONS(1213), + [sym__special_characters] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1217), + [sym_raw_string] = ACTIONS(1213), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1213), + [anon_sym_BQUOTE] = ACTIONS(1213), + [anon_sym_LT_LPAREN] = ACTIONS(1213), + [anon_sym_GT_LPAREN] = ACTIONS(1213), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1217), + }, + [3340] = { + [sym_redirected_statement] = STATE(3697), + [sym_for_statement] = STATE(3697), + [sym_c_style_for_statement] = STATE(3697), + [sym_while_statement] = STATE(3697), + [sym_if_statement] = STATE(3697), + [sym_case_statement] = STATE(3697), + [sym_function_definition] = STATE(3697), + [sym_compound_statement] = STATE(3697), + [sym_subshell] = STATE(3697), + [sym_pipeline] = STATE(3697), + [sym_list] = STATE(3697), + [sym_negated_command] = STATE(3697), + [sym_test_command] = STATE(3697), + [sym_declaration_command] = STATE(3697), + [sym_unset_command] = STATE(3697), + [sym_command] = STATE(3697), + [sym_command_name] = STATE(2849), + [sym_variable_assignment] = STATE(3698), + [sym_subscript] = STATE(2851), + [sym_file_redirect] = STATE(2854), + [sym_concatenation] = STATE(2852), + [sym_string] = STATE(2841), + [sym_simple_expansion] = STATE(2841), + [sym_string_expansion] = STATE(2841), + [sym_expansion] = STATE(2841), + [sym_command_substitution] = STATE(2841), + [sym_process_substitution] = STATE(2841), + [aux_sym_command_repeat1] = STATE(2854), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(6681), + [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(6687), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(6689), + [anon_sym_typeset] = ACTIONS(6689), + [anon_sym_export] = ACTIONS(6689), + [anon_sym_readonly] = ACTIONS(6689), + [anon_sym_local] = ACTIONS(6689), + [anon_sym_unset] = ACTIONS(6691), + [anon_sym_unsetenv] = ACTIONS(6691), + [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(6693), + [anon_sym_DQUOTE] = ACTIONS(6695), + [anon_sym_DOLLAR] = ACTIONS(6697), + [sym_raw_string] = ACTIONS(6699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6703), + [anon_sym_BQUOTE] = ACTIONS(6705), + [anon_sym_LT_LPAREN] = ACTIONS(6707), + [anon_sym_GT_LPAREN] = ACTIONS(6707), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6709), + }, + [3341] = { + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3699), + [sym_if_statement] = STATE(3699), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3699), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(2849), + [sym_variable_assignment] = STATE(3700), + [sym_subscript] = STATE(2851), + [sym_file_redirect] = STATE(2854), + [sym_concatenation] = STATE(2852), + [sym_string] = STATE(2841), + [sym_simple_expansion] = STATE(2841), + [sym_string_expansion] = STATE(2841), + [sym_expansion] = STATE(2841), + [sym_command_substitution] = STATE(2841), + [sym_process_substitution] = STATE(2841), + [aux_sym_command_repeat1] = STATE(2854), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(6681), + [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(6687), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(6689), + [anon_sym_typeset] = ACTIONS(6689), + [anon_sym_export] = ACTIONS(6689), + [anon_sym_readonly] = ACTIONS(6689), + [anon_sym_local] = ACTIONS(6689), + [anon_sym_unset] = ACTIONS(6691), + [anon_sym_unsetenv] = ACTIONS(6691), + [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(6693), + [anon_sym_DQUOTE] = ACTIONS(6695), + [anon_sym_DOLLAR] = ACTIONS(6697), + [sym_raw_string] = ACTIONS(6699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6703), + [anon_sym_BQUOTE] = ACTIONS(6705), + [anon_sym_LT_LPAREN] = ACTIONS(6707), + [anon_sym_GT_LPAREN] = ACTIONS(6707), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6709), + }, + [3342] = { + [sym_concatenation] = STATE(632), + [sym_string] = STATE(3702), + [sym_simple_expansion] = STATE(3702), + [sym_string_expansion] = STATE(3702), + [sym_expansion] = STATE(3702), + [sym_command_substitution] = STATE(3702), + [sym_process_substitution] = STATE(3702), + [sym__special_characters] = ACTIONS(8787), + [anon_sym_DQUOTE] = ACTIONS(4866), + [anon_sym_DOLLAR] = ACTIONS(4868), + [sym_raw_string] = ACTIONS(8789), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4872), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4874), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LT_LPAREN] = ACTIONS(4878), + [anon_sym_GT_LPAREN] = ACTIONS(4878), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8789), + }, + [3343] = { + [sym_concatenation] = STATE(636), + [sym_string] = STATE(3704), + [sym_simple_expansion] = STATE(3704), + [sym_string_expansion] = STATE(3704), + [sym_expansion] = STATE(3704), + [sym_command_substitution] = STATE(3704), + [sym_process_substitution] = STATE(3704), + [sym__special_characters] = ACTIONS(8791), + [anon_sym_DQUOTE] = ACTIONS(4866), + [anon_sym_DOLLAR] = ACTIONS(4868), + [sym_raw_string] = ACTIONS(8793), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4872), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4874), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LT_LPAREN] = ACTIONS(4878), + [anon_sym_GT_LPAREN] = ACTIONS(4878), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8793), + }, + [3344] = { + [anon_sym_SEMI] = ACTIONS(8795), + [anon_sym_esac] = ACTIONS(1215), + [anon_sym_SEMI_SEMI] = ACTIONS(1215), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8797), + [anon_sym_AMP] = ACTIONS(8797), + }, + [3345] = { + [sym_file_redirect] = STATE(3706), + [sym_heredoc_redirect] = STATE(3706), + [sym_herestring_redirect] = STATE(3706), + [aux_sym_redirected_statement_repeat1] = STATE(3706), + [sym__simple_heredoc_body] = ACTIONS(1233), + [sym__heredoc_body_beginning] = ACTIONS(1233), + [sym_file_descriptor] = ACTIONS(7957), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_esac] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1233), + [anon_sym_PIPE_AMP] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(7967), + [anon_sym_GT] = ACTIONS(7967), + [anon_sym_GT_GT] = ACTIONS(7969), + [anon_sym_AMP_GT] = ACTIONS(7967), + [anon_sym_AMP_GT_GT] = ACTIONS(7969), + [anon_sym_LT_AMP] = ACTIONS(7969), + [anon_sym_GT_AMP] = ACTIONS(7969), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(7971), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1235), + }, + [3346] = { + [sym_concatenation] = STATE(3707), + [sym_string] = STATE(3709), + [sym_simple_expansion] = STATE(3709), + [sym_string_expansion] = STATE(3709), + [sym_expansion] = STATE(3709), + [sym_command_substitution] = STATE(3709), + [sym_process_substitution] = STATE(3709), + [sym_regex] = ACTIONS(8799), + [sym__special_characters] = ACTIONS(8801), + [anon_sym_DQUOTE] = ACTIONS(6695), + [anon_sym_DOLLAR] = ACTIONS(6697), + [sym_raw_string] = ACTIONS(8803), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6703), + [anon_sym_BQUOTE] = ACTIONS(6705), + [anon_sym_LT_LPAREN] = ACTIONS(6707), + [anon_sym_GT_LPAREN] = ACTIONS(6707), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8803), + }, + [3347] = { + [aux_sym_concatenation_repeat1] = STATE(3323), + [sym__simple_heredoc_body] = ACTIONS(1243), + [sym__heredoc_body_beginning] = ACTIONS(1243), + [sym_file_descriptor] = ACTIONS(1243), + [sym__concat] = ACTIONS(7929), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_esac] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1245), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_LT_LT_DASH] = ACTIONS(1243), + [anon_sym_LT_LT_LT] = ACTIONS(1243), + [sym__special_characters] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1245), + [sym_raw_string] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [anon_sym_LT_LPAREN] = ACTIONS(1243), + [anon_sym_GT_LPAREN] = ACTIONS(1243), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1245), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1245), + }, + [3348] = { + [aux_sym_concatenation_repeat1] = STATE(3323), + [sym__simple_heredoc_body] = ACTIONS(1247), + [sym__heredoc_body_beginning] = ACTIONS(1247), + [sym_file_descriptor] = ACTIONS(1247), + [sym__concat] = ACTIONS(7929), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_esac] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_SEMI_SEMI] = ACTIONS(1247), + [anon_sym_PIPE_AMP] = ACTIONS(1247), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_AMP_GT] = ACTIONS(1249), + [anon_sym_AMP_GT_GT] = ACTIONS(1247), + [anon_sym_LT_AMP] = ACTIONS(1247), + [anon_sym_GT_AMP] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_LT_LT_DASH] = ACTIONS(1247), + [anon_sym_LT_LT_LT] = ACTIONS(1247), + [sym__special_characters] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1247), + [anon_sym_DOLLAR] = ACTIONS(1249), + [sym_raw_string] = ACTIONS(1247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1247), + [anon_sym_BQUOTE] = ACTIONS(1247), + [anon_sym_LT_LPAREN] = ACTIONS(1247), + [anon_sym_GT_LPAREN] = ACTIONS(1247), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1249), + [anon_sym_LF] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1249), + }, + [3349] = { + [sym_concatenation] = STATE(3710), + [sym_string] = STATE(3348), + [sym_simple_expansion] = STATE(3348), + [sym_string_expansion] = STATE(3348), + [sym_expansion] = STATE(3348), + [sym_command_substitution] = STATE(3348), + [sym_process_substitution] = STATE(3348), + [aux_sym_command_repeat2] = STATE(3710), + [sym__simple_heredoc_body] = ACTIONS(1251), + [sym__heredoc_body_beginning] = ACTIONS(1251), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_esac] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(7975), + [anon_sym_EQ_EQ] = ACTIONS(7975), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(7977), + [anon_sym_DQUOTE] = ACTIONS(6695), + [anon_sym_DOLLAR] = ACTIONS(6697), + [sym_raw_string] = ACTIONS(7979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6703), + [anon_sym_BQUOTE] = ACTIONS(6705), + [anon_sym_LT_LPAREN] = ACTIONS(6707), + [anon_sym_GT_LPAREN] = ACTIONS(6707), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7981), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + }, + [3350] = { + [sym_file_redirect] = STATE(3345), + [sym_heredoc_redirect] = STATE(3345), + [sym_heredoc_body] = STATE(3712), + [sym_herestring_redirect] = STATE(3345), + [aux_sym_redirected_statement_repeat1] = STATE(3345), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(7957), + [anon_sym_SEMI] = ACTIONS(8805), + [anon_sym_esac] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(7961), + [anon_sym_SEMI_SEMI] = ACTIONS(1215), + [anon_sym_PIPE_AMP] = ACTIONS(7963), + [anon_sym_AMP_AMP] = ACTIONS(7965), + [anon_sym_PIPE_PIPE] = ACTIONS(7965), + [anon_sym_LT] = ACTIONS(7967), + [anon_sym_GT] = ACTIONS(7967), + [anon_sym_GT_GT] = ACTIONS(7969), + [anon_sym_AMP_GT] = ACTIONS(7967), + [anon_sym_AMP_GT_GT] = ACTIONS(7969), + [anon_sym_LT_AMP] = ACTIONS(7969), + [anon_sym_GT_AMP] = ACTIONS(7969), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(7971), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8807), + [anon_sym_AMP] = ACTIONS(8805), + }, + [3351] = { + [sym_file_redirect] = STATE(3345), + [sym_heredoc_redirect] = STATE(3345), + [sym_heredoc_body] = STATE(3712), + [sym_herestring_redirect] = STATE(3345), + [aux_sym_redirected_statement_repeat1] = STATE(3345), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(8805), + [anon_sym_esac] = ACTIONS(4862), + [anon_sym_PIPE] = ACTIONS(7961), + [anon_sym_SEMI_SEMI] = ACTIONS(1215), + [anon_sym_PIPE_AMP] = ACTIONS(7963), + [anon_sym_AMP_AMP] = ACTIONS(7965), + [anon_sym_PIPE_PIPE] = ACTIONS(7965), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(7971), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(8807), + [anon_sym_AMP] = ACTIONS(8805), + }, + [3352] = { + [sym_concatenation] = STATE(3713), + [sym_string] = STATE(3348), + [sym_simple_expansion] = STATE(3348), + [sym_string_expansion] = STATE(3348), + [sym_expansion] = STATE(3348), + [sym_command_substitution] = STATE(3348), + [sym_process_substitution] = STATE(3348), + [aux_sym_command_repeat2] = STATE(3713), + [sym__simple_heredoc_body] = ACTIONS(1251), + [sym__heredoc_body_beginning] = ACTIONS(1251), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_esac] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(7975), + [anon_sym_EQ_EQ] = ACTIONS(7975), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(7977), + [anon_sym_DQUOTE] = ACTIONS(6695), + [anon_sym_DOLLAR] = ACTIONS(6697), + [sym_raw_string] = ACTIONS(7979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6703), + [anon_sym_BQUOTE] = ACTIONS(6705), + [anon_sym_LT_LPAREN] = ACTIONS(6707), + [anon_sym_GT_LPAREN] = ACTIONS(6707), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7981), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + }, + [3353] = { + [anon_sym_esac] = ACTIONS(8809), + [anon_sym_SEMI_SEMI] = ACTIONS(8811), + [sym_comment] = ACTIONS(57), + }, + [3354] = { + [anon_sym_esac] = ACTIONS(8813), + [sym__special_characters] = ACTIONS(8815), + [anon_sym_DQUOTE] = ACTIONS(8815), + [anon_sym_DOLLAR] = ACTIONS(8817), + [sym_raw_string] = ACTIONS(8815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8815), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8815), + [anon_sym_BQUOTE] = ACTIONS(8815), + [anon_sym_LT_LPAREN] = ACTIONS(8815), + [anon_sym_GT_LPAREN] = ACTIONS(8815), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8817), + }, + [3355] = { + [anon_sym_esac] = ACTIONS(8819), + [anon_sym_SEMI_SEMI] = ACTIONS(8821), + [sym_comment] = ACTIONS(57), + }, + [3356] = { + [sym__statements] = STATE(3717), + [sym_redirected_statement] = STATE(3718), + [sym_for_statement] = STATE(3718), + [sym_c_style_for_statement] = STATE(3718), + [sym_while_statement] = STATE(3718), + [sym_if_statement] = STATE(3718), + [sym_case_statement] = STATE(3718), + [sym_function_definition] = STATE(3718), + [sym_compound_statement] = STATE(3718), + [sym_subshell] = STATE(3718), + [sym_pipeline] = STATE(3718), + [sym_list] = STATE(3718), + [sym_negated_command] = STATE(3718), + [sym_test_command] = STATE(3718), + [sym_declaration_command] = STATE(3718), + [sym_unset_command] = STATE(3718), + [sym_command] = STATE(3718), + [sym_command_name] = STATE(649), + [sym_variable_assignment] = STATE(3719), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(651), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(3720), + [aux_sym_command_repeat1] = STATE(651), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(8823), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(4272), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(4274), + [anon_sym_typeset] = ACTIONS(4274), + [anon_sym_export] = ACTIONS(4274), + [anon_sym_readonly] = ACTIONS(4274), + [anon_sym_local] = ACTIONS(4274), + [anon_sym_unset] = ACTIONS(4276), + [anon_sym_unsetenv] = ACTIONS(4276), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [3357] = { + [aux_sym_case_item_repeat1] = STATE(2856), + [anon_sym_PIPE] = ACTIONS(5149), + [anon_sym_RPAREN] = ACTIONS(8825), + [sym_comment] = ACTIONS(57), + }, + [3358] = { + [sym__statements] = STATE(3723), + [sym_redirected_statement] = STATE(3718), + [sym_for_statement] = STATE(3718), + [sym_c_style_for_statement] = STATE(3718), + [sym_while_statement] = STATE(3718), + [sym_if_statement] = STATE(3718), + [sym_case_statement] = STATE(3718), + [sym_function_definition] = STATE(3718), + [sym_compound_statement] = STATE(3718), + [sym_subshell] = STATE(3718), + [sym_pipeline] = STATE(3718), + [sym_list] = STATE(3718), + [sym_negated_command] = STATE(3718), + [sym_test_command] = STATE(3718), + [sym_declaration_command] = STATE(3718), + [sym_unset_command] = STATE(3718), + [sym_command] = STATE(3718), + [sym_command_name] = STATE(649), + [sym_variable_assignment] = STATE(3719), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(651), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(3720), + [aux_sym_command_repeat1] = STATE(651), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(8827), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(4272), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(4274), + [anon_sym_typeset] = ACTIONS(4274), + [anon_sym_export] = ACTIONS(4274), + [anon_sym_readonly] = ACTIONS(4274), + [anon_sym_local] = ACTIONS(4274), + [anon_sym_unset] = ACTIONS(4276), + [anon_sym_unsetenv] = ACTIONS(4276), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [3359] = { + [aux_sym_case_item_repeat1] = STATE(2856), + [anon_sym_PIPE] = ACTIONS(5149), + [anon_sym_RPAREN] = ACTIONS(8829), + [sym_comment] = ACTIONS(57), + }, + [3360] = { + [sym__simple_heredoc_body] = ACTIONS(8831), + [sym__heredoc_body_beginning] = ACTIONS(8831), + [sym_file_descriptor] = ACTIONS(8831), + [ts_builtin_sym_end] = ACTIONS(8831), + [anon_sym_SEMI] = ACTIONS(8833), + [anon_sym_done] = ACTIONS(8831), + [anon_sym_fi] = ACTIONS(8831), + [anon_sym_elif] = ACTIONS(8831), + [anon_sym_else] = ACTIONS(8831), + [anon_sym_esac] = ACTIONS(8831), + [anon_sym_PIPE] = ACTIONS(8833), + [anon_sym_RPAREN] = ACTIONS(8831), + [anon_sym_SEMI_SEMI] = ACTIONS(8831), + [anon_sym_PIPE_AMP] = ACTIONS(8831), + [anon_sym_AMP_AMP] = ACTIONS(8831), + [anon_sym_PIPE_PIPE] = ACTIONS(8831), + [anon_sym_LT] = ACTIONS(8833), + [anon_sym_GT] = ACTIONS(8833), + [anon_sym_GT_GT] = ACTIONS(8831), + [anon_sym_AMP_GT] = ACTIONS(8833), + [anon_sym_AMP_GT_GT] = ACTIONS(8831), + [anon_sym_LT_AMP] = ACTIONS(8831), + [anon_sym_GT_AMP] = ACTIONS(8831), + [anon_sym_LT_LT] = ACTIONS(8833), + [anon_sym_LT_LT_DASH] = ACTIONS(8831), + [anon_sym_LT_LT_LT] = ACTIONS(8831), + [anon_sym_BQUOTE] = ACTIONS(8831), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8831), + [anon_sym_AMP] = ACTIONS(8833), + }, + [3361] = { + [sym__simple_heredoc_body] = ACTIONS(8835), + [sym__heredoc_body_beginning] = ACTIONS(8835), + [sym_file_descriptor] = ACTIONS(8835), + [ts_builtin_sym_end] = ACTIONS(8835), + [anon_sym_SEMI] = ACTIONS(8837), + [anon_sym_done] = ACTIONS(8835), + [anon_sym_fi] = ACTIONS(8835), + [anon_sym_elif] = ACTIONS(8835), + [anon_sym_else] = ACTIONS(8835), + [anon_sym_esac] = ACTIONS(8835), + [anon_sym_PIPE] = ACTIONS(8837), + [anon_sym_RPAREN] = ACTIONS(8835), + [anon_sym_SEMI_SEMI] = ACTIONS(8835), + [anon_sym_PIPE_AMP] = ACTIONS(8835), + [anon_sym_AMP_AMP] = ACTIONS(8835), + [anon_sym_PIPE_PIPE] = ACTIONS(8835), + [anon_sym_LT] = ACTIONS(8837), + [anon_sym_GT] = ACTIONS(8837), + [anon_sym_GT_GT] = ACTIONS(8835), + [anon_sym_AMP_GT] = ACTIONS(8837), + [anon_sym_AMP_GT_GT] = ACTIONS(8835), + [anon_sym_LT_AMP] = ACTIONS(8835), + [anon_sym_GT_AMP] = ACTIONS(8835), + [anon_sym_LT_LT] = ACTIONS(8837), + [anon_sym_LT_LT_DASH] = ACTIONS(8835), + [anon_sym_LT_LT_LT] = ACTIONS(8835), + [anon_sym_BQUOTE] = ACTIONS(8835), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8835), + [anon_sym_AMP] = ACTIONS(8837), + }, + [3362] = { + [sym__concat] = ACTIONS(8144), + [anon_sym_in] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8144), + }, + [3363] = { + [sym__concat] = ACTIONS(8148), + [anon_sym_in] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8148), + }, + [3364] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [sym_variable_name] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_RBRACE] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5527), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [3365] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [sym_variable_name] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_RBRACE] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5535), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [3366] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8839), + [sym_comment] = ACTIONS(57), + }, + [3367] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8841), + [sym_comment] = ACTIONS(57), + }, + [3368] = { + [anon_sym_RBRACE] = ACTIONS(8841), + [sym_comment] = ACTIONS(57), + }, + [3369] = { + [sym_concatenation] = STATE(3728), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3728), + [anon_sym_RBRACE] = ACTIONS(8843), + [anon_sym_EQ] = ACTIONS(8845), + [anon_sym_DASH] = ACTIONS(8845), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8847), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8845), + [anon_sym_COLON_QMARK] = ACTIONS(8845), + [anon_sym_COLON_DASH] = ACTIONS(8845), + [anon_sym_PERCENT] = ACTIONS(8845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3370] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [sym_variable_name] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_RBRACE] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5579), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [3371] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8843), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3372] = { + [sym_concatenation] = STATE(3729), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3729), + [anon_sym_RBRACE] = ACTIONS(8841), + [anon_sym_EQ] = ACTIONS(8849), + [anon_sym_DASH] = ACTIONS(8849), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8851), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8849), + [anon_sym_COLON_QMARK] = ACTIONS(8849), + [anon_sym_COLON_DASH] = ACTIONS(8849), + [anon_sym_PERCENT] = ACTIONS(8849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3373] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8841), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3374] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [sym_variable_name] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_RBRACE] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5624), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [3375] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8853), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3376] = { + [sym__simple_heredoc_body] = ACTIONS(7145), + [sym__heredoc_body_beginning] = ACTIONS(7145), + [sym_file_descriptor] = ACTIONS(7145), + [anon_sym_SEMI] = ACTIONS(7147), + [anon_sym_PIPE] = ACTIONS(7147), + [anon_sym_SEMI_SEMI] = ACTIONS(7145), + [anon_sym_RBRACE] = ACTIONS(7145), + [anon_sym_PIPE_AMP] = ACTIONS(7145), + [anon_sym_AMP_AMP] = ACTIONS(7145), + [anon_sym_PIPE_PIPE] = ACTIONS(7145), + [anon_sym_LT] = ACTIONS(7147), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_GT_GT] = ACTIONS(7145), + [anon_sym_AMP_GT] = ACTIONS(7147), + [anon_sym_AMP_GT_GT] = ACTIONS(7145), + [anon_sym_LT_AMP] = ACTIONS(7145), + [anon_sym_GT_AMP] = ACTIONS(7145), + [anon_sym_LT_LT] = ACTIONS(7147), + [anon_sym_LT_LT_DASH] = ACTIONS(7145), + [anon_sym_LT_LT_LT] = ACTIONS(7145), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(7145), + [anon_sym_AMP] = ACTIONS(7147), + }, + [3377] = { + [sym_do_group] = STATE(3731), + [sym_compound_statement] = STATE(3731), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(191), + [sym_comment] = ACTIONS(57), + }, + [3378] = { + [sym_do_group] = STATE(3731), + [sym_compound_statement] = STATE(3731), + [anon_sym_SEMI] = ACTIONS(8855), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(191), + [sym_comment] = ACTIONS(57), + }, + [3379] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(8857), + [anon_sym_AMP_AMP] = ACTIONS(553), + [anon_sym_PIPE_PIPE] = ACTIONS(553), + [anon_sym_EQ_TILDE] = ACTIONS(555), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_PLUS_EQ] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_DASH_EQ] = ACTIONS(553), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(553), + }, + [3380] = { + [sym__simple_heredoc_body] = ACTIONS(7871), + [sym__heredoc_body_beginning] = ACTIONS(7871), + [sym_file_descriptor] = ACTIONS(7871), + [anon_sym_SEMI] = ACTIONS(7873), + [anon_sym_PIPE] = ACTIONS(7873), + [anon_sym_SEMI_SEMI] = ACTIONS(7871), + [anon_sym_RBRACE] = ACTIONS(7871), + [anon_sym_PIPE_AMP] = ACTIONS(7871), + [anon_sym_AMP_AMP] = ACTIONS(7871), + [anon_sym_PIPE_PIPE] = ACTIONS(7871), + [anon_sym_LT] = ACTIONS(7873), + [anon_sym_GT] = ACTIONS(7873), + [anon_sym_GT_GT] = ACTIONS(7871), + [anon_sym_AMP_GT] = ACTIONS(7873), + [anon_sym_AMP_GT_GT] = ACTIONS(7871), + [anon_sym_LT_AMP] = ACTIONS(7871), + [anon_sym_GT_AMP] = ACTIONS(7871), + [anon_sym_LT_LT] = ACTIONS(7873), + [anon_sym_LT_LT_DASH] = ACTIONS(7871), + [anon_sym_LT_LT_LT] = ACTIONS(7871), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(7871), + [anon_sym_AMP] = ACTIONS(7873), + }, + [3381] = { + [sym__simple_heredoc_body] = ACTIONS(7998), + [sym__heredoc_body_beginning] = ACTIONS(7998), + [sym_file_descriptor] = ACTIONS(7998), + [anon_sym_SEMI] = ACTIONS(8000), + [anon_sym_PIPE] = ACTIONS(8000), + [anon_sym_SEMI_SEMI] = ACTIONS(7998), + [anon_sym_RBRACE] = ACTIONS(7998), + [anon_sym_PIPE_AMP] = ACTIONS(7998), + [anon_sym_AMP_AMP] = ACTIONS(7998), + [anon_sym_PIPE_PIPE] = ACTIONS(7998), + [anon_sym_LT] = ACTIONS(8000), + [anon_sym_GT] = ACTIONS(8000), + [anon_sym_GT_GT] = ACTIONS(7998), + [anon_sym_AMP_GT] = ACTIONS(8000), + [anon_sym_AMP_GT_GT] = ACTIONS(7998), + [anon_sym_LT_AMP] = ACTIONS(7998), + [anon_sym_GT_AMP] = ACTIONS(7998), + [anon_sym_LT_LT] = ACTIONS(8000), + [anon_sym_LT_LT_DASH] = ACTIONS(7998), + [anon_sym_LT_LT_LT] = ACTIONS(7998), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(7998), + [anon_sym_AMP] = ACTIONS(8000), + }, + [3382] = { + [anon_sym_esac] = ACTIONS(8859), + [sym_comment] = ACTIONS(57), + }, + [3383] = { + [sym__simple_heredoc_body] = ACTIONS(8008), + [sym__heredoc_body_beginning] = ACTIONS(8008), + [sym_file_descriptor] = ACTIONS(8008), + [anon_sym_SEMI] = ACTIONS(8010), + [anon_sym_PIPE] = ACTIONS(8010), + [anon_sym_SEMI_SEMI] = ACTIONS(8008), + [anon_sym_RBRACE] = ACTIONS(8008), + [anon_sym_PIPE_AMP] = ACTIONS(8008), + [anon_sym_AMP_AMP] = ACTIONS(8008), + [anon_sym_PIPE_PIPE] = ACTIONS(8008), + [anon_sym_LT] = ACTIONS(8010), + [anon_sym_GT] = ACTIONS(8010), + [anon_sym_GT_GT] = ACTIONS(8008), + [anon_sym_AMP_GT] = ACTIONS(8010), + [anon_sym_AMP_GT_GT] = ACTIONS(8008), + [anon_sym_LT_AMP] = ACTIONS(8008), + [anon_sym_GT_AMP] = ACTIONS(8008), + [anon_sym_LT_LT] = ACTIONS(8010), + [anon_sym_LT_LT_DASH] = ACTIONS(8008), + [anon_sym_LT_LT_LT] = ACTIONS(8008), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8008), + [anon_sym_AMP] = ACTIONS(8010), + }, + [3384] = { + [anon_sym_esac] = ACTIONS(8861), + [sym_comment] = ACTIONS(57), + }, + [3385] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [sym_variable_name] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_RBRACE] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7027), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7027), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3386] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [sym_variable_name] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_RBRACE] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7031), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7031), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3387] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [sym_variable_name] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_RBRACE] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7035), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7035), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3388] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8863), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3389] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8865), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3390] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [sym_variable_name] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_RBRACE] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7071), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7071), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [3391] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_RBRACE] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7027), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7027), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3392] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_RBRACE] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7031), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7031), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3393] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_RBRACE] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7035), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7035), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3394] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8867), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3395] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8869), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3396] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_RBRACE] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7071), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7071), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [3397] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_RBRACE] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_EQ_TILDE] = ACTIONS(8146), + [anon_sym_EQ_EQ] = ACTIONS(8146), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8146), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [3398] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_RBRACE] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_EQ_TILDE] = ACTIONS(8150), + [anon_sym_EQ_EQ] = ACTIONS(8150), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8150), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [3399] = { + [sym__concat] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_RBRACK] = ACTIONS(8144), + [anon_sym_EQ_TILDE] = ACTIONS(8144), + [anon_sym_EQ_EQ] = ACTIONS(8144), + [anon_sym_EQ] = ACTIONS(8146), + [anon_sym_PLUS_EQ] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_BANG_EQ] = ACTIONS(8144), + [anon_sym_PLUS] = ACTIONS(8146), + [anon_sym_DASH] = ACTIONS(8146), + [anon_sym_DASH_EQ] = ACTIONS(8144), + [anon_sym_LT_EQ] = ACTIONS(8144), + [anon_sym_GT_EQ] = ACTIONS(8144), + [anon_sym_PLUS_PLUS] = ACTIONS(8144), + [anon_sym_DASH_DASH] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(8144), + }, + [3400] = { + [sym__concat] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_RBRACK] = ACTIONS(8148), + [anon_sym_EQ_TILDE] = ACTIONS(8148), + [anon_sym_EQ_EQ] = ACTIONS(8148), + [anon_sym_EQ] = ACTIONS(8150), + [anon_sym_PLUS_EQ] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_BANG_EQ] = ACTIONS(8148), + [anon_sym_PLUS] = ACTIONS(8150), + [anon_sym_DASH] = ACTIONS(8150), + [anon_sym_DASH_EQ] = ACTIONS(8148), + [anon_sym_LT_EQ] = ACTIONS(8148), + [anon_sym_GT_EQ] = ACTIONS(8148), + [anon_sym_PLUS_PLUS] = ACTIONS(8148), + [anon_sym_DASH_DASH] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(8148), + }, + [3401] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [sym_variable_name] = ACTIONS(8144), + [ts_builtin_sym_end] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_RPAREN] = ACTIONS(8144), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8146), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [3402] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [sym_variable_name] = ACTIONS(8148), + [ts_builtin_sym_end] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_RPAREN] = ACTIONS(8148), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8150), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [3403] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [ts_builtin_sym_end] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_RPAREN] = ACTIONS(8144), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8146), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [3404] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [ts_builtin_sym_end] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_RPAREN] = ACTIONS(8148), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8150), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [3405] = { + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [sym_variable_name] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8144), + }, + [3406] = { + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [sym_variable_name] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8148), + }, + [3407] = { + [sym__concat] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8146), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym__string_content] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8146), + [anon_sym_BQUOTE] = ACTIONS(8146), + [sym_comment] = ACTIONS(343), + }, + [3408] = { + [sym__concat] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8150), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym__string_content] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8150), + [anon_sym_BQUOTE] = ACTIONS(8150), + [sym_comment] = ACTIONS(343), + }, + [3409] = { + [sym__concat] = ACTIONS(5525), + [anon_sym_RBRACE] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + }, + [3410] = { + [sym__concat] = ACTIONS(5533), + [anon_sym_RBRACE] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + }, + [3411] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8871), + [sym_comment] = ACTIONS(57), + }, + [3412] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8873), + [sym_comment] = ACTIONS(57), + }, + [3413] = { + [anon_sym_RBRACE] = ACTIONS(8873), + [sym_comment] = ACTIONS(57), + }, + [3414] = { + [sym_concatenation] = STATE(3743), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3743), + [anon_sym_RBRACE] = ACTIONS(8875), + [anon_sym_EQ] = ACTIONS(8877), + [anon_sym_DASH] = ACTIONS(8877), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8877), + [anon_sym_COLON_QMARK] = ACTIONS(8877), + [anon_sym_COLON_DASH] = ACTIONS(8877), + [anon_sym_PERCENT] = ACTIONS(8877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3415] = { + [sym__concat] = ACTIONS(5577), + [anon_sym_RBRACE] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + }, + [3416] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8875), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3417] = { + [sym_concatenation] = STATE(3744), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3744), + [anon_sym_RBRACE] = ACTIONS(8873), + [anon_sym_EQ] = ACTIONS(8881), + [anon_sym_DASH] = ACTIONS(8881), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8881), + [anon_sym_COLON_QMARK] = ACTIONS(8881), + [anon_sym_COLON_DASH] = ACTIONS(8881), + [anon_sym_PERCENT] = ACTIONS(8881), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3418] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8873), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3419] = { + [sym__concat] = ACTIONS(5622), + [anon_sym_RBRACE] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + }, + [3420] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8885), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3421] = { + [sym__concat] = ACTIONS(7025), + [anon_sym_RBRACE] = ACTIONS(7025), + [anon_sym_EQ] = ACTIONS(7027), + [anon_sym_DASH] = ACTIONS(7027), + [sym__special_characters] = ACTIONS(7027), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_POUND] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_COLON] = ACTIONS(7027), + [anon_sym_COLON_QMARK] = ACTIONS(7027), + [anon_sym_COLON_DASH] = ACTIONS(7027), + [anon_sym_PERCENT] = ACTIONS(7027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(7027), + }, + [3422] = { + [sym__concat] = ACTIONS(7029), + [anon_sym_RBRACE] = ACTIONS(7029), + [anon_sym_EQ] = ACTIONS(7031), + [anon_sym_DASH] = ACTIONS(7031), + [sym__special_characters] = ACTIONS(7031), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_POUND] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_COLON] = ACTIONS(7031), + [anon_sym_COLON_QMARK] = ACTIONS(7031), + [anon_sym_COLON_DASH] = ACTIONS(7031), + [anon_sym_PERCENT] = ACTIONS(7031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(7031), + }, + [3423] = { + [sym__concat] = ACTIONS(7033), + [anon_sym_RBRACE] = ACTIONS(7033), + [anon_sym_EQ] = ACTIONS(7035), + [anon_sym_DASH] = ACTIONS(7035), + [sym__special_characters] = ACTIONS(7035), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_POUND] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_COLON] = ACTIONS(7035), + [anon_sym_COLON_QMARK] = ACTIONS(7035), + [anon_sym_COLON_DASH] = ACTIONS(7035), + [anon_sym_PERCENT] = ACTIONS(7035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(7035), + }, + [3424] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8887), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3425] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8889), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3426] = { + [sym__concat] = ACTIONS(7069), + [anon_sym_RBRACE] = ACTIONS(7069), + [anon_sym_EQ] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(7071), + [sym__special_characters] = ACTIONS(7071), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_POUND] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_COLON] = ACTIONS(7071), + [anon_sym_COLON_QMARK] = ACTIONS(7071), + [anon_sym_COLON_DASH] = ACTIONS(7071), + [anon_sym_PERCENT] = ACTIONS(7071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(7071), + }, + [3427] = { + [sym__heredoc_body_middle] = ACTIONS(7025), + [sym__heredoc_body_end] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + }, + [3428] = { + [sym__heredoc_body_middle] = ACTIONS(7029), + [sym__heredoc_body_end] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + }, + [3429] = { + [sym__heredoc_body_middle] = ACTIONS(7033), + [sym__heredoc_body_end] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + }, + [3430] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8891), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3431] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8893), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3432] = { + [sym__heredoc_body_middle] = ACTIONS(7069), + [sym__heredoc_body_end] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + }, + [3433] = { + [sym__concat] = ACTIONS(7025), + [anon_sym_RPAREN] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7025), + }, + [3434] = { + [sym__concat] = ACTIONS(7029), + [anon_sym_RPAREN] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7029), + }, + [3435] = { + [sym__concat] = ACTIONS(7033), + [anon_sym_RPAREN] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7033), + }, + [3436] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8895), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3437] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8897), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3438] = { + [sym__concat] = ACTIONS(7069), + [anon_sym_RPAREN] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7069), + }, + [3439] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [sym_variable_name] = ACTIONS(8144), + [ts_builtin_sym_end] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_RPAREN] = ACTIONS(8144), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [3440] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [sym_variable_name] = ACTIONS(8148), + [ts_builtin_sym_end] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_RPAREN] = ACTIONS(8148), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [3441] = { + [sym__simple_heredoc_body] = ACTIONS(8899), + [sym__heredoc_body_beginning] = ACTIONS(8899), + [sym_file_descriptor] = ACTIONS(8899), + [ts_builtin_sym_end] = ACTIONS(8899), + [anon_sym_SEMI] = ACTIONS(8901), + [anon_sym_done] = ACTIONS(8899), + [anon_sym_fi] = ACTIONS(8899), + [anon_sym_elif] = ACTIONS(8899), + [anon_sym_else] = ACTIONS(8899), + [anon_sym_esac] = ACTIONS(8899), + [anon_sym_PIPE] = ACTIONS(8901), + [anon_sym_RPAREN] = ACTIONS(8899), + [anon_sym_SEMI_SEMI] = ACTIONS(8899), + [anon_sym_PIPE_AMP] = ACTIONS(8899), + [anon_sym_AMP_AMP] = ACTIONS(8899), + [anon_sym_PIPE_PIPE] = ACTIONS(8899), + [anon_sym_LT] = ACTIONS(8901), + [anon_sym_GT] = ACTIONS(8901), + [anon_sym_GT_GT] = ACTIONS(8899), + [anon_sym_AMP_GT] = ACTIONS(8901), + [anon_sym_AMP_GT_GT] = ACTIONS(8899), + [anon_sym_LT_AMP] = ACTIONS(8899), + [anon_sym_GT_AMP] = ACTIONS(8899), + [anon_sym_LT_LT] = ACTIONS(8901), + [anon_sym_LT_LT_DASH] = ACTIONS(8899), + [anon_sym_LT_LT_LT] = ACTIONS(8899), + [anon_sym_BQUOTE] = ACTIONS(8899), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8899), + [anon_sym_AMP] = ACTIONS(8901), + }, + [3442] = { + [sym__concat] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_EQ_TILDE] = ACTIONS(8144), + [anon_sym_EQ_EQ] = ACTIONS(8144), + [anon_sym_EQ] = ACTIONS(8146), + [anon_sym_PLUS_EQ] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_BANG_EQ] = ACTIONS(8144), + [anon_sym_PLUS] = ACTIONS(8146), + [anon_sym_DASH] = ACTIONS(8146), + [anon_sym_DASH_EQ] = ACTIONS(8144), + [anon_sym_LT_EQ] = ACTIONS(8144), + [anon_sym_GT_EQ] = ACTIONS(8144), + [anon_sym_PLUS_PLUS] = ACTIONS(8144), + [anon_sym_DASH_DASH] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(8144), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [3443] = { + [sym__concat] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_EQ_TILDE] = ACTIONS(8148), + [anon_sym_EQ_EQ] = ACTIONS(8148), + [anon_sym_EQ] = ACTIONS(8150), + [anon_sym_PLUS_EQ] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_BANG_EQ] = ACTIONS(8148), + [anon_sym_PLUS] = ACTIONS(8150), + [anon_sym_DASH] = ACTIONS(8150), + [anon_sym_DASH_EQ] = ACTIONS(8148), + [anon_sym_LT_EQ] = ACTIONS(8148), + [anon_sym_GT_EQ] = ACTIONS(8148), + [anon_sym_PLUS_PLUS] = ACTIONS(8148), + [anon_sym_DASH_DASH] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(8148), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [3444] = { + [sym_do_group] = STATE(3752), + [sym_compound_statement] = STATE(3752), + [anon_sym_do] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), + }, + [3445] = { + [sym__concat] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7025), + }, + [3446] = { + [sym__concat] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7029), + }, + [3447] = { + [sym__concat] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7033), + }, + [3448] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8903), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3449] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8905), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3450] = { + [sym__concat] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7069), + }, + [3451] = { + [sym__concat] = ACTIONS(8144), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_RPAREN] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_EQ_TILDE] = ACTIONS(8144), + [anon_sym_EQ_EQ] = ACTIONS(8144), + [anon_sym_EQ] = ACTIONS(8146), + [anon_sym_PLUS_EQ] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_BANG_EQ] = ACTIONS(8144), + [anon_sym_PLUS] = ACTIONS(8146), + [anon_sym_DASH] = ACTIONS(8146), + [anon_sym_DASH_EQ] = ACTIONS(8144), + [anon_sym_LT_EQ] = ACTIONS(8144), + [anon_sym_GT_EQ] = ACTIONS(8144), + [anon_sym_PLUS_PLUS] = ACTIONS(8144), + [anon_sym_DASH_DASH] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(8144), + }, + [3452] = { + [sym__concat] = ACTIONS(8148), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_RPAREN] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_EQ_TILDE] = ACTIONS(8148), + [anon_sym_EQ_EQ] = ACTIONS(8148), + [anon_sym_EQ] = ACTIONS(8150), + [anon_sym_PLUS_EQ] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_BANG_EQ] = ACTIONS(8148), + [anon_sym_PLUS] = ACTIONS(8150), + [anon_sym_DASH] = ACTIONS(8150), + [anon_sym_DASH_EQ] = ACTIONS(8148), + [anon_sym_LT_EQ] = ACTIONS(8148), + [anon_sym_GT_EQ] = ACTIONS(8148), + [anon_sym_PLUS_PLUS] = ACTIONS(8148), + [anon_sym_DASH_DASH] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(8148), + }, + [3453] = { + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [sym_variable_name] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3454] = { + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [sym_variable_name] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3455] = { + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [sym_variable_name] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3456] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8907), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3457] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8909), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3458] = { + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [sym_variable_name] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [3459] = { + [sym_file_descriptor] = ACTIONS(8204), + [anon_sym_SEMI] = ACTIONS(8206), + [anon_sym_PIPE] = ACTIONS(8206), + [anon_sym_SEMI_SEMI] = ACTIONS(8204), + [anon_sym_PIPE_AMP] = ACTIONS(8204), + [anon_sym_AMP_AMP] = ACTIONS(8204), + [anon_sym_PIPE_PIPE] = ACTIONS(8204), + [anon_sym_LT] = ACTIONS(8206), + [anon_sym_GT] = ACTIONS(8206), + [anon_sym_GT_GT] = ACTIONS(8204), + [anon_sym_AMP_GT] = ACTIONS(8206), + [anon_sym_AMP_GT_GT] = ACTIONS(8204), + [anon_sym_LT_AMP] = ACTIONS(8204), + [anon_sym_GT_AMP] = ACTIONS(8204), + [anon_sym_LT_LT] = ACTIONS(8206), + [anon_sym_LT_LT_DASH] = ACTIONS(8204), + [anon_sym_LT_LT_LT] = ACTIONS(8204), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8204), + [anon_sym_AMP] = ACTIONS(8206), + }, + [3460] = { + [sym_do_group] = STATE(3757), + [sym_compound_statement] = STATE(3757), + [anon_sym_do] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(113), + [sym_comment] = ACTIONS(57), + }, + [3461] = { + [sym_do_group] = STATE(3757), + [sym_compound_statement] = STATE(3757), + [anon_sym_SEMI] = ACTIONS(8911), + [anon_sym_do] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(113), + [sym_comment] = ACTIONS(57), + }, + [3462] = { + [sym_file_descriptor] = ACTIONS(8831), + [anon_sym_SEMI] = ACTIONS(8833), + [anon_sym_PIPE] = ACTIONS(8833), + [anon_sym_SEMI_SEMI] = ACTIONS(8831), + [anon_sym_PIPE_AMP] = ACTIONS(8831), + [anon_sym_AMP_AMP] = ACTIONS(8831), + [anon_sym_PIPE_PIPE] = ACTIONS(8831), + [anon_sym_LT] = ACTIONS(8833), + [anon_sym_GT] = ACTIONS(8833), + [anon_sym_GT_GT] = ACTIONS(8831), + [anon_sym_AMP_GT] = ACTIONS(8833), + [anon_sym_AMP_GT_GT] = ACTIONS(8831), + [anon_sym_LT_AMP] = ACTIONS(8831), + [anon_sym_GT_AMP] = ACTIONS(8831), + [anon_sym_LT_LT] = ACTIONS(8833), + [anon_sym_LT_LT_DASH] = ACTIONS(8831), + [anon_sym_LT_LT_LT] = ACTIONS(8831), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8831), + [anon_sym_AMP] = ACTIONS(8833), + }, + [3463] = { + [sym_file_descriptor] = ACTIONS(8835), + [anon_sym_SEMI] = ACTIONS(8837), + [anon_sym_PIPE] = ACTIONS(8837), + [anon_sym_SEMI_SEMI] = ACTIONS(8835), + [anon_sym_PIPE_AMP] = ACTIONS(8835), + [anon_sym_AMP_AMP] = ACTIONS(8835), + [anon_sym_PIPE_PIPE] = ACTIONS(8835), + [anon_sym_LT] = ACTIONS(8837), + [anon_sym_GT] = ACTIONS(8837), + [anon_sym_GT_GT] = ACTIONS(8835), + [anon_sym_AMP_GT] = ACTIONS(8837), + [anon_sym_AMP_GT_GT] = ACTIONS(8835), + [anon_sym_LT_AMP] = ACTIONS(8835), + [anon_sym_GT_AMP] = ACTIONS(8835), + [anon_sym_LT_LT] = ACTIONS(8837), + [anon_sym_LT_LT_DASH] = ACTIONS(8835), + [anon_sym_LT_LT_LT] = ACTIONS(8835), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8835), + [anon_sym_AMP] = ACTIONS(8837), + }, + [3464] = { + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [sym_variable_name] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8146), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [3465] = { + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [sym_variable_name] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8150), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [3466] = { + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8146), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [3467] = { + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8150), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [3468] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [sym_variable_name] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_done] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [3469] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [sym_variable_name] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_done] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [3470] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8913), + [sym_comment] = ACTIONS(57), + }, + [3471] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8915), + [sym_comment] = ACTIONS(57), + }, + [3472] = { + [anon_sym_RBRACE] = ACTIONS(8915), + [sym_comment] = ACTIONS(57), + }, + [3473] = { + [sym_concatenation] = STATE(3763), + [sym_string] = STATE(3762), + [sym_simple_expansion] = STATE(3762), + [sym_string_expansion] = STATE(3762), + [sym_expansion] = STATE(3762), + [sym_command_substitution] = STATE(3762), + [sym_process_substitution] = STATE(3762), + [anon_sym_RBRACE] = ACTIONS(8915), + [sym__special_characters] = ACTIONS(8917), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(8919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8919), + }, + [3474] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [sym_variable_name] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_done] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [3475] = { + [sym_concatenation] = STATE(3766), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3766), + [sym_regex] = ACTIONS(8921), + [anon_sym_RBRACE] = ACTIONS(8923), + [anon_sym_EQ] = ACTIONS(8925), + [anon_sym_DASH] = ACTIONS(8925), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8925), + [anon_sym_COLON_QMARK] = ACTIONS(8925), + [anon_sym_COLON_DASH] = ACTIONS(8925), + [anon_sym_PERCENT] = ACTIONS(8925), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3476] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8923), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3477] = { + [sym_concatenation] = STATE(3768), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3768), + [sym_regex] = ACTIONS(8929), + [anon_sym_RBRACE] = ACTIONS(8915), + [anon_sym_EQ] = ACTIONS(8931), + [anon_sym_DASH] = ACTIONS(8931), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8931), + [anon_sym_COLON_QMARK] = ACTIONS(8931), + [anon_sym_COLON_DASH] = ACTIONS(8931), + [anon_sym_PERCENT] = ACTIONS(8931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3478] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8915), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3479] = { + [sym_concatenation] = STATE(3770), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3770), + [anon_sym_RBRACE] = ACTIONS(8935), + [anon_sym_EQ] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8937), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8939), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8937), + [anon_sym_COLON_QMARK] = ACTIONS(8937), + [anon_sym_COLON_DASH] = ACTIONS(8937), + [anon_sym_PERCENT] = ACTIONS(8937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3480] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [sym_variable_name] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_done] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [3481] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8935), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3482] = { + [sym_concatenation] = STATE(3768), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3768), + [anon_sym_RBRACE] = ACTIONS(8915), + [anon_sym_EQ] = ACTIONS(8931), + [anon_sym_DASH] = ACTIONS(8931), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8931), + [anon_sym_COLON_QMARK] = ACTIONS(8931), + [anon_sym_COLON_DASH] = ACTIONS(8931), + [anon_sym_PERCENT] = ACTIONS(8931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3483] = { + [sym__simple_heredoc_body] = ACTIONS(4334), + [sym__heredoc_body_beginning] = ACTIONS(4334), + [sym_file_descriptor] = ACTIONS(4334), + [sym_variable_name] = ACTIONS(4334), + [anon_sym_SEMI] = ACTIONS(4336), + [anon_sym_done] = ACTIONS(4336), + [anon_sym_PIPE] = ACTIONS(4336), + [anon_sym_SEMI_SEMI] = ACTIONS(4334), + [anon_sym_PIPE_AMP] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4336), + [anon_sym_GT] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4334), + [anon_sym_AMP_GT] = ACTIONS(4336), + [anon_sym_AMP_GT_GT] = ACTIONS(4334), + [anon_sym_LT_AMP] = ACTIONS(4334), + [anon_sym_GT_AMP] = ACTIONS(4334), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_LT_LT_DASH] = ACTIONS(4334), + [anon_sym_LT_LT_LT] = ACTIONS(4334), + [sym__special_characters] = ACTIONS(4334), + [anon_sym_DQUOTE] = ACTIONS(4334), + [anon_sym_DOLLAR] = ACTIONS(4336), + [sym_raw_string] = ACTIONS(4334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4334), + [anon_sym_BQUOTE] = ACTIONS(4334), + [anon_sym_LT_LPAREN] = ACTIONS(4334), + [anon_sym_GT_LPAREN] = ACTIONS(4334), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4336), + [sym_word] = ACTIONS(4336), + [anon_sym_LF] = ACTIONS(4334), + [anon_sym_AMP] = ACTIONS(4336), + }, + [3484] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [sym_variable_name] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_done] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5527), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [3485] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [sym_variable_name] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_done] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5535), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [3486] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8941), + [sym_comment] = ACTIONS(57), + }, + [3487] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8943), + [sym_comment] = ACTIONS(57), + }, + [3488] = { + [anon_sym_RBRACE] = ACTIONS(8943), + [sym_comment] = ACTIONS(57), + }, + [3489] = { + [sym_concatenation] = STATE(3774), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3774), + [anon_sym_RBRACE] = ACTIONS(8945), + [anon_sym_EQ] = ACTIONS(8947), + [anon_sym_DASH] = ACTIONS(8947), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8949), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8947), + [anon_sym_COLON_QMARK] = ACTIONS(8947), + [anon_sym_COLON_DASH] = ACTIONS(8947), + [anon_sym_PERCENT] = ACTIONS(8947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3490] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [sym_variable_name] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_done] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5579), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [3491] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8945), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3492] = { + [sym_concatenation] = STATE(3775), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3775), + [anon_sym_RBRACE] = ACTIONS(8943), + [anon_sym_EQ] = ACTIONS(8951), + [anon_sym_DASH] = ACTIONS(8951), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8953), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8951), + [anon_sym_COLON_QMARK] = ACTIONS(8951), + [anon_sym_COLON_DASH] = ACTIONS(8951), + [anon_sym_PERCENT] = ACTIONS(8951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3493] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8943), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3494] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [sym_variable_name] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_done] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5624), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [3495] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8955), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3496] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_done] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5527), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [3497] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_done] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5535), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [3498] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8957), + [sym_comment] = ACTIONS(57), + }, + [3499] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8959), + [sym_comment] = ACTIONS(57), + }, + [3500] = { + [anon_sym_RBRACE] = ACTIONS(8959), + [sym_comment] = ACTIONS(57), + }, + [3501] = { + [sym_concatenation] = STATE(3780), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3780), + [anon_sym_RBRACE] = ACTIONS(8961), + [anon_sym_EQ] = ACTIONS(8963), + [anon_sym_DASH] = ACTIONS(8963), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8963), + [anon_sym_COLON_QMARK] = ACTIONS(8963), + [anon_sym_COLON_DASH] = ACTIONS(8963), + [anon_sym_PERCENT] = ACTIONS(8963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3502] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_done] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5579), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [3503] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8961), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3504] = { + [sym_concatenation] = STATE(3781), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3781), + [anon_sym_RBRACE] = ACTIONS(8959), + [anon_sym_EQ] = ACTIONS(8967), + [anon_sym_DASH] = ACTIONS(8967), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8969), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8967), + [anon_sym_COLON_QMARK] = ACTIONS(8967), + [anon_sym_COLON_DASH] = ACTIONS(8967), + [anon_sym_PERCENT] = ACTIONS(8967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3505] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8959), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3506] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_done] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5624), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [3507] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8971), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3508] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_done] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_EQ_TILDE] = ACTIONS(7027), + [anon_sym_EQ_EQ] = ACTIONS(7027), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3509] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_done] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_EQ_TILDE] = ACTIONS(7031), + [anon_sym_EQ_EQ] = ACTIONS(7031), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3510] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_done] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_EQ_TILDE] = ACTIONS(7035), + [anon_sym_EQ_EQ] = ACTIONS(7035), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3511] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8973), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3512] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8975), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3513] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_done] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_EQ_TILDE] = ACTIONS(7071), + [anon_sym_EQ_EQ] = ACTIONS(7071), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [3514] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_done] = ACTIONS(4001), + [anon_sym_fi] = ACTIONS(4001), + [anon_sym_elif] = ACTIONS(4001), + [anon_sym_else] = ACTIONS(4001), + [anon_sym_esac] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [3515] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_done] = ACTIONS(4015), + [anon_sym_fi] = ACTIONS(4015), + [anon_sym_elif] = ACTIONS(4015), + [anon_sym_else] = ACTIONS(4015), + [anon_sym_esac] = ACTIONS(4015), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [3516] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8977), + [sym_comment] = ACTIONS(57), + }, + [3517] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(8979), + [sym_comment] = ACTIONS(57), + }, + [3518] = { + [anon_sym_RBRACE] = ACTIONS(8979), + [sym_comment] = ACTIONS(57), + }, + [3519] = { + [sym_concatenation] = STATE(3789), + [sym_string] = STATE(3788), + [sym_simple_expansion] = STATE(3788), + [sym_string_expansion] = STATE(3788), + [sym_expansion] = STATE(3788), + [sym_command_substitution] = STATE(3788), + [sym_process_substitution] = STATE(3788), + [anon_sym_RBRACE] = ACTIONS(8979), + [sym__special_characters] = ACTIONS(8981), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(8983), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8983), + }, + [3520] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_done] = ACTIONS(4051), + [anon_sym_fi] = ACTIONS(4051), + [anon_sym_elif] = ACTIONS(4051), + [anon_sym_else] = ACTIONS(4051), + [anon_sym_esac] = ACTIONS(4051), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [3521] = { + [sym_concatenation] = STATE(3792), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3792), + [sym_regex] = ACTIONS(8985), + [anon_sym_RBRACE] = ACTIONS(8987), + [anon_sym_EQ] = ACTIONS(8989), + [anon_sym_DASH] = ACTIONS(8989), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8991), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8989), + [anon_sym_COLON_QMARK] = ACTIONS(8989), + [anon_sym_COLON_DASH] = ACTIONS(8989), + [anon_sym_PERCENT] = ACTIONS(8989), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3522] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8987), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3523] = { + [sym_concatenation] = STATE(3794), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3794), + [sym_regex] = ACTIONS(8993), + [anon_sym_RBRACE] = ACTIONS(8979), + [anon_sym_EQ] = ACTIONS(8995), + [anon_sym_DASH] = ACTIONS(8995), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8997), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8995), + [anon_sym_COLON_QMARK] = ACTIONS(8995), + [anon_sym_COLON_DASH] = ACTIONS(8995), + [anon_sym_PERCENT] = ACTIONS(8995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3524] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8979), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3525] = { + [sym_concatenation] = STATE(3796), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3796), + [anon_sym_RBRACE] = ACTIONS(8999), + [anon_sym_EQ] = ACTIONS(9001), + [anon_sym_DASH] = ACTIONS(9001), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9001), + [anon_sym_COLON_QMARK] = ACTIONS(9001), + [anon_sym_COLON_DASH] = ACTIONS(9001), + [anon_sym_PERCENT] = ACTIONS(9001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3526] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_done] = ACTIONS(4107), + [anon_sym_fi] = ACTIONS(4107), + [anon_sym_elif] = ACTIONS(4107), + [anon_sym_else] = ACTIONS(4107), + [anon_sym_esac] = ACTIONS(4107), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [3527] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(8999), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3528] = { + [sym_concatenation] = STATE(3794), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3794), + [anon_sym_RBRACE] = ACTIONS(8979), + [anon_sym_EQ] = ACTIONS(8995), + [anon_sym_DASH] = ACTIONS(8995), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(8997), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(8995), + [anon_sym_COLON_QMARK] = ACTIONS(8995), + [anon_sym_COLON_DASH] = ACTIONS(8995), + [anon_sym_PERCENT] = ACTIONS(8995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3529] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [sym_variable_name] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_fi] = ACTIONS(4003), + [anon_sym_elif] = ACTIONS(4003), + [anon_sym_else] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [3530] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [sym_variable_name] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_fi] = ACTIONS(4017), + [anon_sym_elif] = ACTIONS(4017), + [anon_sym_else] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [3531] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9005), + [sym_comment] = ACTIONS(57), + }, + [3532] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9007), + [sym_comment] = ACTIONS(57), + }, + [3533] = { + [anon_sym_RBRACE] = ACTIONS(9007), + [sym_comment] = ACTIONS(57), + }, + [3534] = { + [sym_concatenation] = STATE(3801), + [sym_string] = STATE(3800), + [sym_simple_expansion] = STATE(3800), + [sym_string_expansion] = STATE(3800), + [sym_expansion] = STATE(3800), + [sym_command_substitution] = STATE(3800), + [sym_process_substitution] = STATE(3800), + [anon_sym_RBRACE] = ACTIONS(9007), + [sym__special_characters] = ACTIONS(9009), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(9011), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9011), + }, + [3535] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [sym_variable_name] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_fi] = ACTIONS(4053), + [anon_sym_elif] = ACTIONS(4053), + [anon_sym_else] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [3536] = { + [sym_concatenation] = STATE(3804), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3804), + [sym_regex] = ACTIONS(9013), + [anon_sym_RBRACE] = ACTIONS(9015), + [anon_sym_EQ] = ACTIONS(9017), + [anon_sym_DASH] = ACTIONS(9017), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9019), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9017), + [anon_sym_COLON_QMARK] = ACTIONS(9017), + [anon_sym_COLON_DASH] = ACTIONS(9017), + [anon_sym_PERCENT] = ACTIONS(9017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3537] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9015), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3538] = { + [sym_concatenation] = STATE(3806), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3806), + [sym_regex] = ACTIONS(9021), + [anon_sym_RBRACE] = ACTIONS(9007), + [anon_sym_EQ] = ACTIONS(9023), + [anon_sym_DASH] = ACTIONS(9023), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9023), + [anon_sym_COLON_QMARK] = ACTIONS(9023), + [anon_sym_COLON_DASH] = ACTIONS(9023), + [anon_sym_PERCENT] = ACTIONS(9023), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3539] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9007), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3540] = { + [sym_concatenation] = STATE(3808), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3808), + [anon_sym_RBRACE] = ACTIONS(9027), + [anon_sym_EQ] = ACTIONS(9029), + [anon_sym_DASH] = ACTIONS(9029), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9029), + [anon_sym_COLON_QMARK] = ACTIONS(9029), + [anon_sym_COLON_DASH] = ACTIONS(9029), + [anon_sym_PERCENT] = ACTIONS(9029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3541] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [sym_variable_name] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_fi] = ACTIONS(4109), + [anon_sym_elif] = ACTIONS(4109), + [anon_sym_else] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [3542] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9027), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3543] = { + [sym_concatenation] = STATE(3806), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3806), + [anon_sym_RBRACE] = ACTIONS(9007), + [anon_sym_EQ] = ACTIONS(9023), + [anon_sym_DASH] = ACTIONS(9023), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9023), + [anon_sym_COLON_QMARK] = ACTIONS(9023), + [anon_sym_COLON_DASH] = ACTIONS(9023), + [anon_sym_PERCENT] = ACTIONS(9023), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3544] = { + [sym__simple_heredoc_body] = ACTIONS(4334), + [sym__heredoc_body_beginning] = ACTIONS(4334), + [sym_file_descriptor] = ACTIONS(4334), + [sym_variable_name] = ACTIONS(4334), + [anon_sym_SEMI] = ACTIONS(4336), + [anon_sym_fi] = ACTIONS(4336), + [anon_sym_PIPE] = ACTIONS(4336), + [anon_sym_SEMI_SEMI] = ACTIONS(4334), + [anon_sym_PIPE_AMP] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4336), + [anon_sym_GT] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4334), + [anon_sym_AMP_GT] = ACTIONS(4336), + [anon_sym_AMP_GT_GT] = ACTIONS(4334), + [anon_sym_LT_AMP] = ACTIONS(4334), + [anon_sym_GT_AMP] = ACTIONS(4334), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_LT_LT_DASH] = ACTIONS(4334), + [anon_sym_LT_LT_LT] = ACTIONS(4334), + [sym__special_characters] = ACTIONS(4334), + [anon_sym_DQUOTE] = ACTIONS(4334), + [anon_sym_DOLLAR] = ACTIONS(4336), + [sym_raw_string] = ACTIONS(4334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4334), + [anon_sym_BQUOTE] = ACTIONS(4334), + [anon_sym_LT_LPAREN] = ACTIONS(4334), + [anon_sym_GT_LPAREN] = ACTIONS(4334), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4336), + [anon_sym_LF] = ACTIONS(4334), + [anon_sym_AMP] = ACTIONS(4336), + }, + [3545] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_fi] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3546] = { + [aux_sym_concatenation_repeat1] = STATE(3546), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(9033), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_fi] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3547] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [sym_variable_name] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_fi] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [3548] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(9036), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [3549] = { + [sym_concatenation] = STATE(3813), + [sym_string] = STATE(3812), + [sym_simple_expansion] = STATE(3812), + [sym_string_expansion] = STATE(3812), + [sym_expansion] = STATE(3812), + [sym_command_substitution] = STATE(3812), + [sym_process_substitution] = STATE(3812), + [anon_sym_RBRACE] = ACTIONS(9038), + [sym__special_characters] = ACTIONS(9040), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(9042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9042), + }, + [3550] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(9044), + [sym_comment] = ACTIONS(57), + }, + [3551] = { + [sym_concatenation] = STATE(3817), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3817), + [anon_sym_RBRACE] = ACTIONS(9046), + [anon_sym_EQ] = ACTIONS(9048), + [anon_sym_DASH] = ACTIONS(9048), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(9052), + [anon_sym_COLON] = ACTIONS(9048), + [anon_sym_COLON_QMARK] = ACTIONS(9048), + [anon_sym_COLON_DASH] = ACTIONS(9048), + [anon_sym_PERCENT] = ACTIONS(9048), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3552] = { + [sym_concatenation] = STATE(3819), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3819), + [anon_sym_RBRACE] = ACTIONS(9038), + [anon_sym_EQ] = ACTIONS(9054), + [anon_sym_DASH] = ACTIONS(9054), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9056), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(9058), + [anon_sym_COLON] = ACTIONS(9054), + [anon_sym_COLON_QMARK] = ACTIONS(9054), + [anon_sym_COLON_DASH] = ACTIONS(9054), + [anon_sym_PERCENT] = ACTIONS(9054), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3553] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [sym_variable_name] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_fi] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [3554] = { + [sym_concatenation] = STATE(3822), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3822), + [sym_regex] = ACTIONS(9060), + [anon_sym_RBRACE] = ACTIONS(9062), + [anon_sym_EQ] = ACTIONS(9064), + [anon_sym_DASH] = ACTIONS(9064), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9064), + [anon_sym_COLON_QMARK] = ACTIONS(9064), + [anon_sym_COLON_DASH] = ACTIONS(9064), + [anon_sym_PERCENT] = ACTIONS(9064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3555] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9062), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3556] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [sym_variable_name] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_fi] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [3557] = { + [sym_concatenation] = STATE(3819), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3819), + [sym_regex] = ACTIONS(9068), + [anon_sym_RBRACE] = ACTIONS(9038), + [anon_sym_EQ] = ACTIONS(9054), + [anon_sym_DASH] = ACTIONS(9054), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9056), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9054), + [anon_sym_COLON_QMARK] = ACTIONS(9054), + [anon_sym_COLON_DASH] = ACTIONS(9054), + [anon_sym_PERCENT] = ACTIONS(9054), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3558] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9038), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3559] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [sym_variable_name] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_fi] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [3560] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [sym_variable_name] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_fi] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [3561] = { + [sym__simple_heredoc_body] = ACTIONS(2646), + [sym__heredoc_body_beginning] = ACTIONS(2646), + [sym_file_descriptor] = ACTIONS(2646), + [sym_variable_name] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_fi] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_SEMI_SEMI] = ACTIONS(2646), + [anon_sym_PIPE_AMP] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_PIPE_PIPE] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_GT] = ACTIONS(2648), + [anon_sym_GT_GT] = ACTIONS(2646), + [anon_sym_AMP_GT] = ACTIONS(2648), + [anon_sym_AMP_GT_GT] = ACTIONS(2646), + [anon_sym_LT_AMP] = ACTIONS(2646), + [anon_sym_GT_AMP] = ACTIONS(2646), + [anon_sym_LT_LT] = ACTIONS(2648), + [anon_sym_LT_LT_DASH] = ACTIONS(2646), + [anon_sym_LT_LT_LT] = ACTIONS(2646), + [sym__special_characters] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2648), + [sym_raw_string] = ACTIONS(2646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2646), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2646), + [anon_sym_BQUOTE] = ACTIONS(2646), + [anon_sym_LT_LPAREN] = ACTIONS(2646), + [anon_sym_GT_LPAREN] = ACTIONS(2646), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2648), + [sym_word] = ACTIONS(2648), + [anon_sym_LF] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2648), + }, + [3562] = { + [sym_concatenation] = STATE(1243), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1243), + [anon_sym_RPAREN] = ACTIONS(9070), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [3563] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [sym_variable_name] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_fi] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4003), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [3564] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [sym_variable_name] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_fi] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4017), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [3565] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9072), + [sym_comment] = ACTIONS(57), + }, + [3566] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9074), + [sym_comment] = ACTIONS(57), + }, + [3567] = { + [anon_sym_RBRACE] = ACTIONS(9074), + [sym_comment] = ACTIONS(57), + }, + [3568] = { + [sym_concatenation] = STATE(3829), + [sym_string] = STATE(3828), + [sym_simple_expansion] = STATE(3828), + [sym_string_expansion] = STATE(3828), + [sym_expansion] = STATE(3828), + [sym_command_substitution] = STATE(3828), + [sym_process_substitution] = STATE(3828), + [anon_sym_RBRACE] = ACTIONS(9074), + [sym__special_characters] = ACTIONS(9076), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(9078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9078), + }, + [3569] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [sym_variable_name] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_fi] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4053), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [3570] = { + [sym_concatenation] = STATE(3832), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3832), + [sym_regex] = ACTIONS(9080), + [anon_sym_RBRACE] = ACTIONS(9082), + [anon_sym_EQ] = ACTIONS(9084), + [anon_sym_DASH] = ACTIONS(9084), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9084), + [anon_sym_COLON_QMARK] = ACTIONS(9084), + [anon_sym_COLON_DASH] = ACTIONS(9084), + [anon_sym_PERCENT] = ACTIONS(9084), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3571] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9082), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3572] = { + [sym_concatenation] = STATE(3834), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3834), + [sym_regex] = ACTIONS(9088), + [anon_sym_RBRACE] = ACTIONS(9074), + [anon_sym_EQ] = ACTIONS(9090), + [anon_sym_DASH] = ACTIONS(9090), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9092), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9090), + [anon_sym_COLON_QMARK] = ACTIONS(9090), + [anon_sym_COLON_DASH] = ACTIONS(9090), + [anon_sym_PERCENT] = ACTIONS(9090), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3573] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9074), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3574] = { + [sym_concatenation] = STATE(3836), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3836), + [anon_sym_RBRACE] = ACTIONS(9094), + [anon_sym_EQ] = ACTIONS(9096), + [anon_sym_DASH] = ACTIONS(9096), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9096), + [anon_sym_COLON_QMARK] = ACTIONS(9096), + [anon_sym_COLON_DASH] = ACTIONS(9096), + [anon_sym_PERCENT] = ACTIONS(9096), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3575] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [sym_variable_name] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_fi] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4109), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [3576] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9094), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3577] = { + [sym_concatenation] = STATE(3834), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3834), + [anon_sym_RBRACE] = ACTIONS(9074), + [anon_sym_EQ] = ACTIONS(9090), + [anon_sym_DASH] = ACTIONS(9090), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9092), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9090), + [anon_sym_COLON_QMARK] = ACTIONS(9090), + [anon_sym_COLON_DASH] = ACTIONS(9090), + [anon_sym_PERCENT] = ACTIONS(9090), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3578] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_fi] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4003), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [3579] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_fi] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4017), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [3580] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9100), + [sym_comment] = ACTIONS(57), + }, + [3581] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9102), + [sym_comment] = ACTIONS(57), + }, + [3582] = { + [anon_sym_RBRACE] = ACTIONS(9102), + [sym_comment] = ACTIONS(57), + }, + [3583] = { + [sym_concatenation] = STATE(3841), + [sym_string] = STATE(3840), + [sym_simple_expansion] = STATE(3840), + [sym_string_expansion] = STATE(3840), + [sym_expansion] = STATE(3840), + [sym_command_substitution] = STATE(3840), + [sym_process_substitution] = STATE(3840), + [anon_sym_RBRACE] = ACTIONS(9102), + [sym__special_characters] = ACTIONS(9104), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(9106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9106), + }, + [3584] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_fi] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4053), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [3585] = { + [sym_concatenation] = STATE(3844), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3844), + [sym_regex] = ACTIONS(9108), + [anon_sym_RBRACE] = ACTIONS(9110), + [anon_sym_EQ] = ACTIONS(9112), + [anon_sym_DASH] = ACTIONS(9112), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9114), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9112), + [anon_sym_COLON_QMARK] = ACTIONS(9112), + [anon_sym_COLON_DASH] = ACTIONS(9112), + [anon_sym_PERCENT] = ACTIONS(9112), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3586] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9110), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3587] = { + [sym_concatenation] = STATE(3846), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3846), + [sym_regex] = ACTIONS(9116), + [anon_sym_RBRACE] = ACTIONS(9102), + [anon_sym_EQ] = ACTIONS(9118), + [anon_sym_DASH] = ACTIONS(9118), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9118), + [anon_sym_COLON_QMARK] = ACTIONS(9118), + [anon_sym_COLON_DASH] = ACTIONS(9118), + [anon_sym_PERCENT] = ACTIONS(9118), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3588] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9102), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3589] = { + [sym_concatenation] = STATE(3848), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3848), + [anon_sym_RBRACE] = ACTIONS(9122), + [anon_sym_EQ] = ACTIONS(9124), + [anon_sym_DASH] = ACTIONS(9124), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9124), + [anon_sym_COLON_QMARK] = ACTIONS(9124), + [anon_sym_COLON_DASH] = ACTIONS(9124), + [anon_sym_PERCENT] = ACTIONS(9124), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3590] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_fi] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4109), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [3591] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9122), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3592] = { + [sym_concatenation] = STATE(3846), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3846), + [anon_sym_RBRACE] = ACTIONS(9102), + [anon_sym_EQ] = ACTIONS(9118), + [anon_sym_DASH] = ACTIONS(9118), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9118), + [anon_sym_COLON_QMARK] = ACTIONS(9118), + [anon_sym_COLON_DASH] = ACTIONS(9118), + [anon_sym_PERCENT] = ACTIONS(9118), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3593] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_fi] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_EQ_TILDE] = ACTIONS(5527), + [anon_sym_EQ_EQ] = ACTIONS(5527), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [3594] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_fi] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_EQ_TILDE] = ACTIONS(5535), + [anon_sym_EQ_EQ] = ACTIONS(5535), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [3595] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9128), + [sym_comment] = ACTIONS(57), + }, + [3596] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9130), + [sym_comment] = ACTIONS(57), + }, + [3597] = { + [anon_sym_RBRACE] = ACTIONS(9130), + [sym_comment] = ACTIONS(57), + }, + [3598] = { + [sym_concatenation] = STATE(3852), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3852), + [anon_sym_RBRACE] = ACTIONS(9132), + [anon_sym_EQ] = ACTIONS(9134), + [anon_sym_DASH] = ACTIONS(9134), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9136), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9134), + [anon_sym_COLON_QMARK] = ACTIONS(9134), + [anon_sym_COLON_DASH] = ACTIONS(9134), + [anon_sym_PERCENT] = ACTIONS(9134), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3599] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_fi] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_EQ_TILDE] = ACTIONS(5579), + [anon_sym_EQ_EQ] = ACTIONS(5579), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [3600] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9132), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3601] = { + [sym_concatenation] = STATE(3853), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3853), + [anon_sym_RBRACE] = ACTIONS(9130), + [anon_sym_EQ] = ACTIONS(9138), + [anon_sym_DASH] = ACTIONS(9138), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9140), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9138), + [anon_sym_COLON_QMARK] = ACTIONS(9138), + [anon_sym_COLON_DASH] = ACTIONS(9138), + [anon_sym_PERCENT] = ACTIONS(9138), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3602] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9130), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3603] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_fi] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_EQ_TILDE] = ACTIONS(5624), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [3604] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9142), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3605] = { + [aux_sym_concatenation_repeat1] = STATE(3605), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(8377), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_fi] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3606] = { + [sym__simple_heredoc_body] = ACTIONS(4334), + [sym__heredoc_body_beginning] = ACTIONS(4334), + [sym_file_descriptor] = ACTIONS(4334), + [sym_variable_name] = ACTIONS(4334), + [anon_sym_SEMI] = ACTIONS(4336), + [anon_sym_fi] = ACTIONS(4336), + [anon_sym_elif] = ACTIONS(4336), + [anon_sym_else] = ACTIONS(4336), + [anon_sym_PIPE] = ACTIONS(4336), + [anon_sym_SEMI_SEMI] = ACTIONS(4334), + [anon_sym_PIPE_AMP] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4336), + [anon_sym_GT] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4334), + [anon_sym_AMP_GT] = ACTIONS(4336), + [anon_sym_AMP_GT_GT] = ACTIONS(4334), + [anon_sym_LT_AMP] = ACTIONS(4334), + [anon_sym_GT_AMP] = ACTIONS(4334), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_LT_LT_DASH] = ACTIONS(4334), + [anon_sym_LT_LT_LT] = ACTIONS(4334), + [sym__special_characters] = ACTIONS(4334), + [anon_sym_DQUOTE] = ACTIONS(4334), + [anon_sym_DOLLAR] = ACTIONS(4336), + [sym_raw_string] = ACTIONS(4334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4334), + [anon_sym_BQUOTE] = ACTIONS(4334), + [anon_sym_LT_LPAREN] = ACTIONS(4334), + [anon_sym_GT_LPAREN] = ACTIONS(4334), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4336), + [sym_word] = ACTIONS(4336), + [anon_sym_LF] = ACTIONS(4334), + [anon_sym_AMP] = ACTIONS(4336), + }, + [3607] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [sym_variable_name] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_fi] = ACTIONS(5527), + [anon_sym_elif] = ACTIONS(5527), + [anon_sym_else] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5527), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [3608] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [sym_variable_name] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_fi] = ACTIONS(5535), + [anon_sym_elif] = ACTIONS(5535), + [anon_sym_else] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5535), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [3609] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9144), + [sym_comment] = ACTIONS(57), + }, + [3610] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9146), + [sym_comment] = ACTIONS(57), + }, + [3611] = { + [anon_sym_RBRACE] = ACTIONS(9146), + [sym_comment] = ACTIONS(57), + }, + [3612] = { + [sym_concatenation] = STATE(3858), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3858), + [anon_sym_RBRACE] = ACTIONS(9148), + [anon_sym_EQ] = ACTIONS(9150), + [anon_sym_DASH] = ACTIONS(9150), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9150), + [anon_sym_COLON_QMARK] = ACTIONS(9150), + [anon_sym_COLON_DASH] = ACTIONS(9150), + [anon_sym_PERCENT] = ACTIONS(9150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3613] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [sym_variable_name] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_fi] = ACTIONS(5579), + [anon_sym_elif] = ACTIONS(5579), + [anon_sym_else] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5579), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [3614] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9148), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3615] = { + [sym_concatenation] = STATE(3859), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3859), + [anon_sym_RBRACE] = ACTIONS(9146), + [anon_sym_EQ] = ACTIONS(9154), + [anon_sym_DASH] = ACTIONS(9154), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9154), + [anon_sym_COLON_QMARK] = ACTIONS(9154), + [anon_sym_COLON_DASH] = ACTIONS(9154), + [anon_sym_PERCENT] = ACTIONS(9154), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3616] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9146), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3617] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [sym_variable_name] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_fi] = ACTIONS(5624), + [anon_sym_elif] = ACTIONS(5624), + [anon_sym_else] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5624), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [3618] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9158), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3619] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_fi] = ACTIONS(5527), + [anon_sym_elif] = ACTIONS(5527), + [anon_sym_else] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5527), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [3620] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_fi] = ACTIONS(5535), + [anon_sym_elif] = ACTIONS(5535), + [anon_sym_else] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5535), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [3621] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9160), + [sym_comment] = ACTIONS(57), + }, + [3622] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9162), + [sym_comment] = ACTIONS(57), + }, + [3623] = { + [anon_sym_RBRACE] = ACTIONS(9162), + [sym_comment] = ACTIONS(57), + }, + [3624] = { + [sym_concatenation] = STATE(3864), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3864), + [anon_sym_RBRACE] = ACTIONS(9164), + [anon_sym_EQ] = ACTIONS(9166), + [anon_sym_DASH] = ACTIONS(9166), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9166), + [anon_sym_COLON_QMARK] = ACTIONS(9166), + [anon_sym_COLON_DASH] = ACTIONS(9166), + [anon_sym_PERCENT] = ACTIONS(9166), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3625] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_fi] = ACTIONS(5579), + [anon_sym_elif] = ACTIONS(5579), + [anon_sym_else] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5579), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [3626] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9164), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3627] = { + [sym_concatenation] = STATE(3865), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3865), + [anon_sym_RBRACE] = ACTIONS(9162), + [anon_sym_EQ] = ACTIONS(9170), + [anon_sym_DASH] = ACTIONS(9170), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9170), + [anon_sym_COLON_QMARK] = ACTIONS(9170), + [anon_sym_COLON_DASH] = ACTIONS(9170), + [anon_sym_PERCENT] = ACTIONS(9170), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3628] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9162), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3629] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_fi] = ACTIONS(5624), + [anon_sym_elif] = ACTIONS(5624), + [anon_sym_else] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5624), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [3630] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9174), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3631] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_fi] = ACTIONS(7027), + [anon_sym_elif] = ACTIONS(7027), + [anon_sym_else] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_EQ_TILDE] = ACTIONS(7027), + [anon_sym_EQ_EQ] = ACTIONS(7027), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3632] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_fi] = ACTIONS(7031), + [anon_sym_elif] = ACTIONS(7031), + [anon_sym_else] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_EQ_TILDE] = ACTIONS(7031), + [anon_sym_EQ_EQ] = ACTIONS(7031), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3633] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_fi] = ACTIONS(7035), + [anon_sym_elif] = ACTIONS(7035), + [anon_sym_else] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_EQ_TILDE] = ACTIONS(7035), + [anon_sym_EQ_EQ] = ACTIONS(7035), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3634] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9176), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3635] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9178), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3636] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_fi] = ACTIONS(7071), + [anon_sym_elif] = ACTIONS(7071), + [anon_sym_else] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_EQ_TILDE] = ACTIONS(7071), + [anon_sym_EQ_EQ] = ACTIONS(7071), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [3637] = { + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_esac] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [3638] = { + [sym_concatenation] = STATE(3870), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(3870), + [anon_sym_RPAREN] = ACTIONS(9180), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [3639] = { + [aux_sym_concatenation_repeat1] = STATE(3872), + [sym__simple_heredoc_body] = ACTIONS(1393), + [sym__heredoc_body_beginning] = ACTIONS(1393), + [sym_file_descriptor] = ACTIONS(1393), + [sym__concat] = ACTIONS(9182), + [sym_variable_name] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_esac] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_SEMI_SEMI] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_AMP_GT] = ACTIONS(1397), + [anon_sym_AMP_GT_GT] = ACTIONS(1393), + [anon_sym_LT_AMP] = ACTIONS(1393), + [anon_sym_GT_AMP] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_LT_LT_DASH] = ACTIONS(1393), + [anon_sym_LT_LT_LT] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1397), + [sym_raw_string] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1393), + [anon_sym_GT_LPAREN] = ACTIONS(1393), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1397), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1397), + }, + [3640] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(3875), + [anon_sym_DQUOTE] = ACTIONS(9184), + [anon_sym_DOLLAR] = ACTIONS(9186), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [3641] = { + [sym_string] = STATE(3877), + [anon_sym_DASH] = ACTIONS(9188), + [anon_sym_DQUOTE] = ACTIONS(8673), + [anon_sym_DOLLAR] = ACTIONS(9188), + [sym_raw_string] = ACTIONS(9190), + [anon_sym_POUND] = ACTIONS(9188), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(9192), + [anon_sym_STAR] = ACTIONS(9194), + [anon_sym_AT] = ACTIONS(9194), + [anon_sym_QMARK] = ACTIONS(9194), + [anon_sym_0] = ACTIONS(9192), + [anon_sym__] = ACTIONS(9192), + }, + [3642] = { + [aux_sym_concatenation_repeat1] = STATE(3872), + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym__concat] = ACTIONS(9182), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_esac] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [3643] = { + [sym_subscript] = STATE(3882), + [sym_variable_name] = ACTIONS(9196), + [anon_sym_BANG] = ACTIONS(9198), + [anon_sym_DASH] = ACTIONS(9200), + [anon_sym_DOLLAR] = ACTIONS(9200), + [anon_sym_POUND] = ACTIONS(9198), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(9202), + [anon_sym_STAR] = ACTIONS(9204), + [anon_sym_AT] = ACTIONS(9204), + [anon_sym_QMARK] = ACTIONS(9204), + [anon_sym_0] = ACTIONS(9202), + [anon_sym__] = ACTIONS(9202), + }, + [3644] = { + [sym__statements] = STATE(3883), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [3645] = { + [sym__statements] = STATE(3884), + [sym_redirected_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_c_style_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_compound_statement] = STATE(211), + [sym_subshell] = STATE(211), + [sym_pipeline] = STATE(211), + [sym_list] = STATE(211), + [sym_negated_command] = STATE(211), + [sym_test_command] = STATE(211), + [sym_declaration_command] = STATE(211), + [sym_unset_command] = STATE(211), + [sym_command] = STATE(211), + [sym_command_name] = STATE(212), + [sym_variable_assignment] = STATE(213), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(216), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_command_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(369), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(371), + [anon_sym_typeset] = ACTIONS(371), + [anon_sym_export] = ACTIONS(371), + [anon_sym_readonly] = ACTIONS(371), + [anon_sym_local] = ACTIONS(371), + [anon_sym_unset] = ACTIONS(373), + [anon_sym_unsetenv] = ACTIONS(373), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [3646] = { + [sym__statements] = STATE(3885), + [sym_redirected_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_c_style_for_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_compound_statement] = STATE(101), + [sym_subshell] = STATE(101), + [sym_pipeline] = STATE(101), + [sym_list] = STATE(101), + [sym_negated_command] = STATE(101), + [sym_test_command] = STATE(101), + [sym_declaration_command] = STATE(101), + [sym_unset_command] = STATE(101), + [sym_command] = STATE(101), + [sym_command_name] = STATE(102), + [sym_variable_assignment] = STATE(103), + [sym_subscript] = STATE(104), + [sym_file_redirect] = STATE(106), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym__statements_repeat1] = STATE(105), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(165), + [anon_sym_typeset] = ACTIONS(165), + [anon_sym_export] = ACTIONS(165), + [anon_sym_readonly] = ACTIONS(165), + [anon_sym_local] = ACTIONS(165), + [anon_sym_unset] = ACTIONS(167), + [anon_sym_unsetenv] = ACTIONS(167), + [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(169), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(171), + [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(173), + }, + [3647] = { + [sym_concatenation] = STATE(3886), + [sym_string] = STATE(3889), + [sym_array] = STATE(3886), + [sym_simple_expansion] = STATE(3889), + [sym_string_expansion] = STATE(3889), + [sym_expansion] = STATE(3889), + [sym_command_substitution] = STATE(3889), + [sym_process_substitution] = STATE(3889), + [sym__empty_value] = ACTIONS(9206), + [anon_sym_LPAREN] = ACTIONS(9208), + [sym__special_characters] = ACTIONS(9210), + [anon_sym_DQUOTE] = ACTIONS(7891), + [anon_sym_DOLLAR] = ACTIONS(7893), + [sym_raw_string] = ACTIONS(9212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7899), + [anon_sym_BQUOTE] = ACTIONS(7901), + [anon_sym_LT_LPAREN] = ACTIONS(7903), + [anon_sym_GT_LPAREN] = ACTIONS(7903), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9212), + }, + [3648] = { + [sym_string] = STATE(3890), + [sym_simple_expansion] = STATE(3890), + [sym_string_expansion] = STATE(3890), + [sym_expansion] = STATE(3890), + [sym_command_substitution] = STATE(3890), + [sym_process_substitution] = STATE(3890), + [sym__special_characters] = ACTIONS(9214), + [anon_sym_DQUOTE] = ACTIONS(7891), + [anon_sym_DOLLAR] = ACTIONS(7893), + [sym_raw_string] = ACTIONS(9214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7899), + [anon_sym_BQUOTE] = ACTIONS(7901), + [anon_sym_LT_LPAREN] = ACTIONS(7903), + [anon_sym_GT_LPAREN] = ACTIONS(7903), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9214), + }, + [3649] = { + [aux_sym_concatenation_repeat1] = STATE(3891), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(8689), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_esac] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1045), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [3650] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [sym_variable_name] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_esac] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1049), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [3651] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(9216), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [3652] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(9216), + [anon_sym_DOLLAR] = ACTIONS(9218), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [3653] = { + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [sym_variable_name] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_esac] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1083), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [3654] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = 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), + }, + [3655] = { + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [sym_variable_name] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_esac] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1091), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + }, + [3656] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(9220), + [sym_comment] = ACTIONS(57), + }, + [3657] = { + [sym_subscript] = STATE(3897), + [sym_variable_name] = ACTIONS(9222), + [anon_sym_DASH] = ACTIONS(9224), + [anon_sym_DOLLAR] = ACTIONS(9224), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(9226), + [anon_sym_STAR] = ACTIONS(9228), + [anon_sym_AT] = ACTIONS(9228), + [anon_sym_QMARK] = ACTIONS(9228), + [anon_sym_0] = ACTIONS(9226), + [anon_sym__] = ACTIONS(9226), + }, + [3658] = { + [sym_concatenation] = STATE(3900), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3900), + [anon_sym_RBRACE] = ACTIONS(9230), + [anon_sym_EQ] = ACTIONS(9232), + [anon_sym_DASH] = ACTIONS(9232), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(9236), + [anon_sym_COLON] = ACTIONS(9232), + [anon_sym_COLON_QMARK] = ACTIONS(9232), + [anon_sym_COLON_DASH] = ACTIONS(9232), + [anon_sym_PERCENT] = ACTIONS(9232), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3659] = { + [sym_concatenation] = STATE(3903), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3903), + [anon_sym_RBRACE] = ACTIONS(9238), + [anon_sym_EQ] = ACTIONS(9240), + [anon_sym_DASH] = ACTIONS(9240), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(9244), + [anon_sym_COLON] = ACTIONS(9240), + [anon_sym_COLON_QMARK] = ACTIONS(9240), + [anon_sym_COLON_DASH] = ACTIONS(9240), + [anon_sym_PERCENT] = ACTIONS(9240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3660] = { + [anon_sym_RPAREN] = ACTIONS(9246), + [sym_comment] = ACTIONS(57), + }, + [3661] = { + [anon_sym_BQUOTE] = ACTIONS(9246), + [sym_comment] = ACTIONS(57), + }, + [3662] = { + [anon_sym_RPAREN] = ACTIONS(9248), + [sym_comment] = ACTIONS(57), + }, + [3663] = { + [sym_variable_assignment] = STATE(3663), + [sym_subscript] = STATE(3311), + [sym_concatenation] = STATE(3663), + [sym_string] = STATE(3306), + [sym_simple_expansion] = STATE(3306), + [sym_string_expansion] = STATE(3306), + [sym_expansion] = STATE(3306), + [sym_command_substitution] = STATE(3306), + [sym_process_substitution] = STATE(3306), + [aux_sym_declaration_command_repeat1] = STATE(3663), + [sym__simple_heredoc_body] = ACTIONS(2149), + [sym__heredoc_body_beginning] = ACTIONS(2149), + [sym_file_descriptor] = ACTIONS(2149), + [sym_variable_name] = ACTIONS(9250), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_esac] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_SEMI_SEMI] = ACTIONS(2149), + [anon_sym_PIPE_AMP] = ACTIONS(2149), + [anon_sym_AMP_AMP] = ACTIONS(2149), + [anon_sym_PIPE_PIPE] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_GT] = ACTIONS(2154), + [anon_sym_GT_GT] = ACTIONS(2149), + [anon_sym_AMP_GT] = ACTIONS(2154), + [anon_sym_AMP_GT_GT] = ACTIONS(2149), + [anon_sym_LT_AMP] = ACTIONS(2149), + [anon_sym_GT_AMP] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2154), + [anon_sym_LT_LT_DASH] = ACTIONS(2149), + [anon_sym_LT_LT_LT] = ACTIONS(2149), + [sym__special_characters] = ACTIONS(9253), + [anon_sym_DQUOTE] = ACTIONS(9256), + [anon_sym_DOLLAR] = ACTIONS(9259), + [sym_raw_string] = ACTIONS(9262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(9265), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(9268), + [anon_sym_BQUOTE] = ACTIONS(9271), + [anon_sym_LT_LPAREN] = ACTIONS(9274), + [anon_sym_GT_LPAREN] = ACTIONS(9274), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(9277), + [sym_word] = ACTIONS(9280), + [anon_sym_LF] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2154), + }, + [3664] = { + [sym_string] = STATE(3906), + [sym_simple_expansion] = STATE(3906), + [sym_string_expansion] = STATE(3906), + [sym_expansion] = STATE(3906), + [sym_command_substitution] = STATE(3906), + [sym_process_substitution] = STATE(3906), + [sym__special_characters] = ACTIONS(9283), + [anon_sym_DQUOTE] = ACTIONS(7911), + [anon_sym_DOLLAR] = ACTIONS(7913), + [sym_raw_string] = ACTIONS(9283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7917), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7919), + [anon_sym_BQUOTE] = ACTIONS(7921), + [anon_sym_LT_LPAREN] = ACTIONS(7923), + [anon_sym_GT_LPAREN] = ACTIONS(7923), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9283), + }, + [3665] = { + [aux_sym_concatenation_repeat1] = STATE(3907), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(8715), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_esac] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1045), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [3666] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_esac] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1049), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [3667] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(9285), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [3668] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(9285), + [anon_sym_DOLLAR] = ACTIONS(9287), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [3669] = { + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_esac] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1083), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [3670] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = 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), + }, + [3671] = { + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_esac] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1091), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + }, + [3672] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(9289), + [sym_comment] = ACTIONS(57), + }, + [3673] = { + [sym_subscript] = STATE(3913), + [sym_variable_name] = ACTIONS(9291), + [anon_sym_DASH] = ACTIONS(9293), + [anon_sym_DOLLAR] = ACTIONS(9293), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(9295), + [anon_sym_STAR] = ACTIONS(9297), + [anon_sym_AT] = ACTIONS(9297), + [anon_sym_QMARK] = ACTIONS(9297), + [anon_sym_0] = ACTIONS(9295), + [anon_sym__] = ACTIONS(9295), + }, + [3674] = { + [sym_concatenation] = STATE(3916), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3916), + [anon_sym_RBRACE] = ACTIONS(9299), + [anon_sym_EQ] = ACTIONS(9301), + [anon_sym_DASH] = ACTIONS(9301), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(9305), + [anon_sym_COLON] = ACTIONS(9301), + [anon_sym_COLON_QMARK] = ACTIONS(9301), + [anon_sym_COLON_DASH] = ACTIONS(9301), + [anon_sym_PERCENT] = ACTIONS(9301), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3675] = { + [sym_concatenation] = STATE(3919), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3919), + [anon_sym_RBRACE] = ACTIONS(9307), + [anon_sym_EQ] = ACTIONS(9309), + [anon_sym_DASH] = ACTIONS(9309), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9311), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(9313), + [anon_sym_COLON] = ACTIONS(9309), + [anon_sym_COLON_QMARK] = ACTIONS(9309), + [anon_sym_COLON_DASH] = ACTIONS(9309), + [anon_sym_PERCENT] = ACTIONS(9309), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3676] = { + [anon_sym_RPAREN] = ACTIONS(9315), + [sym_comment] = ACTIONS(57), + }, + [3677] = { + [anon_sym_BQUOTE] = ACTIONS(9315), + [sym_comment] = ACTIONS(57), + }, + [3678] = { + [anon_sym_RPAREN] = ACTIONS(9317), + [sym_comment] = ACTIONS(57), + }, + [3679] = { + [sym_concatenation] = STATE(3679), + [sym_string] = STATE(3316), + [sym_simple_expansion] = STATE(3316), + [sym_string_expansion] = STATE(3316), + [sym_expansion] = STATE(3316), + [sym_command_substitution] = STATE(3316), + [sym_process_substitution] = STATE(3316), + [aux_sym_unset_command_repeat1] = STATE(3679), + [sym__simple_heredoc_body] = ACTIONS(2222), + [sym__heredoc_body_beginning] = ACTIONS(2222), + [sym_file_descriptor] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_esac] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_SEMI_SEMI] = ACTIONS(2222), + [anon_sym_PIPE_AMP] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2222), + [anon_sym_AMP_GT] = ACTIONS(2224), + [anon_sym_AMP_GT_GT] = ACTIONS(2222), + [anon_sym_LT_AMP] = ACTIONS(2222), + [anon_sym_GT_AMP] = ACTIONS(2222), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_LT_LT_DASH] = ACTIONS(2222), + [anon_sym_LT_LT_LT] = ACTIONS(2222), + [sym__special_characters] = ACTIONS(9319), + [anon_sym_DQUOTE] = ACTIONS(9322), + [anon_sym_DOLLAR] = ACTIONS(9325), + [sym_raw_string] = ACTIONS(9328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(9331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(9334), + [anon_sym_BQUOTE] = ACTIONS(9337), + [anon_sym_LT_LPAREN] = ACTIONS(9340), + [anon_sym_GT_LPAREN] = ACTIONS(9340), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(9343), + [sym_word] = ACTIONS(9346), + [anon_sym_LF] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2224), + }, + [3680] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_esac] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3681] = { + [aux_sym_concatenation_repeat1] = STATE(3681), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(9349), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_esac] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_EQ_TILDE] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3682] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_esac] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_EQ_TILDE] = ACTIONS(2301), + [anon_sym_EQ_EQ] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [3683] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(9352), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [3684] = { + [sym_concatenation] = STATE(3926), + [sym_string] = STATE(3925), + [sym_simple_expansion] = STATE(3925), + [sym_string_expansion] = STATE(3925), + [sym_expansion] = STATE(3925), + [sym_command_substitution] = STATE(3925), + [sym_process_substitution] = STATE(3925), + [anon_sym_RBRACE] = ACTIONS(9354), + [sym__special_characters] = ACTIONS(9356), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(9358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9358), + }, + [3685] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(9360), + [sym_comment] = ACTIONS(57), + }, + [3686] = { + [sym_concatenation] = STATE(3930), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3930), + [anon_sym_RBRACE] = ACTIONS(9362), + [anon_sym_EQ] = ACTIONS(9364), + [anon_sym_DASH] = ACTIONS(9364), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9366), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(9368), + [anon_sym_COLON] = ACTIONS(9364), + [anon_sym_COLON_QMARK] = ACTIONS(9364), + [anon_sym_COLON_DASH] = ACTIONS(9364), + [anon_sym_PERCENT] = ACTIONS(9364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3687] = { + [sym_concatenation] = STATE(3932), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3932), + [anon_sym_RBRACE] = ACTIONS(9354), + [anon_sym_EQ] = ACTIONS(9370), + [anon_sym_DASH] = ACTIONS(9370), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9372), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(9374), + [anon_sym_COLON] = ACTIONS(9370), + [anon_sym_COLON_QMARK] = ACTIONS(9370), + [anon_sym_COLON_DASH] = ACTIONS(9370), + [anon_sym_PERCENT] = ACTIONS(9370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3688] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_esac] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_EQ_TILDE] = ACTIONS(2394), + [anon_sym_EQ_EQ] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [3689] = { + [sym_concatenation] = STATE(3935), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3935), + [sym_regex] = ACTIONS(9376), + [anon_sym_RBRACE] = ACTIONS(9378), + [anon_sym_EQ] = ACTIONS(9380), + [anon_sym_DASH] = ACTIONS(9380), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9380), + [anon_sym_COLON_QMARK] = ACTIONS(9380), + [anon_sym_COLON_DASH] = ACTIONS(9380), + [anon_sym_PERCENT] = ACTIONS(9380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3690] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9378), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3691] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_esac] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_EQ_TILDE] = ACTIONS(2442), + [anon_sym_EQ_EQ] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [3692] = { + [sym_concatenation] = STATE(3932), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3932), + [sym_regex] = ACTIONS(9384), + [anon_sym_RBRACE] = ACTIONS(9354), + [anon_sym_EQ] = ACTIONS(9370), + [anon_sym_DASH] = ACTIONS(9370), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9372), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9370), + [anon_sym_COLON_QMARK] = ACTIONS(9370), + [anon_sym_COLON_DASH] = ACTIONS(9370), + [anon_sym_PERCENT] = ACTIONS(9370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3693] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9354), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3694] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_esac] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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_EQ_TILDE] = ACTIONS(2448), + [anon_sym_EQ_EQ] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [3695] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_esac] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_EQ_TILDE] = ACTIONS(2486), + [anon_sym_EQ_EQ] = ACTIONS(2486), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [3696] = { + [sym_concatenation] = STATE(1207), + [sym_string] = STATE(3938), + [sym_simple_expansion] = STATE(3938), + [sym_string_expansion] = STATE(3938), + [sym_expansion] = STATE(3938), + [sym_command_substitution] = STATE(3938), + [sym_process_substitution] = STATE(3938), + [sym__special_characters] = ACTIONS(9386), + [anon_sym_DQUOTE] = ACTIONS(4866), + [anon_sym_DOLLAR] = ACTIONS(4868), + [sym_raw_string] = ACTIONS(9388), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4872), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4874), + [anon_sym_BQUOTE] = ACTIONS(4876), + [anon_sym_LT_LPAREN] = ACTIONS(4878), + [anon_sym_GT_LPAREN] = ACTIONS(4878), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9388), + }, + [3697] = { + [sym_file_redirect] = STATE(3345), + [sym_heredoc_redirect] = STATE(3345), + [sym_herestring_redirect] = STATE(3345), + [aux_sym_redirected_statement_repeat1] = STATE(3345), + [sym__simple_heredoc_body] = ACTIONS(2516), + [sym__heredoc_body_beginning] = ACTIONS(2516), + [sym_file_descriptor] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_esac] = ACTIONS(2516), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), + }, + [3698] = { + [sym_file_redirect] = STATE(3345), + [sym_heredoc_redirect] = STATE(3345), + [sym_herestring_redirect] = STATE(3345), + [aux_sym_redirected_statement_repeat1] = STATE(3345), + [sym__simple_heredoc_body] = ACTIONS(2516), + [sym__heredoc_body_beginning] = ACTIONS(2516), + [sym_file_descriptor] = ACTIONS(2516), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_esac] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_SEMI_SEMI] = ACTIONS(2516), + [anon_sym_PIPE_AMP] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_AMP_GT] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(2516), + [anon_sym_LT_AMP] = ACTIONS(2516), + [anon_sym_GT_AMP] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_LT_LT_DASH] = ACTIONS(2516), + [anon_sym_LT_LT_LT] = ACTIONS(2516), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), + }, + [3699] = { + [sym_file_redirect] = STATE(3345), + [sym_heredoc_redirect] = STATE(3345), + [sym_herestring_redirect] = STATE(3345), + [aux_sym_redirected_statement_repeat1] = STATE(3345), + [sym__simple_heredoc_body] = ACTIONS(2520), + [sym__heredoc_body_beginning] = ACTIONS(2520), + [sym_file_descriptor] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_esac] = ACTIONS(2520), + [anon_sym_PIPE] = ACTIONS(7961), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(7963), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2520), + [anon_sym_AMP_GT] = ACTIONS(2522), + [anon_sym_AMP_GT_GT] = ACTIONS(2520), + [anon_sym_LT_AMP] = ACTIONS(2520), + [anon_sym_GT_AMP] = ACTIONS(2520), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + }, + [3700] = { + [sym_file_redirect] = STATE(3345), + [sym_heredoc_redirect] = STATE(3345), + [sym_herestring_redirect] = STATE(3345), + [aux_sym_redirected_statement_repeat1] = STATE(3345), + [sym__simple_heredoc_body] = ACTIONS(2520), + [sym__heredoc_body_beginning] = ACTIONS(2520), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_esac] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(7961), + [anon_sym_SEMI_SEMI] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(7963), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_LT_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(2520), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + }, + [3701] = { + [aux_sym_concatenation_repeat1] = STATE(3939), + [sym__simple_heredoc_body] = ACTIONS(1009), + [sym__heredoc_body_beginning] = ACTIONS(1009), + [sym_file_descriptor] = ACTIONS(1009), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_esac] = ACTIONS(1009), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_SEMI_SEMI] = ACTIONS(1009), + [anon_sym_PIPE_AMP] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1009), + [anon_sym_PIPE_PIPE] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_GT] = ACTIONS(1013), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(1013), + [anon_sym_AMP_GT_GT] = ACTIONS(1009), + [anon_sym_LT_AMP] = ACTIONS(1009), + [anon_sym_GT_AMP] = ACTIONS(1009), + [anon_sym_LT_LT] = ACTIONS(1013), + [anon_sym_LT_LT_DASH] = ACTIONS(1009), + [anon_sym_LT_LT_LT] = ACTIONS(1009), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1013), + }, + [3702] = { + [aux_sym_concatenation_repeat1] = STATE(3939), + [sym__simple_heredoc_body] = ACTIONS(1027), + [sym__heredoc_body_beginning] = ACTIONS(1027), + [sym_file_descriptor] = ACTIONS(1027), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_esac] = ACTIONS(1027), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_SEMI_SEMI] = ACTIONS(1027), + [anon_sym_PIPE_AMP] = ACTIONS(1027), + [anon_sym_AMP_AMP] = ACTIONS(1027), + [anon_sym_PIPE_PIPE] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_AMP_GT] = ACTIONS(1029), + [anon_sym_AMP_GT_GT] = ACTIONS(1027), + [anon_sym_LT_AMP] = ACTIONS(1027), + [anon_sym_GT_AMP] = ACTIONS(1027), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_LT_LT_DASH] = ACTIONS(1027), + [anon_sym_LT_LT_LT] = ACTIONS(1027), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + }, + [3703] = { + [aux_sym_concatenation_repeat1] = STATE(3939), + [sym__simple_heredoc_body] = ACTIONS(2528), + [sym__heredoc_body_beginning] = ACTIONS(2528), + [sym_file_descriptor] = ACTIONS(2528), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_esac] = ACTIONS(2528), + [anon_sym_PIPE] = ACTIONS(2530), + [anon_sym_SEMI_SEMI] = ACTIONS(2528), + [anon_sym_PIPE_AMP] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_GT] = ACTIONS(2530), + [anon_sym_GT_GT] = ACTIONS(2528), + [anon_sym_AMP_GT] = ACTIONS(2530), + [anon_sym_AMP_GT_GT] = ACTIONS(2528), + [anon_sym_LT_AMP] = ACTIONS(2528), + [anon_sym_GT_AMP] = ACTIONS(2528), + [anon_sym_LT_LT] = ACTIONS(2530), + [anon_sym_LT_LT_DASH] = ACTIONS(2528), + [anon_sym_LT_LT_LT] = ACTIONS(2528), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2530), + }, + [3704] = { + [aux_sym_concatenation_repeat1] = STATE(3939), + [sym__simple_heredoc_body] = ACTIONS(2532), + [sym__heredoc_body_beginning] = ACTIONS(2532), + [sym_file_descriptor] = ACTIONS(2532), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_esac] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_SEMI_SEMI] = ACTIONS(2532), + [anon_sym_PIPE_AMP] = ACTIONS(2532), + [anon_sym_AMP_AMP] = ACTIONS(2532), + [anon_sym_PIPE_PIPE] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_AMP_GT] = ACTIONS(2534), + [anon_sym_AMP_GT_GT] = ACTIONS(2532), + [anon_sym_LT_AMP] = ACTIONS(2532), + [anon_sym_GT_AMP] = ACTIONS(2532), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_LT_LT_DASH] = ACTIONS(2532), + [anon_sym_LT_LT_LT] = ACTIONS(2532), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2534), + }, + [3705] = { + [sym_file_descriptor] = ACTIONS(2536), + [sym_variable_name] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_LPAREN_LPAREN] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_esac] = ACTIONS(6229), + [anon_sym_SEMI_SEMI] = ACTIONS(2538), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2540), + [anon_sym_typeset] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_readonly] = ACTIONS(2540), + [anon_sym_local] = ACTIONS(2540), + [anon_sym_unset] = ACTIONS(2540), + [anon_sym_unsetenv] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_GT] = ACTIONS(2540), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_AMP_GT] = ACTIONS(2540), + [anon_sym_AMP_GT_GT] = ACTIONS(2536), + [anon_sym_LT_AMP] = ACTIONS(2536), + [anon_sym_GT_AMP] = ACTIONS(2536), + [sym__special_characters] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2536), + [anon_sym_DOLLAR] = ACTIONS(2540), + [sym_raw_string] = ACTIONS(2536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2536), + [anon_sym_BQUOTE] = ACTIONS(2536), + [anon_sym_LT_LPAREN] = ACTIONS(2536), + [anon_sym_GT_LPAREN] = ACTIONS(2536), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2540), + }, + [3706] = { + [sym_file_redirect] = STATE(3706), + [sym_heredoc_redirect] = STATE(3706), + [sym_herestring_redirect] = STATE(3706), + [aux_sym_redirected_statement_repeat1] = STATE(3706), + [sym__simple_heredoc_body] = ACTIONS(2542), + [sym__heredoc_body_beginning] = ACTIONS(2542), + [sym_file_descriptor] = ACTIONS(9390), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_esac] = ACTIONS(2542), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_SEMI_SEMI] = ACTIONS(2542), + [anon_sym_PIPE_AMP] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(9393), + [anon_sym_GT] = ACTIONS(9393), + [anon_sym_GT_GT] = ACTIONS(9396), + [anon_sym_AMP_GT] = ACTIONS(9393), + [anon_sym_AMP_GT_GT] = ACTIONS(9396), + [anon_sym_LT_AMP] = ACTIONS(9396), + [anon_sym_GT_AMP] = ACTIONS(9396), + [anon_sym_LT_LT] = ACTIONS(2555), + [anon_sym_LT_LT_DASH] = ACTIONS(2558), + [anon_sym_LT_LT_LT] = ACTIONS(9399), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2547), + }, + [3707] = { + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_esac] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(2566), + [anon_sym_EQ_EQ] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2566), + [sym_raw_string] = ACTIONS(2564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2564), + [anon_sym_LT_LPAREN] = ACTIONS(2564), + [anon_sym_GT_LPAREN] = ACTIONS(2564), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2566), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [3708] = { + [aux_sym_concatenation_repeat1] = STATE(3323), + [sym__simple_heredoc_body] = ACTIONS(2568), + [sym__heredoc_body_beginning] = ACTIONS(2568), + [sym_file_descriptor] = ACTIONS(2568), + [sym__concat] = ACTIONS(7929), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_esac] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_SEMI_SEMI] = ACTIONS(2568), + [anon_sym_PIPE_AMP] = ACTIONS(2568), + [anon_sym_AMP_AMP] = ACTIONS(2568), + [anon_sym_PIPE_PIPE] = ACTIONS(2568), + [anon_sym_EQ_TILDE] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_AMP_GT] = ACTIONS(2570), + [anon_sym_AMP_GT_GT] = ACTIONS(2568), + [anon_sym_LT_AMP] = ACTIONS(2568), + [anon_sym_GT_AMP] = ACTIONS(2568), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_LT_LT_DASH] = ACTIONS(2568), + [anon_sym_LT_LT_LT] = ACTIONS(2568), + [sym__special_characters] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2568), + [anon_sym_DOLLAR] = ACTIONS(2570), + [sym_raw_string] = ACTIONS(2568), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2568), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2568), + [anon_sym_BQUOTE] = ACTIONS(2568), + [anon_sym_LT_LPAREN] = ACTIONS(2568), + [anon_sym_GT_LPAREN] = ACTIONS(2568), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2570), + [anon_sym_LF] = ACTIONS(2568), + [anon_sym_AMP] = ACTIONS(2570), + }, + [3709] = { + [aux_sym_concatenation_repeat1] = STATE(3323), + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [sym__concat] = ACTIONS(7929), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_esac] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(2566), + [anon_sym_EQ_EQ] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2566), + [sym_raw_string] = ACTIONS(2564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2564), + [anon_sym_LT_LPAREN] = ACTIONS(2564), + [anon_sym_GT_LPAREN] = ACTIONS(2564), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2566), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [3710] = { + [sym_concatenation] = STATE(3710), + [sym_string] = STATE(3348), + [sym_simple_expansion] = STATE(3348), + [sym_string_expansion] = STATE(3348), + [sym_expansion] = STATE(3348), + [sym_command_substitution] = STATE(3348), + [sym_process_substitution] = STATE(3348), + [aux_sym_command_repeat2] = STATE(3710), + [sym__simple_heredoc_body] = ACTIONS(2564), + [sym__heredoc_body_beginning] = ACTIONS(2564), + [sym_file_descriptor] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_esac] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [anon_sym_PIPE_AMP] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_EQ_TILDE] = ACTIONS(9402), + [anon_sym_EQ_EQ] = ACTIONS(9402), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_AMP_GT] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(2564), + [anon_sym_LT_AMP] = ACTIONS(2564), + [anon_sym_GT_AMP] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_LT_LT_DASH] = ACTIONS(2564), + [anon_sym_LT_LT_LT] = ACTIONS(2564), + [sym__special_characters] = ACTIONS(9405), + [anon_sym_DQUOTE] = ACTIONS(9408), + [anon_sym_DOLLAR] = ACTIONS(9411), + [sym_raw_string] = ACTIONS(9414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(9417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(9420), + [anon_sym_BQUOTE] = ACTIONS(9423), + [anon_sym_LT_LPAREN] = ACTIONS(9426), + [anon_sym_GT_LPAREN] = ACTIONS(9426), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9429), + [anon_sym_LF] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + }, + [3711] = { + [sym_file_descriptor] = ACTIONS(1213), + [sym_variable_name] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_esac] = ACTIONS(6229), + [anon_sym_SEMI_SEMI] = ACTIONS(2538), + [anon_sym_function] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym_declare] = ACTIONS(1217), + [anon_sym_typeset] = ACTIONS(1217), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_local] = ACTIONS(1217), + [anon_sym_unset] = ACTIONS(1217), + [anon_sym_unsetenv] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_GT] = ACTIONS(1213), + [anon_sym_AMP_GT] = ACTIONS(1217), + [anon_sym_AMP_GT_GT] = ACTIONS(1213), + [anon_sym_LT_AMP] = ACTIONS(1213), + [anon_sym_GT_AMP] = ACTIONS(1213), + [sym__special_characters] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1217), + [sym_raw_string] = ACTIONS(1213), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1213), + [anon_sym_BQUOTE] = ACTIONS(1213), + [anon_sym_LT_LPAREN] = ACTIONS(1213), + [anon_sym_GT_LPAREN] = ACTIONS(1213), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1217), + }, + [3712] = { + [anon_sym_SEMI] = ACTIONS(9432), + [anon_sym_esac] = ACTIONS(2538), + [anon_sym_SEMI_SEMI] = ACTIONS(2538), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(9434), + [anon_sym_AMP] = ACTIONS(9434), + }, + [3713] = { + [sym_concatenation] = STATE(3710), + [sym_string] = STATE(3348), + [sym_simple_expansion] = STATE(3348), + [sym_string_expansion] = STATE(3348), + [sym_expansion] = STATE(3348), + [sym_command_substitution] = STATE(3348), + [sym_process_substitution] = STATE(3348), + [aux_sym_command_repeat2] = STATE(3710), + [sym__simple_heredoc_body] = ACTIONS(2628), + [sym__heredoc_body_beginning] = ACTIONS(2628), + [sym_file_descriptor] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym_esac] = ACTIONS(2630), + [anon_sym_PIPE] = ACTIONS(2630), + [anon_sym_SEMI_SEMI] = ACTIONS(2628), + [anon_sym_PIPE_AMP] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_EQ_TILDE] = ACTIONS(7975), + [anon_sym_EQ_EQ] = ACTIONS(7975), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_GT] = ACTIONS(2630), + [anon_sym_GT_GT] = ACTIONS(2628), + [anon_sym_AMP_GT] = ACTIONS(2630), + [anon_sym_AMP_GT_GT] = ACTIONS(2628), + [anon_sym_LT_AMP] = ACTIONS(2628), + [anon_sym_GT_AMP] = ACTIONS(2628), + [anon_sym_LT_LT] = ACTIONS(2630), + [anon_sym_LT_LT_DASH] = ACTIONS(2628), + [anon_sym_LT_LT_LT] = ACTIONS(2628), + [sym__special_characters] = ACTIONS(7977), + [anon_sym_DQUOTE] = ACTIONS(6695), + [anon_sym_DOLLAR] = ACTIONS(6697), + [sym_raw_string] = ACTIONS(7979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6703), + [anon_sym_BQUOTE] = ACTIONS(6705), + [anon_sym_LT_LPAREN] = ACTIONS(6707), + [anon_sym_GT_LPAREN] = ACTIONS(6707), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7981), + [anon_sym_LF] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2630), + }, + [3714] = { + [anon_sym_esac] = ACTIONS(9436), + [sym__special_characters] = ACTIONS(9438), + [anon_sym_DQUOTE] = ACTIONS(9438), + [anon_sym_DOLLAR] = ACTIONS(9440), + [sym_raw_string] = ACTIONS(9438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(9438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(9438), + [anon_sym_BQUOTE] = ACTIONS(9438), + [anon_sym_LT_LPAREN] = ACTIONS(9438), + [anon_sym_GT_LPAREN] = ACTIONS(9438), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9440), + }, + [3715] = { + [anon_sym_esac] = ACTIONS(9442), + [sym__special_characters] = ACTIONS(9444), + [anon_sym_DQUOTE] = ACTIONS(9444), + [anon_sym_DOLLAR] = ACTIONS(9446), + [sym_raw_string] = ACTIONS(9444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(9444), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(9444), + [anon_sym_BQUOTE] = ACTIONS(9444), + [anon_sym_LT_LPAREN] = ACTIONS(9444), + [anon_sym_GT_LPAREN] = ACTIONS(9444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9446), + }, + [3716] = { + [sym__special_characters] = ACTIONS(7883), + [anon_sym_DQUOTE] = ACTIONS(7883), + [anon_sym_DOLLAR] = ACTIONS(7885), + [sym_raw_string] = ACTIONS(7883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7883), + [anon_sym_BQUOTE] = ACTIONS(7883), + [anon_sym_LT_LPAREN] = ACTIONS(7883), + [anon_sym_GT_LPAREN] = ACTIONS(7883), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7883), + }, + [3717] = { + [anon_sym_SEMI_SEMI] = ACTIONS(9448), + [sym_comment] = ACTIONS(57), + }, + [3718] = { + [sym_file_redirect] = STATE(1219), + [sym_heredoc_redirect] = STATE(1219), + [sym_heredoc_body] = STATE(3942), + [sym_herestring_redirect] = STATE(1219), + [aux_sym_redirected_statement_repeat1] = STATE(1219), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(2610), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_SEMI_SEMI] = ACTIONS(393), + [anon_sym_PIPE_AMP] = ACTIONS(2618), + [anon_sym_AMP_AMP] = ACTIONS(2620), + [anon_sym_PIPE_PIPE] = ACTIONS(2620), + [anon_sym_LT] = ACTIONS(2622), + [anon_sym_GT] = ACTIONS(2622), + [anon_sym_GT_GT] = ACTIONS(2624), + [anon_sym_AMP_GT] = ACTIONS(2622), + [anon_sym_AMP_GT_GT] = ACTIONS(2624), + [anon_sym_LT_AMP] = ACTIONS(2624), + [anon_sym_GT_AMP] = ACTIONS(2624), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(2626), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(395), + }, + [3719] = { + [sym_file_redirect] = STATE(1219), + [sym_heredoc_redirect] = STATE(1219), + [sym_heredoc_body] = STATE(3942), + [sym_herestring_redirect] = STATE(1219), + [aux_sym_redirected_statement_repeat1] = STATE(1219), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_SEMI_SEMI] = ACTIONS(393), + [anon_sym_PIPE_AMP] = ACTIONS(2618), + [anon_sym_AMP_AMP] = ACTIONS(2620), + [anon_sym_PIPE_PIPE] = ACTIONS(2620), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(2626), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(395), + }, + [3720] = { + [sym_redirected_statement] = STATE(3943), + [sym_for_statement] = STATE(3943), + [sym_c_style_for_statement] = STATE(3943), + [sym_while_statement] = STATE(3943), + [sym_if_statement] = STATE(3943), + [sym_case_statement] = STATE(3943), + [sym_function_definition] = STATE(3943), + [sym_compound_statement] = STATE(3943), + [sym_subshell] = STATE(3943), + [sym_pipeline] = STATE(3943), + [sym_list] = STATE(3943), + [sym_negated_command] = STATE(3943), + [sym_test_command] = STATE(3943), + [sym_declaration_command] = STATE(3943), + [sym_unset_command] = STATE(3943), + [sym_command] = STATE(3943), + [sym_command_name] = STATE(649), + [sym_variable_assignment] = STATE(3944), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(651), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(236), + [aux_sym_command_repeat1] = STATE(651), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(4272), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(4274), + [anon_sym_typeset] = ACTIONS(4274), + [anon_sym_export] = ACTIONS(4274), + [anon_sym_readonly] = ACTIONS(4274), + [anon_sym_local] = ACTIONS(4274), + [anon_sym_unset] = ACTIONS(4276), + [anon_sym_unsetenv] = ACTIONS(4276), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [3721] = { + [sym__statements] = STATE(3945), + [sym_redirected_statement] = STATE(3718), + [sym_for_statement] = STATE(3718), + [sym_c_style_for_statement] = STATE(3718), + [sym_while_statement] = STATE(3718), + [sym_if_statement] = STATE(3718), + [sym_case_statement] = STATE(3718), + [sym_function_definition] = STATE(3718), + [sym_compound_statement] = STATE(3718), + [sym_subshell] = STATE(3718), + [sym_pipeline] = STATE(3718), + [sym_list] = STATE(3718), + [sym_negated_command] = STATE(3718), + [sym_test_command] = STATE(3718), + [sym_declaration_command] = STATE(3718), + [sym_unset_command] = STATE(3718), + [sym_command] = STATE(3718), + [sym_command_name] = STATE(649), + [sym_variable_assignment] = STATE(3719), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(651), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(3720), + [aux_sym_command_repeat1] = STATE(651), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(9448), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(4272), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(4274), + [anon_sym_typeset] = ACTIONS(4274), + [anon_sym_export] = ACTIONS(4274), + [anon_sym_readonly] = ACTIONS(4274), + [anon_sym_local] = ACTIONS(4274), + [anon_sym_unset] = ACTIONS(4276), + [anon_sym_unsetenv] = ACTIONS(4276), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [3722] = { + [sym__special_characters] = ACTIONS(7990), + [anon_sym_DQUOTE] = ACTIONS(7990), + [anon_sym_DOLLAR] = ACTIONS(7992), + [sym_raw_string] = ACTIONS(7990), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7990), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7990), + [anon_sym_BQUOTE] = ACTIONS(7990), + [anon_sym_LT_LPAREN] = ACTIONS(7990), + [anon_sym_GT_LPAREN] = ACTIONS(7990), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7990), + }, + [3723] = { + [anon_sym_SEMI_SEMI] = ACTIONS(9450), + [sym_comment] = ACTIONS(57), + }, + [3724] = { + [sym__statements] = STATE(3947), + [sym_redirected_statement] = STATE(3718), + [sym_for_statement] = STATE(3718), + [sym_c_style_for_statement] = STATE(3718), + [sym_while_statement] = STATE(3718), + [sym_if_statement] = STATE(3718), + [sym_case_statement] = STATE(3718), + [sym_function_definition] = STATE(3718), + [sym_compound_statement] = STATE(3718), + [sym_subshell] = STATE(3718), + [sym_pipeline] = STATE(3718), + [sym_list] = STATE(3718), + [sym_negated_command] = STATE(3718), + [sym_test_command] = STATE(3718), + [sym_declaration_command] = STATE(3718), + [sym_unset_command] = STATE(3718), + [sym_command] = STATE(3718), + [sym_command_name] = STATE(649), + [sym_variable_assignment] = STATE(3719), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(651), + [sym_concatenation] = STATE(33), + [sym_string] = STATE(208), + [sym_simple_expansion] = STATE(208), + [sym_string_expansion] = STATE(208), + [sym_expansion] = STATE(208), + [sym_command_substitution] = STATE(208), + [sym_process_substitution] = STATE(208), + [aux_sym__statements_repeat1] = STATE(3720), + [aux_sym_command_repeat1] = STATE(651), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(367), + [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(9450), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(4272), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(4274), + [anon_sym_typeset] = ACTIONS(4274), + [anon_sym_export] = ACTIONS(4274), + [anon_sym_readonly] = ACTIONS(4274), + [anon_sym_local] = ACTIONS(4274), + [anon_sym_unset] = ACTIONS(4276), + [anon_sym_unsetenv] = ACTIONS(4276), + [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(375), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(377), + [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(379), + }, + [3725] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [sym_variable_name] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_RBRACE] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7027), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3726] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [sym_variable_name] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_RBRACE] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7031), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3727] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [sym_variable_name] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_RBRACE] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7035), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3728] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9452), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3729] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9454), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3730] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [sym_variable_name] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_RBRACE] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7071), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [3731] = { + [sym__simple_heredoc_body] = ACTIONS(8204), + [sym__heredoc_body_beginning] = ACTIONS(8204), + [sym_file_descriptor] = ACTIONS(8204), + [anon_sym_SEMI] = ACTIONS(8206), + [anon_sym_PIPE] = ACTIONS(8206), + [anon_sym_SEMI_SEMI] = ACTIONS(8204), + [anon_sym_RBRACE] = ACTIONS(8204), + [anon_sym_PIPE_AMP] = ACTIONS(8204), + [anon_sym_AMP_AMP] = ACTIONS(8204), + [anon_sym_PIPE_PIPE] = ACTIONS(8204), + [anon_sym_LT] = ACTIONS(8206), + [anon_sym_GT] = ACTIONS(8206), + [anon_sym_GT_GT] = ACTIONS(8204), + [anon_sym_AMP_GT] = ACTIONS(8206), + [anon_sym_AMP_GT_GT] = ACTIONS(8204), + [anon_sym_LT_AMP] = ACTIONS(8204), + [anon_sym_GT_AMP] = ACTIONS(8204), + [anon_sym_LT_LT] = ACTIONS(8206), + [anon_sym_LT_LT_DASH] = ACTIONS(8204), + [anon_sym_LT_LT_LT] = ACTIONS(8204), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8204), + [anon_sym_AMP] = ACTIONS(8206), + }, + [3732] = { + [sym_do_group] = STATE(3950), + [sym_compound_statement] = STATE(3950), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(191), + [sym_comment] = ACTIONS(57), + }, + [3733] = { + [sym_do_group] = STATE(3950), + [sym_compound_statement] = STATE(3950), + [anon_sym_SEMI] = ACTIONS(9456), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(191), + [sym_comment] = ACTIONS(57), + }, + [3734] = { + [sym__simple_heredoc_body] = ACTIONS(8831), + [sym__heredoc_body_beginning] = ACTIONS(8831), + [sym_file_descriptor] = ACTIONS(8831), + [anon_sym_SEMI] = ACTIONS(8833), + [anon_sym_PIPE] = ACTIONS(8833), + [anon_sym_SEMI_SEMI] = ACTIONS(8831), + [anon_sym_RBRACE] = ACTIONS(8831), + [anon_sym_PIPE_AMP] = ACTIONS(8831), + [anon_sym_AMP_AMP] = ACTIONS(8831), + [anon_sym_PIPE_PIPE] = ACTIONS(8831), + [anon_sym_LT] = ACTIONS(8833), + [anon_sym_GT] = ACTIONS(8833), + [anon_sym_GT_GT] = ACTIONS(8831), + [anon_sym_AMP_GT] = ACTIONS(8833), + [anon_sym_AMP_GT_GT] = ACTIONS(8831), + [anon_sym_LT_AMP] = ACTIONS(8831), + [anon_sym_GT_AMP] = ACTIONS(8831), + [anon_sym_LT_LT] = ACTIONS(8833), + [anon_sym_LT_LT_DASH] = ACTIONS(8831), + [anon_sym_LT_LT_LT] = ACTIONS(8831), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8831), + [anon_sym_AMP] = ACTIONS(8833), + }, + [3735] = { + [sym__simple_heredoc_body] = ACTIONS(8835), + [sym__heredoc_body_beginning] = ACTIONS(8835), + [sym_file_descriptor] = ACTIONS(8835), + [anon_sym_SEMI] = ACTIONS(8837), + [anon_sym_PIPE] = ACTIONS(8837), + [anon_sym_SEMI_SEMI] = ACTIONS(8835), + [anon_sym_RBRACE] = ACTIONS(8835), + [anon_sym_PIPE_AMP] = ACTIONS(8835), + [anon_sym_AMP_AMP] = ACTIONS(8835), + [anon_sym_PIPE_PIPE] = ACTIONS(8835), + [anon_sym_LT] = ACTIONS(8837), + [anon_sym_GT] = ACTIONS(8837), + [anon_sym_GT_GT] = ACTIONS(8835), + [anon_sym_AMP_GT] = ACTIONS(8837), + [anon_sym_AMP_GT_GT] = ACTIONS(8835), + [anon_sym_LT_AMP] = ACTIONS(8835), + [anon_sym_GT_AMP] = ACTIONS(8835), + [anon_sym_LT_LT] = ACTIONS(8837), + [anon_sym_LT_LT_DASH] = ACTIONS(8835), + [anon_sym_LT_LT_LT] = ACTIONS(8835), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8835), + [anon_sym_AMP] = ACTIONS(8837), + }, + [3736] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [sym_variable_name] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_RBRACE] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8146), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8146), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [3737] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [sym_variable_name] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_RBRACE] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8150), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8150), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [3738] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_RBRACE] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8146), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8146), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [3739] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_RBRACE] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8150), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8150), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [3740] = { + [sym__concat] = ACTIONS(7025), + [anon_sym_RBRACE] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + }, + [3741] = { + [sym__concat] = ACTIONS(7029), + [anon_sym_RBRACE] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + }, + [3742] = { + [sym__concat] = ACTIONS(7033), + [anon_sym_RBRACE] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + }, + [3743] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9458), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3744] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9460), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3745] = { + [sym__concat] = ACTIONS(7069), + [anon_sym_RBRACE] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + }, + [3746] = { + [sym__concat] = ACTIONS(8144), + [anon_sym_RBRACE] = ACTIONS(8144), + [anon_sym_EQ] = ACTIONS(8146), + [anon_sym_DASH] = ACTIONS(8146), + [sym__special_characters] = ACTIONS(8146), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_POUND] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_COLON] = ACTIONS(8146), + [anon_sym_COLON_QMARK] = ACTIONS(8146), + [anon_sym_COLON_DASH] = ACTIONS(8146), + [anon_sym_PERCENT] = ACTIONS(8146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(8146), + }, + [3747] = { + [sym__concat] = ACTIONS(8148), + [anon_sym_RBRACE] = ACTIONS(8148), + [anon_sym_EQ] = ACTIONS(8150), + [anon_sym_DASH] = ACTIONS(8150), + [sym__special_characters] = ACTIONS(8150), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_POUND] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_COLON] = ACTIONS(8150), + [anon_sym_COLON_QMARK] = ACTIONS(8150), + [anon_sym_COLON_DASH] = ACTIONS(8150), + [anon_sym_PERCENT] = ACTIONS(8150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(8150), + }, + [3748] = { + [sym__heredoc_body_middle] = ACTIONS(8144), + [sym__heredoc_body_end] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + }, + [3749] = { + [sym__heredoc_body_middle] = ACTIONS(8148), + [sym__heredoc_body_end] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + }, + [3750] = { + [sym__concat] = ACTIONS(8144), + [anon_sym_RPAREN] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8144), + }, + [3751] = { + [sym__concat] = ACTIONS(8148), + [anon_sym_RPAREN] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8148), + }, + [3752] = { + [sym__simple_heredoc_body] = ACTIONS(9462), + [sym__heredoc_body_beginning] = ACTIONS(9462), + [sym_file_descriptor] = ACTIONS(9462), + [ts_builtin_sym_end] = ACTIONS(9462), + [anon_sym_SEMI] = ACTIONS(9464), + [anon_sym_done] = ACTIONS(9462), + [anon_sym_fi] = ACTIONS(9462), + [anon_sym_elif] = ACTIONS(9462), + [anon_sym_else] = ACTIONS(9462), + [anon_sym_esac] = ACTIONS(9462), + [anon_sym_PIPE] = ACTIONS(9464), + [anon_sym_RPAREN] = ACTIONS(9462), + [anon_sym_SEMI_SEMI] = ACTIONS(9462), + [anon_sym_PIPE_AMP] = ACTIONS(9462), + [anon_sym_AMP_AMP] = ACTIONS(9462), + [anon_sym_PIPE_PIPE] = ACTIONS(9462), + [anon_sym_LT] = ACTIONS(9464), + [anon_sym_GT] = ACTIONS(9464), + [anon_sym_GT_GT] = ACTIONS(9462), + [anon_sym_AMP_GT] = ACTIONS(9464), + [anon_sym_AMP_GT_GT] = ACTIONS(9462), + [anon_sym_LT_AMP] = ACTIONS(9462), + [anon_sym_GT_AMP] = ACTIONS(9462), + [anon_sym_LT_LT] = ACTIONS(9464), + [anon_sym_LT_LT_DASH] = ACTIONS(9462), + [anon_sym_LT_LT_LT] = ACTIONS(9462), + [anon_sym_BQUOTE] = ACTIONS(9462), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(9462), + [anon_sym_AMP] = ACTIONS(9464), + }, + [3753] = { + [sym__concat] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8144), + }, + [3754] = { + [sym__concat] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8148), + }, + [3755] = { + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [sym_variable_name] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [3756] = { + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [sym_variable_name] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [3757] = { + [sym_file_descriptor] = ACTIONS(8899), + [anon_sym_SEMI] = ACTIONS(8901), + [anon_sym_PIPE] = ACTIONS(8901), + [anon_sym_SEMI_SEMI] = ACTIONS(8899), + [anon_sym_PIPE_AMP] = ACTIONS(8899), + [anon_sym_AMP_AMP] = ACTIONS(8899), + [anon_sym_PIPE_PIPE] = ACTIONS(8899), + [anon_sym_LT] = ACTIONS(8901), + [anon_sym_GT] = ACTIONS(8901), + [anon_sym_GT_GT] = ACTIONS(8899), + [anon_sym_AMP_GT] = ACTIONS(8901), + [anon_sym_AMP_GT_GT] = ACTIONS(8899), + [anon_sym_LT_AMP] = ACTIONS(8899), + [anon_sym_GT_AMP] = ACTIONS(8899), + [anon_sym_LT_LT] = ACTIONS(8901), + [anon_sym_LT_LT_DASH] = ACTIONS(8899), + [anon_sym_LT_LT_LT] = ACTIONS(8899), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8899), + [anon_sym_AMP] = ACTIONS(8901), + }, + [3758] = { + [sym_do_group] = STATE(3954), + [sym_compound_statement] = STATE(3954), + [anon_sym_do] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(113), + [sym_comment] = ACTIONS(57), + }, + [3759] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [sym_variable_name] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_done] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [3760] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [sym_variable_name] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_done] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [3761] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9466), + [sym_comment] = ACTIONS(57), + }, + [3762] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9468), + [sym_comment] = ACTIONS(57), + }, + [3763] = { + [anon_sym_RBRACE] = ACTIONS(9468), + [sym_comment] = ACTIONS(57), + }, + [3764] = { + [sym_concatenation] = STATE(3958), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3958), + [anon_sym_RBRACE] = ACTIONS(9470), + [anon_sym_EQ] = ACTIONS(9472), + [anon_sym_DASH] = ACTIONS(9472), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9472), + [anon_sym_COLON_QMARK] = ACTIONS(9472), + [anon_sym_COLON_DASH] = ACTIONS(9472), + [anon_sym_PERCENT] = ACTIONS(9472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3765] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [sym_variable_name] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_done] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [3766] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9470), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3767] = { + [sym_concatenation] = STATE(3959), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3959), + [anon_sym_RBRACE] = ACTIONS(9468), + [anon_sym_EQ] = ACTIONS(9476), + [anon_sym_DASH] = ACTIONS(9476), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9478), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9476), + [anon_sym_COLON_QMARK] = ACTIONS(9476), + [anon_sym_COLON_DASH] = ACTIONS(9476), + [anon_sym_PERCENT] = ACTIONS(9476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3768] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9468), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3769] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [sym_variable_name] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_done] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [3770] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9480), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3771] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [sym_variable_name] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_done] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7027), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3772] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [sym_variable_name] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_done] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7031), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3773] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [sym_variable_name] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_done] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7035), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3774] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9482), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3775] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9484), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3776] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [sym_variable_name] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_done] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7071), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [3777] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_done] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7027), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3778] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_done] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7031), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3779] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_done] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7035), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3780] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9486), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3781] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9488), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3782] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_done] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7071), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [3783] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_done] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_EQ_TILDE] = ACTIONS(8146), + [anon_sym_EQ_EQ] = ACTIONS(8146), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [3784] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_done] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_EQ_TILDE] = ACTIONS(8150), + [anon_sym_EQ_EQ] = ACTIONS(8150), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [3785] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_done] = ACTIONS(5525), + [anon_sym_fi] = ACTIONS(5525), + [anon_sym_elif] = ACTIONS(5525), + [anon_sym_else] = ACTIONS(5525), + [anon_sym_esac] = ACTIONS(5525), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [3786] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_done] = ACTIONS(5533), + [anon_sym_fi] = ACTIONS(5533), + [anon_sym_elif] = ACTIONS(5533), + [anon_sym_else] = ACTIONS(5533), + [anon_sym_esac] = ACTIONS(5533), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [3787] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9490), + [sym_comment] = ACTIONS(57), + }, + [3788] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9492), + [sym_comment] = ACTIONS(57), + }, + [3789] = { + [anon_sym_RBRACE] = ACTIONS(9492), + [sym_comment] = ACTIONS(57), + }, + [3790] = { + [sym_concatenation] = STATE(3968), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3968), + [anon_sym_RBRACE] = ACTIONS(9494), + [anon_sym_EQ] = ACTIONS(9496), + [anon_sym_DASH] = ACTIONS(9496), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9498), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9496), + [anon_sym_COLON_QMARK] = ACTIONS(9496), + [anon_sym_COLON_DASH] = ACTIONS(9496), + [anon_sym_PERCENT] = ACTIONS(9496), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3791] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_done] = ACTIONS(5577), + [anon_sym_fi] = ACTIONS(5577), + [anon_sym_elif] = ACTIONS(5577), + [anon_sym_else] = ACTIONS(5577), + [anon_sym_esac] = ACTIONS(5577), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [3792] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9494), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3793] = { + [sym_concatenation] = STATE(3969), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3969), + [anon_sym_RBRACE] = ACTIONS(9492), + [anon_sym_EQ] = ACTIONS(9500), + [anon_sym_DASH] = ACTIONS(9500), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9502), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9500), + [anon_sym_COLON_QMARK] = ACTIONS(9500), + [anon_sym_COLON_DASH] = ACTIONS(9500), + [anon_sym_PERCENT] = ACTIONS(9500), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3794] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9492), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3795] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_done] = ACTIONS(5622), + [anon_sym_fi] = ACTIONS(5622), + [anon_sym_elif] = ACTIONS(5622), + [anon_sym_else] = ACTIONS(5622), + [anon_sym_esac] = ACTIONS(5622), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [3796] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9504), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3797] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [sym_variable_name] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_fi] = ACTIONS(5527), + [anon_sym_elif] = ACTIONS(5527), + [anon_sym_else] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [3798] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [sym_variable_name] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_fi] = ACTIONS(5535), + [anon_sym_elif] = ACTIONS(5535), + [anon_sym_else] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [3799] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9506), + [sym_comment] = ACTIONS(57), + }, + [3800] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9508), + [sym_comment] = ACTIONS(57), + }, + [3801] = { + [anon_sym_RBRACE] = ACTIONS(9508), + [sym_comment] = ACTIONS(57), + }, + [3802] = { + [sym_concatenation] = STATE(3974), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3974), + [anon_sym_RBRACE] = ACTIONS(9510), + [anon_sym_EQ] = ACTIONS(9512), + [anon_sym_DASH] = ACTIONS(9512), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9514), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9512), + [anon_sym_COLON_QMARK] = ACTIONS(9512), + [anon_sym_COLON_DASH] = ACTIONS(9512), + [anon_sym_PERCENT] = ACTIONS(9512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3803] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [sym_variable_name] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_fi] = ACTIONS(5579), + [anon_sym_elif] = ACTIONS(5579), + [anon_sym_else] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [3804] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9510), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3805] = { + [sym_concatenation] = STATE(3975), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3975), + [anon_sym_RBRACE] = ACTIONS(9508), + [anon_sym_EQ] = ACTIONS(9516), + [anon_sym_DASH] = ACTIONS(9516), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9516), + [anon_sym_COLON_QMARK] = ACTIONS(9516), + [anon_sym_COLON_DASH] = ACTIONS(9516), + [anon_sym_PERCENT] = ACTIONS(9516), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3806] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9508), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3807] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [sym_variable_name] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_fi] = ACTIONS(5624), + [anon_sym_elif] = ACTIONS(5624), + [anon_sym_else] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [3808] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9520), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3809] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [sym_variable_name] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_fi] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [3810] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [sym_variable_name] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_fi] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [3811] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9522), + [sym_comment] = ACTIONS(57), + }, + [3812] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9524), + [sym_comment] = ACTIONS(57), + }, + [3813] = { + [anon_sym_RBRACE] = ACTIONS(9524), + [sym_comment] = ACTIONS(57), + }, + [3814] = { + [sym_concatenation] = STATE(3981), + [sym_string] = STATE(3980), + [sym_simple_expansion] = STATE(3980), + [sym_string_expansion] = STATE(3980), + [sym_expansion] = STATE(3980), + [sym_command_substitution] = STATE(3980), + [sym_process_substitution] = STATE(3980), + [anon_sym_RBRACE] = ACTIONS(9524), + [sym__special_characters] = ACTIONS(9526), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(9528), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9528), + }, + [3815] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [sym_variable_name] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_fi] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [3816] = { + [sym_concatenation] = STATE(3984), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3984), + [sym_regex] = ACTIONS(9530), + [anon_sym_RBRACE] = ACTIONS(9532), + [anon_sym_EQ] = ACTIONS(9534), + [anon_sym_DASH] = ACTIONS(9534), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9534), + [anon_sym_COLON_QMARK] = ACTIONS(9534), + [anon_sym_COLON_DASH] = ACTIONS(9534), + [anon_sym_PERCENT] = ACTIONS(9534), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3817] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9532), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3818] = { + [sym_concatenation] = STATE(3986), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3986), + [sym_regex] = ACTIONS(9538), + [anon_sym_RBRACE] = ACTIONS(9524), + [anon_sym_EQ] = ACTIONS(9540), + [anon_sym_DASH] = ACTIONS(9540), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9542), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9540), + [anon_sym_COLON_QMARK] = ACTIONS(9540), + [anon_sym_COLON_DASH] = ACTIONS(9540), + [anon_sym_PERCENT] = ACTIONS(9540), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3819] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9524), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3820] = { + [sym_concatenation] = STATE(3988), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3988), + [anon_sym_RBRACE] = ACTIONS(9544), + [anon_sym_EQ] = ACTIONS(9546), + [anon_sym_DASH] = ACTIONS(9546), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9548), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9546), + [anon_sym_COLON_QMARK] = ACTIONS(9546), + [anon_sym_COLON_DASH] = ACTIONS(9546), + [anon_sym_PERCENT] = ACTIONS(9546), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3821] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [sym_variable_name] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_fi] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [3822] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9544), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3823] = { + [sym_concatenation] = STATE(3986), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3986), + [anon_sym_RBRACE] = ACTIONS(9524), + [anon_sym_EQ] = ACTIONS(9540), + [anon_sym_DASH] = ACTIONS(9540), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9542), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9540), + [anon_sym_COLON_QMARK] = ACTIONS(9540), + [anon_sym_COLON_DASH] = ACTIONS(9540), + [anon_sym_PERCENT] = ACTIONS(9540), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3824] = { + [sym__simple_heredoc_body] = ACTIONS(4334), + [sym__heredoc_body_beginning] = ACTIONS(4334), + [sym_file_descriptor] = ACTIONS(4334), + [sym_variable_name] = ACTIONS(4334), + [anon_sym_SEMI] = ACTIONS(4336), + [anon_sym_fi] = ACTIONS(4336), + [anon_sym_PIPE] = ACTIONS(4336), + [anon_sym_SEMI_SEMI] = ACTIONS(4334), + [anon_sym_PIPE_AMP] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4336), + [anon_sym_GT] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4334), + [anon_sym_AMP_GT] = ACTIONS(4336), + [anon_sym_AMP_GT_GT] = ACTIONS(4334), + [anon_sym_LT_AMP] = ACTIONS(4334), + [anon_sym_GT_AMP] = ACTIONS(4334), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_LT_LT_DASH] = ACTIONS(4334), + [anon_sym_LT_LT_LT] = ACTIONS(4334), + [sym__special_characters] = ACTIONS(4334), + [anon_sym_DQUOTE] = ACTIONS(4334), + [anon_sym_DOLLAR] = ACTIONS(4336), + [sym_raw_string] = ACTIONS(4334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4334), + [anon_sym_BQUOTE] = ACTIONS(4334), + [anon_sym_LT_LPAREN] = ACTIONS(4334), + [anon_sym_GT_LPAREN] = ACTIONS(4334), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4336), + [sym_word] = ACTIONS(4336), + [anon_sym_LF] = ACTIONS(4334), + [anon_sym_AMP] = ACTIONS(4336), + }, + [3825] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [sym_variable_name] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_fi] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5527), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [3826] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [sym_variable_name] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_fi] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5535), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [3827] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9550), + [sym_comment] = ACTIONS(57), + }, + [3828] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9552), + [sym_comment] = ACTIONS(57), + }, + [3829] = { + [anon_sym_RBRACE] = ACTIONS(9552), + [sym_comment] = ACTIONS(57), + }, + [3830] = { + [sym_concatenation] = STATE(3992), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3992), + [anon_sym_RBRACE] = ACTIONS(9554), + [anon_sym_EQ] = ACTIONS(9556), + [anon_sym_DASH] = ACTIONS(9556), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9558), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9556), + [anon_sym_COLON_QMARK] = ACTIONS(9556), + [anon_sym_COLON_DASH] = ACTIONS(9556), + [anon_sym_PERCENT] = ACTIONS(9556), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3831] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [sym_variable_name] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_fi] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5579), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [3832] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9554), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3833] = { + [sym_concatenation] = STATE(3993), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3993), + [anon_sym_RBRACE] = ACTIONS(9552), + [anon_sym_EQ] = ACTIONS(9560), + [anon_sym_DASH] = ACTIONS(9560), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9562), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9560), + [anon_sym_COLON_QMARK] = ACTIONS(9560), + [anon_sym_COLON_DASH] = ACTIONS(9560), + [anon_sym_PERCENT] = ACTIONS(9560), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3834] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9552), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3835] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [sym_variable_name] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_fi] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5624), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [3836] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9564), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3837] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_fi] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5527), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [3838] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_fi] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5535), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [3839] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9566), + [sym_comment] = ACTIONS(57), + }, + [3840] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9568), + [sym_comment] = ACTIONS(57), + }, + [3841] = { + [anon_sym_RBRACE] = ACTIONS(9568), + [sym_comment] = ACTIONS(57), + }, + [3842] = { + [sym_concatenation] = STATE(3998), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3998), + [anon_sym_RBRACE] = ACTIONS(9570), + [anon_sym_EQ] = ACTIONS(9572), + [anon_sym_DASH] = ACTIONS(9572), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9574), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9572), + [anon_sym_COLON_QMARK] = ACTIONS(9572), + [anon_sym_COLON_DASH] = ACTIONS(9572), + [anon_sym_PERCENT] = ACTIONS(9572), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3843] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_fi] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5579), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [3844] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9570), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3845] = { + [sym_concatenation] = STATE(3999), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(3999), + [anon_sym_RBRACE] = ACTIONS(9568), + [anon_sym_EQ] = ACTIONS(9576), + [anon_sym_DASH] = ACTIONS(9576), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9578), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9576), + [anon_sym_COLON_QMARK] = ACTIONS(9576), + [anon_sym_COLON_DASH] = ACTIONS(9576), + [anon_sym_PERCENT] = ACTIONS(9576), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3846] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9568), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3847] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_fi] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5624), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [3848] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9580), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3849] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_fi] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_EQ_TILDE] = ACTIONS(7027), + [anon_sym_EQ_EQ] = ACTIONS(7027), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3850] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_fi] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_EQ_TILDE] = ACTIONS(7031), + [anon_sym_EQ_EQ] = ACTIONS(7031), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3851] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_fi] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_EQ_TILDE] = ACTIONS(7035), + [anon_sym_EQ_EQ] = ACTIONS(7035), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3852] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9582), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3853] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9584), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3854] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_fi] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_EQ_TILDE] = ACTIONS(7071), + [anon_sym_EQ_EQ] = ACTIONS(7071), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [3855] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [sym_variable_name] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_fi] = ACTIONS(7027), + [anon_sym_elif] = ACTIONS(7027), + [anon_sym_else] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7027), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3856] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [sym_variable_name] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_fi] = ACTIONS(7031), + [anon_sym_elif] = ACTIONS(7031), + [anon_sym_else] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7031), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3857] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [sym_variable_name] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_fi] = ACTIONS(7035), + [anon_sym_elif] = ACTIONS(7035), + [anon_sym_else] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7035), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3858] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9586), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3859] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9588), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3860] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [sym_variable_name] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_fi] = ACTIONS(7071), + [anon_sym_elif] = ACTIONS(7071), + [anon_sym_else] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7071), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [3861] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_fi] = ACTIONS(7027), + [anon_sym_elif] = ACTIONS(7027), + [anon_sym_else] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7027), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3862] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_fi] = ACTIONS(7031), + [anon_sym_elif] = ACTIONS(7031), + [anon_sym_else] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7031), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3863] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_fi] = ACTIONS(7035), + [anon_sym_elif] = ACTIONS(7035), + [anon_sym_else] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7035), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3864] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9590), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3865] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9592), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3866] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_fi] = ACTIONS(7071), + [anon_sym_elif] = ACTIONS(7071), + [anon_sym_else] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7071), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [3867] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_fi] = ACTIONS(8146), + [anon_sym_elif] = ACTIONS(8146), + [anon_sym_else] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_EQ_TILDE] = ACTIONS(8146), + [anon_sym_EQ_EQ] = ACTIONS(8146), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [3868] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_fi] = ACTIONS(8150), + [anon_sym_elif] = ACTIONS(8150), + [anon_sym_else] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_EQ_TILDE] = ACTIONS(8150), + [anon_sym_EQ_EQ] = ACTIONS(8150), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [3869] = { + [sym__simple_heredoc_body] = ACTIONS(2646), + [sym__heredoc_body_beginning] = ACTIONS(2646), + [sym_file_descriptor] = ACTIONS(2646), + [sym_variable_name] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_esac] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_SEMI_SEMI] = ACTIONS(2646), + [anon_sym_PIPE_AMP] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_PIPE_PIPE] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_GT] = ACTIONS(2648), + [anon_sym_GT_GT] = ACTIONS(2646), + [anon_sym_AMP_GT] = ACTIONS(2648), + [anon_sym_AMP_GT_GT] = ACTIONS(2646), + [anon_sym_LT_AMP] = ACTIONS(2646), + [anon_sym_GT_AMP] = ACTIONS(2646), + [anon_sym_LT_LT] = ACTIONS(2648), + [anon_sym_LT_LT_DASH] = ACTIONS(2646), + [anon_sym_LT_LT_LT] = ACTIONS(2646), + [sym__special_characters] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2648), + [sym_raw_string] = ACTIONS(2646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2646), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2646), + [anon_sym_BQUOTE] = ACTIONS(2646), + [anon_sym_LT_LPAREN] = ACTIONS(2646), + [anon_sym_GT_LPAREN] = ACTIONS(2646), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2648), + [anon_sym_LF] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2648), + }, + [3870] = { + [sym_concatenation] = STATE(1243), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1243), + [anon_sym_RPAREN] = ACTIONS(9594), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [3871] = { + [sym_string] = STATE(4008), + [sym_simple_expansion] = STATE(4008), + [sym_string_expansion] = STATE(4008), + [sym_expansion] = STATE(4008), + [sym_command_substitution] = STATE(4008), + [sym_process_substitution] = STATE(4008), + [sym__special_characters] = ACTIONS(9596), + [anon_sym_DQUOTE] = ACTIONS(8673), + [anon_sym_DOLLAR] = ACTIONS(8675), + [sym_raw_string] = ACTIONS(9596), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8679), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8681), + [anon_sym_BQUOTE] = ACTIONS(8683), + [anon_sym_LT_LPAREN] = ACTIONS(8685), + [anon_sym_GT_LPAREN] = ACTIONS(8685), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9596), + }, + [3872] = { + [aux_sym_concatenation_repeat1] = STATE(4009), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(9182), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_esac] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym__special_characters] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1045), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [3873] = { + [sym__simple_heredoc_body] = ACTIONS(1047), + [sym__heredoc_body_beginning] = ACTIONS(1047), + [sym_file_descriptor] = ACTIONS(1047), + [sym__concat] = ACTIONS(1047), + [sym_variable_name] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_esac] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_SEMI_SEMI] = ACTIONS(1047), + [anon_sym_PIPE_AMP] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_AMP_GT] = ACTIONS(1049), + [anon_sym_AMP_GT_GT] = ACTIONS(1047), + [anon_sym_LT_AMP] = ACTIONS(1047), + [anon_sym_GT_AMP] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_LT_LT_DASH] = ACTIONS(1047), + [anon_sym_LT_LT_LT] = ACTIONS(1047), + [sym__special_characters] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LT_LPAREN] = ACTIONS(1047), + [anon_sym_GT_LPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1049), + [anon_sym_LF] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + }, + [3874] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(9598), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [3875] = { + [sym_simple_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [aux_sym_string_repeat1] = STATE(571), + [anon_sym_DQUOTE] = ACTIONS(9598), + [anon_sym_DOLLAR] = ACTIONS(9600), + [sym__string_content] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(341), + [sym_comment] = ACTIONS(343), + }, + [3876] = { + [sym__simple_heredoc_body] = ACTIONS(1081), + [sym__heredoc_body_beginning] = ACTIONS(1081), + [sym_file_descriptor] = ACTIONS(1081), + [sym__concat] = ACTIONS(1081), + [sym_variable_name] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_esac] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1083), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_LT_LT_DASH] = ACTIONS(1081), + [anon_sym_LT_LT_LT] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1083), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1083), + [anon_sym_LF] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + }, + [3877] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = 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), + }, + [3878] = { + [sym__simple_heredoc_body] = ACTIONS(1089), + [sym__heredoc_body_beginning] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1089), + [sym__concat] = ACTIONS(1089), + [sym_variable_name] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_esac] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_SEMI_SEMI] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_AMP_AMP] = ACTIONS(1089), + [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_AMP_GT] = ACTIONS(1091), + [anon_sym_AMP_GT_GT] = ACTIONS(1089), + [anon_sym_LT_AMP] = ACTIONS(1089), + [anon_sym_GT_AMP] = ACTIONS(1089), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_LT_LT_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1089), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1091), + [anon_sym_LF] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + }, + [3879] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(9602), + [sym_comment] = ACTIONS(57), + }, + [3880] = { + [sym_subscript] = STATE(4015), + [sym_variable_name] = ACTIONS(9604), + [anon_sym_DASH] = ACTIONS(9606), + [anon_sym_DOLLAR] = ACTIONS(9606), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(9608), + [anon_sym_STAR] = ACTIONS(9610), + [anon_sym_AT] = ACTIONS(9610), + [anon_sym_QMARK] = ACTIONS(9610), + [anon_sym_0] = ACTIONS(9608), + [anon_sym__] = ACTIONS(9608), + }, + [3881] = { + [sym_concatenation] = STATE(4018), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4018), + [anon_sym_RBRACE] = ACTIONS(9612), + [anon_sym_EQ] = ACTIONS(9614), + [anon_sym_DASH] = ACTIONS(9614), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9616), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(9618), + [anon_sym_COLON] = ACTIONS(9614), + [anon_sym_COLON_QMARK] = ACTIONS(9614), + [anon_sym_COLON_DASH] = ACTIONS(9614), + [anon_sym_PERCENT] = ACTIONS(9614), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3882] = { + [sym_concatenation] = STATE(4021), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4021), + [anon_sym_RBRACE] = ACTIONS(9620), + [anon_sym_EQ] = ACTIONS(9622), + [anon_sym_DASH] = ACTIONS(9622), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(9626), + [anon_sym_COLON] = ACTIONS(9622), + [anon_sym_COLON_QMARK] = ACTIONS(9622), + [anon_sym_COLON_DASH] = ACTIONS(9622), + [anon_sym_PERCENT] = ACTIONS(9622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3883] = { + [anon_sym_RPAREN] = ACTIONS(9628), + [sym_comment] = ACTIONS(57), + }, + [3884] = { + [anon_sym_BQUOTE] = ACTIONS(9628), + [sym_comment] = ACTIONS(57), + }, + [3885] = { + [anon_sym_RPAREN] = ACTIONS(9630), + [sym_comment] = ACTIONS(57), + }, + [3886] = { + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_esac] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1373), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [3887] = { + [sym_concatenation] = STATE(4025), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(4025), + [anon_sym_RPAREN] = ACTIONS(9632), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [3888] = { + [aux_sym_concatenation_repeat1] = STATE(3649), + [sym__simple_heredoc_body] = ACTIONS(1393), + [sym__heredoc_body_beginning] = ACTIONS(1393), + [sym_file_descriptor] = ACTIONS(1393), + [sym__concat] = ACTIONS(8689), + [sym_variable_name] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_esac] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_SEMI_SEMI] = ACTIONS(1393), + [anon_sym_PIPE_AMP] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_AMP_GT] = ACTIONS(1397), + [anon_sym_AMP_GT_GT] = ACTIONS(1393), + [anon_sym_LT_AMP] = ACTIONS(1393), + [anon_sym_GT_AMP] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_LT_LT_DASH] = ACTIONS(1393), + [anon_sym_LT_LT_LT] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1397), + [sym_raw_string] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1393), + [anon_sym_GT_LPAREN] = ACTIONS(1393), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1397), + [sym_word] = ACTIONS(1397), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1397), + }, + [3889] = { + [aux_sym_concatenation_repeat1] = STATE(3649), + [sym__simple_heredoc_body] = ACTIONS(1371), + [sym__heredoc_body_beginning] = ACTIONS(1371), + [sym_file_descriptor] = ACTIONS(1371), + [sym__concat] = ACTIONS(8689), + [sym_variable_name] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_esac] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_AMP_GT] = ACTIONS(1373), + [anon_sym_AMP_GT_GT] = ACTIONS(1371), + [anon_sym_LT_AMP] = ACTIONS(1371), + [anon_sym_GT_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_LT_LT_DASH] = ACTIONS(1371), + [anon_sym_LT_LT_LT] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_LT_LPAREN] = ACTIONS(1371), + [anon_sym_GT_LPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1373), + [sym_word] = ACTIONS(1373), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + }, + [3890] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_esac] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3891] = { + [aux_sym_concatenation_repeat1] = STATE(3891), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(9634), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_esac] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3892] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [sym_variable_name] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_esac] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2301), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [3893] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(9637), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [3894] = { + [sym_concatenation] = STATE(4030), + [sym_string] = STATE(4029), + [sym_simple_expansion] = STATE(4029), + [sym_string_expansion] = STATE(4029), + [sym_expansion] = STATE(4029), + [sym_command_substitution] = STATE(4029), + [sym_process_substitution] = STATE(4029), + [anon_sym_RBRACE] = ACTIONS(9639), + [sym__special_characters] = ACTIONS(9641), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(9643), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9643), + }, + [3895] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(9645), + [sym_comment] = ACTIONS(57), + }, + [3896] = { + [sym_concatenation] = STATE(4034), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4034), + [anon_sym_RBRACE] = ACTIONS(9647), + [anon_sym_EQ] = ACTIONS(9649), + [anon_sym_DASH] = ACTIONS(9649), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9651), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(9653), + [anon_sym_COLON] = ACTIONS(9649), + [anon_sym_COLON_QMARK] = ACTIONS(9649), + [anon_sym_COLON_DASH] = ACTIONS(9649), + [anon_sym_PERCENT] = ACTIONS(9649), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3897] = { + [sym_concatenation] = STATE(4036), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4036), + [anon_sym_RBRACE] = ACTIONS(9639), + [anon_sym_EQ] = ACTIONS(9655), + [anon_sym_DASH] = ACTIONS(9655), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(9659), + [anon_sym_COLON] = ACTIONS(9655), + [anon_sym_COLON_QMARK] = ACTIONS(9655), + [anon_sym_COLON_DASH] = ACTIONS(9655), + [anon_sym_PERCENT] = ACTIONS(9655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3898] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [sym_variable_name] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_esac] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2394), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [3899] = { + [sym_concatenation] = STATE(4039), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4039), + [sym_regex] = ACTIONS(9661), + [anon_sym_RBRACE] = ACTIONS(9663), + [anon_sym_EQ] = ACTIONS(9665), + [anon_sym_DASH] = ACTIONS(9665), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9665), + [anon_sym_COLON_QMARK] = ACTIONS(9665), + [anon_sym_COLON_DASH] = ACTIONS(9665), + [anon_sym_PERCENT] = ACTIONS(9665), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3900] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9663), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3901] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [sym_variable_name] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_esac] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2442), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [3902] = { + [sym_concatenation] = STATE(4036), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4036), + [sym_regex] = ACTIONS(9669), + [anon_sym_RBRACE] = ACTIONS(9639), + [anon_sym_EQ] = ACTIONS(9655), + [anon_sym_DASH] = ACTIONS(9655), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9655), + [anon_sym_COLON_QMARK] = ACTIONS(9655), + [anon_sym_COLON_DASH] = ACTIONS(9655), + [anon_sym_PERCENT] = ACTIONS(9655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3903] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9639), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3904] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [sym_variable_name] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_esac] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2448), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [3905] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [sym_variable_name] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_esac] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2486), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [3906] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_esac] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3907] = { + [aux_sym_concatenation_repeat1] = STATE(3907), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(9671), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_esac] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2294), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [3908] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_esac] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2301), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [3909] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(9674), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [3910] = { + [sym_concatenation] = STATE(4045), + [sym_string] = STATE(4044), + [sym_simple_expansion] = STATE(4044), + [sym_string_expansion] = STATE(4044), + [sym_expansion] = STATE(4044), + [sym_command_substitution] = STATE(4044), + [sym_process_substitution] = STATE(4044), + [anon_sym_RBRACE] = ACTIONS(9676), + [sym__special_characters] = ACTIONS(9678), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(9680), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9680), + }, + [3911] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(9682), + [sym_comment] = ACTIONS(57), + }, + [3912] = { + [sym_concatenation] = STATE(4049), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4049), + [anon_sym_RBRACE] = ACTIONS(9684), + [anon_sym_EQ] = ACTIONS(9686), + [anon_sym_DASH] = ACTIONS(9686), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(9690), + [anon_sym_COLON] = ACTIONS(9686), + [anon_sym_COLON_QMARK] = ACTIONS(9686), + [anon_sym_COLON_DASH] = ACTIONS(9686), + [anon_sym_PERCENT] = ACTIONS(9686), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3913] = { + [sym_concatenation] = STATE(4051), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4051), + [anon_sym_RBRACE] = ACTIONS(9676), + [anon_sym_EQ] = ACTIONS(9692), + [anon_sym_DASH] = ACTIONS(9692), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(9696), + [anon_sym_COLON] = ACTIONS(9692), + [anon_sym_COLON_QMARK] = ACTIONS(9692), + [anon_sym_COLON_DASH] = ACTIONS(9692), + [anon_sym_PERCENT] = ACTIONS(9692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3914] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_esac] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2394), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [3915] = { + [sym_concatenation] = STATE(4054), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4054), + [sym_regex] = ACTIONS(9698), + [anon_sym_RBRACE] = ACTIONS(9700), + [anon_sym_EQ] = ACTIONS(9702), + [anon_sym_DASH] = ACTIONS(9702), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9702), + [anon_sym_COLON_QMARK] = ACTIONS(9702), + [anon_sym_COLON_DASH] = ACTIONS(9702), + [anon_sym_PERCENT] = ACTIONS(9702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3916] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9700), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3917] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_esac] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2442), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [3918] = { + [sym_concatenation] = STATE(4051), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4051), + [sym_regex] = ACTIONS(9706), + [anon_sym_RBRACE] = ACTIONS(9676), + [anon_sym_EQ] = ACTIONS(9692), + [anon_sym_DASH] = ACTIONS(9692), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9692), + [anon_sym_COLON_QMARK] = ACTIONS(9692), + [anon_sym_COLON_DASH] = ACTIONS(9692), + [anon_sym_PERCENT] = ACTIONS(9692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3919] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9676), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3920] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_esac] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2448), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [3921] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_esac] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2486), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [3922] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_esac] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_EQ_TILDE] = ACTIONS(4003), + [anon_sym_EQ_EQ] = ACTIONS(4003), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [3923] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_esac] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_EQ_TILDE] = ACTIONS(4017), + [anon_sym_EQ_EQ] = ACTIONS(4017), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [3924] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9708), + [sym_comment] = ACTIONS(57), + }, + [3925] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9710), + [sym_comment] = ACTIONS(57), + }, + [3926] = { + [anon_sym_RBRACE] = ACTIONS(9710), + [sym_comment] = ACTIONS(57), + }, + [3927] = { + [sym_concatenation] = STATE(4060), + [sym_string] = STATE(4059), + [sym_simple_expansion] = STATE(4059), + [sym_string_expansion] = STATE(4059), + [sym_expansion] = STATE(4059), + [sym_command_substitution] = STATE(4059), + [sym_process_substitution] = STATE(4059), + [anon_sym_RBRACE] = ACTIONS(9710), + [sym__special_characters] = ACTIONS(9712), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(9714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9714), + }, + [3928] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_esac] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_EQ_TILDE] = ACTIONS(4053), + [anon_sym_EQ_EQ] = ACTIONS(4053), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [3929] = { + [sym_concatenation] = STATE(4063), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4063), + [sym_regex] = ACTIONS(9716), + [anon_sym_RBRACE] = ACTIONS(9718), + [anon_sym_EQ] = ACTIONS(9720), + [anon_sym_DASH] = ACTIONS(9720), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9720), + [anon_sym_COLON_QMARK] = ACTIONS(9720), + [anon_sym_COLON_DASH] = ACTIONS(9720), + [anon_sym_PERCENT] = ACTIONS(9720), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3930] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9718), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3931] = { + [sym_concatenation] = STATE(4065), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4065), + [sym_regex] = ACTIONS(9724), + [anon_sym_RBRACE] = ACTIONS(9710), + [anon_sym_EQ] = ACTIONS(9726), + [anon_sym_DASH] = ACTIONS(9726), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9726), + [anon_sym_COLON_QMARK] = ACTIONS(9726), + [anon_sym_COLON_DASH] = ACTIONS(9726), + [anon_sym_PERCENT] = ACTIONS(9726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3932] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9710), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3933] = { + [sym_concatenation] = STATE(4067), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4067), + [anon_sym_RBRACE] = ACTIONS(9730), + [anon_sym_EQ] = ACTIONS(9732), + [anon_sym_DASH] = ACTIONS(9732), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9732), + [anon_sym_COLON_QMARK] = ACTIONS(9732), + [anon_sym_COLON_DASH] = ACTIONS(9732), + [anon_sym_PERCENT] = ACTIONS(9732), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3934] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_esac] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_EQ_TILDE] = ACTIONS(4109), + [anon_sym_EQ_EQ] = ACTIONS(4109), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [3935] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9730), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3936] = { + [sym_concatenation] = STATE(4065), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4065), + [anon_sym_RBRACE] = ACTIONS(9710), + [anon_sym_EQ] = ACTIONS(9726), + [anon_sym_DASH] = ACTIONS(9726), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9726), + [anon_sym_COLON_QMARK] = ACTIONS(9726), + [anon_sym_COLON_DASH] = ACTIONS(9726), + [anon_sym_PERCENT] = ACTIONS(9726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3937] = { + [aux_sym_concatenation_repeat1] = STATE(3939), + [sym__simple_heredoc_body] = ACTIONS(1353), + [sym__heredoc_body_beginning] = ACTIONS(1353), + [sym_file_descriptor] = ACTIONS(1353), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_esac] = ACTIONS(1353), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_SEMI_SEMI] = ACTIONS(1353), + [anon_sym_PIPE_AMP] = ACTIONS(1353), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_GT] = ACTIONS(1355), + [anon_sym_GT_GT] = ACTIONS(1353), + [anon_sym_AMP_GT] = ACTIONS(1355), + [anon_sym_AMP_GT_GT] = ACTIONS(1353), + [anon_sym_LT_AMP] = ACTIONS(1353), + [anon_sym_GT_AMP] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(1355), + [anon_sym_LT_LT_DASH] = ACTIONS(1353), + [anon_sym_LT_LT_LT] = ACTIONS(1353), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1355), + }, + [3938] = { + [aux_sym_concatenation_repeat1] = STATE(3939), + [sym__simple_heredoc_body] = ACTIONS(1357), + [sym__heredoc_body_beginning] = ACTIONS(1357), + [sym_file_descriptor] = ACTIONS(1357), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_esac] = ACTIONS(1357), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_SEMI_SEMI] = ACTIONS(1357), + [anon_sym_PIPE_AMP] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1357), + [anon_sym_AMP_GT] = ACTIONS(1359), + [anon_sym_AMP_GT_GT] = ACTIONS(1357), + [anon_sym_LT_AMP] = ACTIONS(1357), + [anon_sym_GT_AMP] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_LT_LT_DASH] = ACTIONS(1357), + [anon_sym_LT_LT_LT] = ACTIONS(1357), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), + }, + [3939] = { + [aux_sym_concatenation_repeat1] = STATE(4068), + [sym__simple_heredoc_body] = ACTIONS(1043), + [sym__heredoc_body_beginning] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [sym__concat] = ACTIONS(6205), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_esac] = ACTIONS(1043), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(1043), + [anon_sym_PIPE_AMP] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1045), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1043), + [anon_sym_LT_LT_LT] = ACTIONS(1043), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + }, + [3940] = { + [sym_file_descriptor] = ACTIONS(2536), + [sym_variable_name] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_LPAREN_LPAREN] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_esac] = ACTIONS(7469), + [anon_sym_SEMI_SEMI] = ACTIONS(4266), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2540), + [anon_sym_typeset] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_readonly] = ACTIONS(2540), + [anon_sym_local] = ACTIONS(2540), + [anon_sym_unset] = ACTIONS(2540), + [anon_sym_unsetenv] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_GT] = ACTIONS(2540), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_AMP_GT] = ACTIONS(2540), + [anon_sym_AMP_GT_GT] = ACTIONS(2536), + [anon_sym_LT_AMP] = ACTIONS(2536), + [anon_sym_GT_AMP] = ACTIONS(2536), + [sym__special_characters] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2536), + [anon_sym_DOLLAR] = ACTIONS(2540), + [sym_raw_string] = ACTIONS(2536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2536), + [anon_sym_BQUOTE] = ACTIONS(2536), + [anon_sym_LT_LPAREN] = ACTIONS(2536), + [anon_sym_GT_LPAREN] = ACTIONS(2536), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2540), + }, + [3941] = { + [sym__special_characters] = ACTIONS(8779), + [anon_sym_DQUOTE] = ACTIONS(8779), + [anon_sym_DOLLAR] = ACTIONS(8781), + [sym_raw_string] = ACTIONS(8779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8779), + [anon_sym_BQUOTE] = ACTIONS(8779), + [anon_sym_LT_LPAREN] = ACTIONS(8779), + [anon_sym_GT_LPAREN] = ACTIONS(8779), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8779), + }, + [3942] = { + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_SEMI_SEMI] = ACTIONS(1215), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + }, + [3943] = { + [sym_file_redirect] = STATE(1219), + [sym_heredoc_redirect] = STATE(1219), + [sym_heredoc_body] = STATE(4069), + [sym_herestring_redirect] = STATE(1219), + [aux_sym_redirected_statement_repeat1] = STATE(1219), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(2610), + [anon_sym_SEMI] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_SEMI_SEMI] = ACTIONS(1215), + [anon_sym_PIPE_AMP] = ACTIONS(2618), + [anon_sym_AMP_AMP] = ACTIONS(2620), + [anon_sym_PIPE_PIPE] = ACTIONS(2620), + [anon_sym_LT] = ACTIONS(2622), + [anon_sym_GT] = ACTIONS(2622), + [anon_sym_GT_GT] = ACTIONS(2624), + [anon_sym_AMP_GT] = ACTIONS(2622), + [anon_sym_AMP_GT_GT] = ACTIONS(2624), + [anon_sym_LT_AMP] = ACTIONS(2624), + [anon_sym_GT_AMP] = ACTIONS(2624), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(2626), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1255), + }, + [3944] = { + [sym_file_redirect] = STATE(1219), + [sym_heredoc_redirect] = STATE(1219), + [sym_heredoc_body] = STATE(4069), + [sym_herestring_redirect] = STATE(1219), + [aux_sym_redirected_statement_repeat1] = STATE(1219), + [sym__simple_heredoc_body] = ACTIONS(387), + [sym__heredoc_body_beginning] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(427), + [sym_variable_name] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_SEMI_SEMI] = ACTIONS(1215), + [anon_sym_PIPE_AMP] = ACTIONS(2618), + [anon_sym_AMP_AMP] = ACTIONS(2620), + [anon_sym_PIPE_PIPE] = ACTIONS(2620), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(427), + [anon_sym_LT_AMP] = ACTIONS(427), + [anon_sym_GT_AMP] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(2626), + [sym__special_characters] = ACTIONS(427), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [sym_raw_string] = ACTIONS(427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(427), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(427), + [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1255), + }, + [3945] = { + [anon_sym_SEMI_SEMI] = ACTIONS(9736), + [sym_comment] = ACTIONS(57), + }, + [3946] = { + [sym__special_characters] = ACTIONS(8815), + [anon_sym_DQUOTE] = ACTIONS(8815), + [anon_sym_DOLLAR] = ACTIONS(8817), + [sym_raw_string] = ACTIONS(8815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8815), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8815), + [anon_sym_BQUOTE] = ACTIONS(8815), + [anon_sym_LT_LPAREN] = ACTIONS(8815), + [anon_sym_GT_LPAREN] = ACTIONS(8815), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8815), + }, + [3947] = { + [anon_sym_SEMI_SEMI] = ACTIONS(9738), + [sym_comment] = ACTIONS(57), + }, + [3948] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [sym_variable_name] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_RBRACE] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8146), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [3949] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [sym_variable_name] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_RBRACE] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8150), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [3950] = { + [sym__simple_heredoc_body] = ACTIONS(8899), + [sym__heredoc_body_beginning] = ACTIONS(8899), + [sym_file_descriptor] = ACTIONS(8899), + [anon_sym_SEMI] = ACTIONS(8901), + [anon_sym_PIPE] = ACTIONS(8901), + [anon_sym_SEMI_SEMI] = ACTIONS(8899), + [anon_sym_RBRACE] = ACTIONS(8899), + [anon_sym_PIPE_AMP] = ACTIONS(8899), + [anon_sym_AMP_AMP] = ACTIONS(8899), + [anon_sym_PIPE_PIPE] = ACTIONS(8899), + [anon_sym_LT] = ACTIONS(8901), + [anon_sym_GT] = ACTIONS(8901), + [anon_sym_GT_GT] = ACTIONS(8899), + [anon_sym_AMP_GT] = ACTIONS(8901), + [anon_sym_AMP_GT_GT] = ACTIONS(8899), + [anon_sym_LT_AMP] = ACTIONS(8899), + [anon_sym_GT_AMP] = ACTIONS(8899), + [anon_sym_LT_LT] = ACTIONS(8901), + [anon_sym_LT_LT_DASH] = ACTIONS(8899), + [anon_sym_LT_LT_LT] = ACTIONS(8899), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8899), + [anon_sym_AMP] = ACTIONS(8901), + }, + [3951] = { + [sym_do_group] = STATE(4072), + [sym_compound_statement] = STATE(4072), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(191), + [sym_comment] = ACTIONS(57), + }, + [3952] = { + [sym__concat] = ACTIONS(8144), + [anon_sym_RBRACE] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + }, + [3953] = { + [sym__concat] = ACTIONS(8148), + [anon_sym_RBRACE] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + }, + [3954] = { + [sym_file_descriptor] = ACTIONS(9462), + [anon_sym_SEMI] = ACTIONS(9464), + [anon_sym_PIPE] = ACTIONS(9464), + [anon_sym_SEMI_SEMI] = ACTIONS(9462), + [anon_sym_PIPE_AMP] = ACTIONS(9462), + [anon_sym_AMP_AMP] = ACTIONS(9462), + [anon_sym_PIPE_PIPE] = ACTIONS(9462), + [anon_sym_LT] = ACTIONS(9464), + [anon_sym_GT] = ACTIONS(9464), + [anon_sym_GT_GT] = ACTIONS(9462), + [anon_sym_AMP_GT] = ACTIONS(9464), + [anon_sym_AMP_GT_GT] = ACTIONS(9462), + [anon_sym_LT_AMP] = ACTIONS(9462), + [anon_sym_GT_AMP] = ACTIONS(9462), + [anon_sym_LT_LT] = ACTIONS(9464), + [anon_sym_LT_LT_DASH] = ACTIONS(9462), + [anon_sym_LT_LT_LT] = ACTIONS(9462), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(9462), + [anon_sym_AMP] = ACTIONS(9464), + }, + [3955] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [sym_variable_name] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_done] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3956] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [sym_variable_name] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_done] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3957] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [sym_variable_name] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_done] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3958] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9740), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3959] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9742), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3960] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [sym_variable_name] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_done] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [3961] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [sym_variable_name] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_done] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8146), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [3962] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [sym_variable_name] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_done] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8150), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [3963] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_done] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8146), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [3964] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_done] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8150), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [3965] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_done] = ACTIONS(7025), + [anon_sym_fi] = ACTIONS(7025), + [anon_sym_elif] = ACTIONS(7025), + [anon_sym_else] = ACTIONS(7025), + [anon_sym_esac] = ACTIONS(7025), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3966] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_done] = ACTIONS(7029), + [anon_sym_fi] = ACTIONS(7029), + [anon_sym_elif] = ACTIONS(7029), + [anon_sym_else] = ACTIONS(7029), + [anon_sym_esac] = ACTIONS(7029), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3967] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_done] = ACTIONS(7033), + [anon_sym_fi] = ACTIONS(7033), + [anon_sym_elif] = ACTIONS(7033), + [anon_sym_else] = ACTIONS(7033), + [anon_sym_esac] = ACTIONS(7033), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3968] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9744), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3969] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9746), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3970] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_done] = ACTIONS(7069), + [anon_sym_fi] = ACTIONS(7069), + [anon_sym_elif] = ACTIONS(7069), + [anon_sym_else] = ACTIONS(7069), + [anon_sym_esac] = ACTIONS(7069), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [3971] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [sym_variable_name] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_fi] = ACTIONS(7027), + [anon_sym_elif] = ACTIONS(7027), + [anon_sym_else] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3972] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [sym_variable_name] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_fi] = ACTIONS(7031), + [anon_sym_elif] = ACTIONS(7031), + [anon_sym_else] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3973] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [sym_variable_name] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_fi] = ACTIONS(7035), + [anon_sym_elif] = ACTIONS(7035), + [anon_sym_else] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3974] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9748), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3975] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9750), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3976] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [sym_variable_name] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_fi] = ACTIONS(7071), + [anon_sym_elif] = ACTIONS(7071), + [anon_sym_else] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [3977] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [sym_variable_name] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_fi] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [3978] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [sym_variable_name] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_fi] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [3979] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9752), + [sym_comment] = ACTIONS(57), + }, + [3980] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9754), + [sym_comment] = ACTIONS(57), + }, + [3981] = { + [anon_sym_RBRACE] = ACTIONS(9754), + [sym_comment] = ACTIONS(57), + }, + [3982] = { + [sym_concatenation] = STATE(4082), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4082), + [anon_sym_RBRACE] = ACTIONS(9756), + [anon_sym_EQ] = ACTIONS(9758), + [anon_sym_DASH] = ACTIONS(9758), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9760), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9758), + [anon_sym_COLON_QMARK] = ACTIONS(9758), + [anon_sym_COLON_DASH] = ACTIONS(9758), + [anon_sym_PERCENT] = ACTIONS(9758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3983] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [sym_variable_name] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_fi] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [3984] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9756), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3985] = { + [sym_concatenation] = STATE(4083), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4083), + [anon_sym_RBRACE] = ACTIONS(9754), + [anon_sym_EQ] = ACTIONS(9762), + [anon_sym_DASH] = ACTIONS(9762), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9762), + [anon_sym_COLON_QMARK] = ACTIONS(9762), + [anon_sym_COLON_DASH] = ACTIONS(9762), + [anon_sym_PERCENT] = ACTIONS(9762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3986] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9754), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3987] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [sym_variable_name] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_fi] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [3988] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9766), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3989] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [sym_variable_name] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_fi] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7027), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3990] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [sym_variable_name] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_fi] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7031), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3991] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [sym_variable_name] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_fi] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7035), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3992] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9768), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3993] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9770), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3994] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [sym_variable_name] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_fi] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7071), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [3995] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_fi] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7027), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [3996] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_fi] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7031), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [3997] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_fi] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7035), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [3998] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9772), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [3999] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9774), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4000] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_fi] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7071), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [4001] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_fi] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_EQ_TILDE] = ACTIONS(8146), + [anon_sym_EQ_EQ] = ACTIONS(8146), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [4002] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_fi] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_EQ_TILDE] = ACTIONS(8150), + [anon_sym_EQ_EQ] = ACTIONS(8150), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [4003] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [sym_variable_name] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_fi] = ACTIONS(8146), + [anon_sym_elif] = ACTIONS(8146), + [anon_sym_else] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8146), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [4004] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [sym_variable_name] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_fi] = ACTIONS(8150), + [anon_sym_elif] = ACTIONS(8150), + [anon_sym_else] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8150), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [4005] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_fi] = ACTIONS(8146), + [anon_sym_elif] = ACTIONS(8146), + [anon_sym_else] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8146), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [4006] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_fi] = ACTIONS(8150), + [anon_sym_elif] = ACTIONS(8150), + [anon_sym_else] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8150), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [4007] = { + [sym__simple_heredoc_body] = ACTIONS(4334), + [sym__heredoc_body_beginning] = ACTIONS(4334), + [sym_file_descriptor] = ACTIONS(4334), + [sym_variable_name] = ACTIONS(4334), + [anon_sym_SEMI] = ACTIONS(4336), + [anon_sym_esac] = ACTIONS(4336), + [anon_sym_PIPE] = ACTIONS(4336), + [anon_sym_SEMI_SEMI] = ACTIONS(4334), + [anon_sym_PIPE_AMP] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4336), + [anon_sym_GT] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4334), + [anon_sym_AMP_GT] = ACTIONS(4336), + [anon_sym_AMP_GT_GT] = ACTIONS(4334), + [anon_sym_LT_AMP] = ACTIONS(4334), + [anon_sym_GT_AMP] = ACTIONS(4334), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_LT_LT_DASH] = ACTIONS(4334), + [anon_sym_LT_LT_LT] = ACTIONS(4334), + [sym__special_characters] = ACTIONS(4334), + [anon_sym_DQUOTE] = ACTIONS(4334), + [anon_sym_DOLLAR] = ACTIONS(4336), + [sym_raw_string] = ACTIONS(4334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4334), + [anon_sym_BQUOTE] = ACTIONS(4334), + [anon_sym_LT_LPAREN] = ACTIONS(4334), + [anon_sym_GT_LPAREN] = ACTIONS(4334), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4336), + [anon_sym_LF] = ACTIONS(4334), + [anon_sym_AMP] = ACTIONS(4336), + }, + [4008] = { + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(2292), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_esac] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [4009] = { + [aux_sym_concatenation_repeat1] = STATE(4009), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(9776), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_esac] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym__special_characters] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [4010] = { + [sym__simple_heredoc_body] = ACTIONS(2299), + [sym__heredoc_body_beginning] = ACTIONS(2299), + [sym_file_descriptor] = ACTIONS(2299), + [sym__concat] = ACTIONS(2299), + [sym_variable_name] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_esac] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_SEMI_SEMI] = ACTIONS(2299), + [anon_sym_PIPE_AMP] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_PIPE_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_AMP_GT] = ACTIONS(2301), + [anon_sym_AMP_GT_GT] = ACTIONS(2299), + [anon_sym_LT_AMP] = ACTIONS(2299), + [anon_sym_GT_AMP] = ACTIONS(2299), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_DASH] = ACTIONS(2299), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [sym_raw_string] = ACTIONS(2299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), + [anon_sym_BQUOTE] = ACTIONS(2299), + [anon_sym_LT_LPAREN] = ACTIONS(2299), + [anon_sym_GT_LPAREN] = ACTIONS(2299), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + }, + [4011] = { + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(9779), + [anon_sym_DOLLAR] = ACTIONS(1055), + [sym__string_content] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1051), + [sym_comment] = ACTIONS(343), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + }, + [4012] = { + [sym_concatenation] = STATE(4093), + [sym_string] = STATE(4092), + [sym_simple_expansion] = STATE(4092), + [sym_string_expansion] = STATE(4092), + [sym_expansion] = STATE(4092), + [sym_command_substitution] = STATE(4092), + [sym_process_substitution] = STATE(4092), + [anon_sym_RBRACE] = ACTIONS(9781), + [sym__special_characters] = ACTIONS(9783), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(9785), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9785), + }, + [4013] = { + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(9787), + [sym_comment] = ACTIONS(57), + }, + [4014] = { + [sym_concatenation] = STATE(4097), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4097), + [anon_sym_RBRACE] = ACTIONS(9789), + [anon_sym_EQ] = ACTIONS(9791), + [anon_sym_DASH] = ACTIONS(9791), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9793), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(9795), + [anon_sym_COLON] = ACTIONS(9791), + [anon_sym_COLON_QMARK] = ACTIONS(9791), + [anon_sym_COLON_DASH] = ACTIONS(9791), + [anon_sym_PERCENT] = ACTIONS(9791), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4015] = { + [sym_concatenation] = STATE(4099), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4099), + [anon_sym_RBRACE] = ACTIONS(9781), + [anon_sym_EQ] = ACTIONS(9797), + [anon_sym_DASH] = ACTIONS(9797), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9799), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(9801), + [anon_sym_COLON] = ACTIONS(9797), + [anon_sym_COLON_QMARK] = ACTIONS(9797), + [anon_sym_COLON_DASH] = ACTIONS(9797), + [anon_sym_PERCENT] = ACTIONS(9797), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4016] = { + [sym__simple_heredoc_body] = ACTIONS(2392), + [sym__heredoc_body_beginning] = ACTIONS(2392), + [sym_file_descriptor] = ACTIONS(2392), + [sym__concat] = ACTIONS(2392), + [sym_variable_name] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_esac] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_SEMI_SEMI] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2394), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT_LT] = ACTIONS(2392), + [sym__special_characters] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2394), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2394), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2394), + }, + [4017] = { + [sym_concatenation] = STATE(4102), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4102), + [sym_regex] = ACTIONS(9803), + [anon_sym_RBRACE] = ACTIONS(9805), + [anon_sym_EQ] = ACTIONS(9807), + [anon_sym_DASH] = ACTIONS(9807), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9807), + [anon_sym_COLON_QMARK] = ACTIONS(9807), + [anon_sym_COLON_DASH] = ACTIONS(9807), + [anon_sym_PERCENT] = ACTIONS(9807), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4018] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9805), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4019] = { + [sym__simple_heredoc_body] = ACTIONS(2440), + [sym__heredoc_body_beginning] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(2440), + [sym__concat] = ACTIONS(2440), + [sym_variable_name] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_esac] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(2440), + [anon_sym_LT_AMP] = ACTIONS(2440), + [anon_sym_GT_AMP] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(2440), + [anon_sym_LT_LT_LT] = ACTIONS(2440), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2442), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2440), + [anon_sym_LT_LPAREN] = ACTIONS(2440), + [anon_sym_GT_LPAREN] = ACTIONS(2440), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2442), + }, + [4020] = { + [sym_concatenation] = STATE(4099), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4099), + [sym_regex] = ACTIONS(9811), + [anon_sym_RBRACE] = ACTIONS(9781), + [anon_sym_EQ] = ACTIONS(9797), + [anon_sym_DASH] = ACTIONS(9797), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9799), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9797), + [anon_sym_COLON_QMARK] = ACTIONS(9797), + [anon_sym_COLON_DASH] = ACTIONS(9797), + [anon_sym_PERCENT] = ACTIONS(9797), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4021] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9781), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4022] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [sym__concat] = ACTIONS(2446), + [sym_variable_name] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_esac] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [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), + [sym__special_characters] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(2446), + [anon_sym_GT_LPAREN] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2448), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [4023] = { + [sym__simple_heredoc_body] = ACTIONS(2484), + [sym__heredoc_body_beginning] = ACTIONS(2484), + [sym_file_descriptor] = ACTIONS(2484), + [sym__concat] = ACTIONS(2484), + [sym_variable_name] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_esac] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SEMI_SEMI] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_AMP_GT] = ACTIONS(2486), + [anon_sym_AMP_GT_GT] = ACTIONS(2484), + [anon_sym_LT_AMP] = ACTIONS(2484), + [anon_sym_GT_AMP] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_LT_LT_DASH] = ACTIONS(2484), + [anon_sym_LT_LT_LT] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2486), + [sym_raw_string] = ACTIONS(2484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LT_LPAREN] = ACTIONS(2484), + [anon_sym_GT_LPAREN] = ACTIONS(2484), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2486), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2486), + }, + [4024] = { + [sym__simple_heredoc_body] = ACTIONS(2646), + [sym__heredoc_body_beginning] = ACTIONS(2646), + [sym_file_descriptor] = ACTIONS(2646), + [sym_variable_name] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_esac] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_SEMI_SEMI] = ACTIONS(2646), + [anon_sym_PIPE_AMP] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_PIPE_PIPE] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_GT] = ACTIONS(2648), + [anon_sym_GT_GT] = ACTIONS(2646), + [anon_sym_AMP_GT] = ACTIONS(2648), + [anon_sym_AMP_GT_GT] = ACTIONS(2646), + [anon_sym_LT_AMP] = ACTIONS(2646), + [anon_sym_GT_AMP] = ACTIONS(2646), + [anon_sym_LT_LT] = ACTIONS(2648), + [anon_sym_LT_LT_DASH] = ACTIONS(2646), + [anon_sym_LT_LT_LT] = ACTIONS(2646), + [sym__special_characters] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2648), + [sym_raw_string] = ACTIONS(2646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2646), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2646), + [anon_sym_BQUOTE] = ACTIONS(2646), + [anon_sym_LT_LPAREN] = ACTIONS(2646), + [anon_sym_GT_LPAREN] = ACTIONS(2646), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2648), + [sym_word] = ACTIONS(2648), + [anon_sym_LF] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2648), + }, + [4025] = { + [sym_concatenation] = STATE(1243), + [sym_string] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(1243), + [anon_sym_RPAREN] = ACTIONS(9813), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_LT_LPAREN] = ACTIONS(1391), + [anon_sym_GT_LPAREN] = ACTIONS(1391), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1383), + }, + [4026] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [sym_variable_name] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_esac] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4003), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [4027] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [sym_variable_name] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_esac] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4017), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [4028] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9815), + [sym_comment] = ACTIONS(57), + }, + [4029] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9817), + [sym_comment] = ACTIONS(57), + }, + [4030] = { + [anon_sym_RBRACE] = ACTIONS(9817), + [sym_comment] = ACTIONS(57), + }, + [4031] = { + [sym_concatenation] = STATE(4109), + [sym_string] = STATE(4108), + [sym_simple_expansion] = STATE(4108), + [sym_string_expansion] = STATE(4108), + [sym_expansion] = STATE(4108), + [sym_command_substitution] = STATE(4108), + [sym_process_substitution] = STATE(4108), + [anon_sym_RBRACE] = ACTIONS(9817), + [sym__special_characters] = ACTIONS(9819), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(9821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9821), + }, + [4032] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [sym_variable_name] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_esac] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4053), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [4033] = { + [sym_concatenation] = STATE(4112), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4112), + [sym_regex] = ACTIONS(9823), + [anon_sym_RBRACE] = ACTIONS(9825), + [anon_sym_EQ] = ACTIONS(9827), + [anon_sym_DASH] = ACTIONS(9827), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9827), + [anon_sym_COLON_QMARK] = ACTIONS(9827), + [anon_sym_COLON_DASH] = ACTIONS(9827), + [anon_sym_PERCENT] = ACTIONS(9827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4034] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9825), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4035] = { + [sym_concatenation] = STATE(4114), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4114), + [sym_regex] = ACTIONS(9831), + [anon_sym_RBRACE] = ACTIONS(9817), + [anon_sym_EQ] = ACTIONS(9833), + [anon_sym_DASH] = ACTIONS(9833), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9833), + [anon_sym_COLON_QMARK] = ACTIONS(9833), + [anon_sym_COLON_DASH] = ACTIONS(9833), + [anon_sym_PERCENT] = ACTIONS(9833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4036] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9817), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4037] = { + [sym_concatenation] = STATE(4116), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4116), + [anon_sym_RBRACE] = ACTIONS(9837), + [anon_sym_EQ] = ACTIONS(9839), + [anon_sym_DASH] = ACTIONS(9839), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9839), + [anon_sym_COLON_QMARK] = ACTIONS(9839), + [anon_sym_COLON_DASH] = ACTIONS(9839), + [anon_sym_PERCENT] = ACTIONS(9839), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4038] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [sym_variable_name] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_esac] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4109), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [4039] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9837), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4040] = { + [sym_concatenation] = STATE(4114), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4114), + [anon_sym_RBRACE] = ACTIONS(9817), + [anon_sym_EQ] = ACTIONS(9833), + [anon_sym_DASH] = ACTIONS(9833), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9833), + [anon_sym_COLON_QMARK] = ACTIONS(9833), + [anon_sym_COLON_DASH] = ACTIONS(9833), + [anon_sym_PERCENT] = ACTIONS(9833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4041] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_esac] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4003), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [4042] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_esac] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4017), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [4043] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9843), + [sym_comment] = ACTIONS(57), + }, + [4044] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9845), + [sym_comment] = ACTIONS(57), + }, + [4045] = { + [anon_sym_RBRACE] = ACTIONS(9845), + [sym_comment] = ACTIONS(57), + }, + [4046] = { + [sym_concatenation] = STATE(4121), + [sym_string] = STATE(4120), + [sym_simple_expansion] = STATE(4120), + [sym_string_expansion] = STATE(4120), + [sym_expansion] = STATE(4120), + [sym_command_substitution] = STATE(4120), + [sym_process_substitution] = STATE(4120), + [anon_sym_RBRACE] = ACTIONS(9845), + [sym__special_characters] = ACTIONS(9847), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(9849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9849), + }, + [4047] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_esac] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4053), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [4048] = { + [sym_concatenation] = STATE(4124), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4124), + [sym_regex] = ACTIONS(9851), + [anon_sym_RBRACE] = ACTIONS(9853), + [anon_sym_EQ] = ACTIONS(9855), + [anon_sym_DASH] = ACTIONS(9855), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9855), + [anon_sym_COLON_QMARK] = ACTIONS(9855), + [anon_sym_COLON_DASH] = ACTIONS(9855), + [anon_sym_PERCENT] = ACTIONS(9855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4049] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9853), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4050] = { + [sym_concatenation] = STATE(4126), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4126), + [sym_regex] = ACTIONS(9859), + [anon_sym_RBRACE] = ACTIONS(9845), + [anon_sym_EQ] = ACTIONS(9861), + [anon_sym_DASH] = ACTIONS(9861), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9861), + [anon_sym_COLON_QMARK] = ACTIONS(9861), + [anon_sym_COLON_DASH] = ACTIONS(9861), + [anon_sym_PERCENT] = ACTIONS(9861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4051] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9845), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4052] = { + [sym_concatenation] = STATE(4128), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4128), + [anon_sym_RBRACE] = ACTIONS(9865), + [anon_sym_EQ] = ACTIONS(9867), + [anon_sym_DASH] = ACTIONS(9867), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9867), + [anon_sym_COLON_QMARK] = ACTIONS(9867), + [anon_sym_COLON_DASH] = ACTIONS(9867), + [anon_sym_PERCENT] = ACTIONS(9867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4053] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_esac] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4109), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [4054] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9865), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4055] = { + [sym_concatenation] = STATE(4126), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4126), + [anon_sym_RBRACE] = ACTIONS(9845), + [anon_sym_EQ] = ACTIONS(9861), + [anon_sym_DASH] = ACTIONS(9861), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9861), + [anon_sym_COLON_QMARK] = ACTIONS(9861), + [anon_sym_COLON_DASH] = ACTIONS(9861), + [anon_sym_PERCENT] = ACTIONS(9861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4056] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_esac] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_EQ_TILDE] = ACTIONS(5527), + [anon_sym_EQ_EQ] = ACTIONS(5527), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [4057] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_esac] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_EQ_TILDE] = ACTIONS(5535), + [anon_sym_EQ_EQ] = ACTIONS(5535), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [4058] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9871), + [sym_comment] = ACTIONS(57), + }, + [4059] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9873), + [sym_comment] = ACTIONS(57), + }, + [4060] = { + [anon_sym_RBRACE] = ACTIONS(9873), + [sym_comment] = ACTIONS(57), + }, + [4061] = { + [sym_concatenation] = STATE(4132), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4132), + [anon_sym_RBRACE] = ACTIONS(9875), + [anon_sym_EQ] = ACTIONS(9877), + [anon_sym_DASH] = ACTIONS(9877), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9877), + [anon_sym_COLON_QMARK] = ACTIONS(9877), + [anon_sym_COLON_DASH] = ACTIONS(9877), + [anon_sym_PERCENT] = ACTIONS(9877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4062] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_esac] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_EQ_TILDE] = ACTIONS(5579), + [anon_sym_EQ_EQ] = ACTIONS(5579), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [4063] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9875), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4064] = { + [sym_concatenation] = STATE(4133), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4133), + [anon_sym_RBRACE] = ACTIONS(9873), + [anon_sym_EQ] = ACTIONS(9881), + [anon_sym_DASH] = ACTIONS(9881), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9881), + [anon_sym_COLON_QMARK] = ACTIONS(9881), + [anon_sym_COLON_DASH] = ACTIONS(9881), + [anon_sym_PERCENT] = ACTIONS(9881), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4065] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9873), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4066] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_esac] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_EQ_TILDE] = ACTIONS(5624), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [4067] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9885), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4068] = { + [aux_sym_concatenation_repeat1] = STATE(4068), + [sym__simple_heredoc_body] = ACTIONS(2292), + [sym__heredoc_body_beginning] = ACTIONS(2292), + [sym_file_descriptor] = ACTIONS(2292), + [sym__concat] = ACTIONS(8377), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_esac] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_PIPE_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_AMP_GT] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(2292), + [anon_sym_LT_AMP] = ACTIONS(2292), + [anon_sym_GT_AMP] = ACTIONS(2292), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_LT_LT_DASH] = ACTIONS(2292), + [anon_sym_LT_LT_LT] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2294), + }, + [4069] = { + [anon_sym_SEMI] = ACTIONS(2602), + [anon_sym_SEMI_SEMI] = ACTIONS(2538), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2604), + [anon_sym_AMP] = ACTIONS(2604), + }, + [4070] = { + [sym__special_characters] = ACTIONS(9438), + [anon_sym_DQUOTE] = ACTIONS(9438), + [anon_sym_DOLLAR] = ACTIONS(9440), + [sym_raw_string] = ACTIONS(9438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(9438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(9438), + [anon_sym_BQUOTE] = ACTIONS(9438), + [anon_sym_LT_LPAREN] = ACTIONS(9438), + [anon_sym_GT_LPAREN] = ACTIONS(9438), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9438), + }, + [4071] = { + [sym__special_characters] = ACTIONS(9444), + [anon_sym_DQUOTE] = ACTIONS(9444), + [anon_sym_DOLLAR] = ACTIONS(9446), + [sym_raw_string] = ACTIONS(9444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(9444), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(9444), + [anon_sym_BQUOTE] = ACTIONS(9444), + [anon_sym_LT_LPAREN] = ACTIONS(9444), + [anon_sym_GT_LPAREN] = ACTIONS(9444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9444), + }, + [4072] = { + [sym__simple_heredoc_body] = ACTIONS(9462), + [sym__heredoc_body_beginning] = ACTIONS(9462), + [sym_file_descriptor] = ACTIONS(9462), + [anon_sym_SEMI] = ACTIONS(9464), + [anon_sym_PIPE] = ACTIONS(9464), + [anon_sym_SEMI_SEMI] = ACTIONS(9462), + [anon_sym_RBRACE] = ACTIONS(9462), + [anon_sym_PIPE_AMP] = ACTIONS(9462), + [anon_sym_AMP_AMP] = ACTIONS(9462), + [anon_sym_PIPE_PIPE] = ACTIONS(9462), + [anon_sym_LT] = ACTIONS(9464), + [anon_sym_GT] = ACTIONS(9464), + [anon_sym_GT_GT] = ACTIONS(9462), + [anon_sym_AMP_GT] = ACTIONS(9464), + [anon_sym_AMP_GT_GT] = ACTIONS(9462), + [anon_sym_LT_AMP] = ACTIONS(9462), + [anon_sym_GT_AMP] = ACTIONS(9462), + [anon_sym_LT_LT] = ACTIONS(9464), + [anon_sym_LT_LT_DASH] = ACTIONS(9462), + [anon_sym_LT_LT_LT] = ACTIONS(9462), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(9462), + [anon_sym_AMP] = ACTIONS(9464), + }, + [4073] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [sym_variable_name] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_done] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [4074] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [sym_variable_name] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_done] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [4075] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_done] = ACTIONS(8144), + [anon_sym_fi] = ACTIONS(8144), + [anon_sym_elif] = ACTIONS(8144), + [anon_sym_else] = ACTIONS(8144), + [anon_sym_esac] = ACTIONS(8144), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [4076] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_done] = ACTIONS(8148), + [anon_sym_fi] = ACTIONS(8148), + [anon_sym_elif] = ACTIONS(8148), + [anon_sym_else] = ACTIONS(8148), + [anon_sym_esac] = ACTIONS(8148), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [4077] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [sym_variable_name] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_fi] = ACTIONS(8146), + [anon_sym_elif] = ACTIONS(8146), + [anon_sym_else] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [4078] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [sym_variable_name] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_fi] = ACTIONS(8150), + [anon_sym_elif] = ACTIONS(8150), + [anon_sym_else] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [4079] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [sym_variable_name] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_fi] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [4080] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [sym_variable_name] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_fi] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [4081] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [sym_variable_name] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_fi] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [4082] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9887), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4083] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9889), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4084] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [sym_variable_name] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_fi] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [4085] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [sym_variable_name] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_fi] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8146), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [4086] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [sym_variable_name] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_fi] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8150), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [4087] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_fi] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8146), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [4088] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_fi] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8150), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [4089] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [sym_variable_name] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_esac] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4001), + [anon_sym_PIPE_AMP] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4001), + [anon_sym_LT_LT_LT] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [4090] = { + [sym__simple_heredoc_body] = ACTIONS(4015), + [sym__heredoc_body_beginning] = ACTIONS(4015), + [sym_file_descriptor] = ACTIONS(4015), + [sym__concat] = ACTIONS(4015), + [sym_variable_name] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_esac] = ACTIONS(4017), + [anon_sym_PIPE] = ACTIONS(4017), + [anon_sym_SEMI_SEMI] = ACTIONS(4015), + [anon_sym_PIPE_AMP] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_GT_GT] = ACTIONS(4015), + [anon_sym_AMP_GT] = ACTIONS(4017), + [anon_sym_AMP_GT_GT] = ACTIONS(4015), + [anon_sym_LT_AMP] = ACTIONS(4015), + [anon_sym_GT_AMP] = ACTIONS(4015), + [anon_sym_LT_LT] = ACTIONS(4017), + [anon_sym_LT_LT_DASH] = ACTIONS(4015), + [anon_sym_LT_LT_LT] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4017), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4015), + [anon_sym_BQUOTE] = ACTIONS(4015), + [anon_sym_LT_LPAREN] = ACTIONS(4015), + [anon_sym_GT_LPAREN] = ACTIONS(4015), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4017), + }, + [4091] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9891), + [sym_comment] = ACTIONS(57), + }, + [4092] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9893), + [sym_comment] = ACTIONS(57), + }, + [4093] = { + [anon_sym_RBRACE] = ACTIONS(9893), + [sym_comment] = ACTIONS(57), + }, + [4094] = { + [sym_concatenation] = STATE(4141), + [sym_string] = STATE(4140), + [sym_simple_expansion] = STATE(4140), + [sym_string_expansion] = STATE(4140), + [sym_expansion] = STATE(4140), + [sym_command_substitution] = STATE(4140), + [sym_process_substitution] = STATE(4140), + [anon_sym_RBRACE] = ACTIONS(9893), + [sym__special_characters] = ACTIONS(9895), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2364), + [sym_raw_string] = ACTIONS(9897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(9897), + }, + [4095] = { + [sym__simple_heredoc_body] = ACTIONS(4051), + [sym__heredoc_body_beginning] = ACTIONS(4051), + [sym_file_descriptor] = ACTIONS(4051), + [sym__concat] = ACTIONS(4051), + [sym_variable_name] = ACTIONS(4051), + [anon_sym_SEMI] = ACTIONS(4053), + [anon_sym_esac] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(4053), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_PIPE_AMP] = ACTIONS(4051), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_PIPE_PIPE] = ACTIONS(4051), + [anon_sym_LT] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(4053), + [anon_sym_GT_GT] = ACTIONS(4051), + [anon_sym_AMP_GT] = ACTIONS(4053), + [anon_sym_AMP_GT_GT] = ACTIONS(4051), + [anon_sym_LT_AMP] = ACTIONS(4051), + [anon_sym_GT_AMP] = ACTIONS(4051), + [anon_sym_LT_LT] = ACTIONS(4053), + [anon_sym_LT_LT_DASH] = ACTIONS(4051), + [anon_sym_LT_LT_LT] = ACTIONS(4051), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4053), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4053), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + }, + [4096] = { + [sym_concatenation] = STATE(4144), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4144), + [sym_regex] = ACTIONS(9899), + [anon_sym_RBRACE] = ACTIONS(9901), + [anon_sym_EQ] = ACTIONS(9903), + [anon_sym_DASH] = ACTIONS(9903), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9903), + [anon_sym_COLON_QMARK] = ACTIONS(9903), + [anon_sym_COLON_DASH] = ACTIONS(9903), + [anon_sym_PERCENT] = ACTIONS(9903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4097] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9901), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4098] = { + [sym_concatenation] = STATE(4146), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4146), + [sym_regex] = ACTIONS(9907), + [anon_sym_RBRACE] = ACTIONS(9893), + [anon_sym_EQ] = ACTIONS(9909), + [anon_sym_DASH] = ACTIONS(9909), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9911), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9909), + [anon_sym_COLON_QMARK] = ACTIONS(9909), + [anon_sym_COLON_DASH] = ACTIONS(9909), + [anon_sym_PERCENT] = ACTIONS(9909), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4099] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9893), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4100] = { + [sym_concatenation] = STATE(4148), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4148), + [anon_sym_RBRACE] = ACTIONS(9913), + [anon_sym_EQ] = ACTIONS(9915), + [anon_sym_DASH] = ACTIONS(9915), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9915), + [anon_sym_COLON_QMARK] = ACTIONS(9915), + [anon_sym_COLON_DASH] = ACTIONS(9915), + [anon_sym_PERCENT] = ACTIONS(9915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4101] = { + [sym__simple_heredoc_body] = ACTIONS(4107), + [sym__heredoc_body_beginning] = ACTIONS(4107), + [sym_file_descriptor] = ACTIONS(4107), + [sym__concat] = ACTIONS(4107), + [sym_variable_name] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym_esac] = ACTIONS(4109), + [anon_sym_PIPE] = ACTIONS(4109), + [anon_sym_SEMI_SEMI] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_PIPE_PIPE] = ACTIONS(4107), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4107), + [anon_sym_AMP_GT] = ACTIONS(4109), + [anon_sym_AMP_GT_GT] = ACTIONS(4107), + [anon_sym_LT_AMP] = ACTIONS(4107), + [anon_sym_GT_AMP] = ACTIONS(4107), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_LT_LT_DASH] = ACTIONS(4107), + [anon_sym_LT_LT_LT] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [anon_sym_DOLLAR] = ACTIONS(4109), + [sym_raw_string] = ACTIONS(4107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4107), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(4107), + [anon_sym_GT_LPAREN] = ACTIONS(4107), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4109), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + }, + [4102] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9913), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4103] = { + [sym_concatenation] = STATE(4146), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4146), + [anon_sym_RBRACE] = ACTIONS(9893), + [anon_sym_EQ] = ACTIONS(9909), + [anon_sym_DASH] = ACTIONS(9909), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9911), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9909), + [anon_sym_COLON_QMARK] = ACTIONS(9909), + [anon_sym_COLON_DASH] = ACTIONS(9909), + [anon_sym_PERCENT] = ACTIONS(9909), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4104] = { + [sym__simple_heredoc_body] = ACTIONS(4334), + [sym__heredoc_body_beginning] = ACTIONS(4334), + [sym_file_descriptor] = ACTIONS(4334), + [sym_variable_name] = ACTIONS(4334), + [anon_sym_SEMI] = ACTIONS(4336), + [anon_sym_esac] = ACTIONS(4336), + [anon_sym_PIPE] = ACTIONS(4336), + [anon_sym_SEMI_SEMI] = ACTIONS(4334), + [anon_sym_PIPE_AMP] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4336), + [anon_sym_GT] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4334), + [anon_sym_AMP_GT] = ACTIONS(4336), + [anon_sym_AMP_GT_GT] = ACTIONS(4334), + [anon_sym_LT_AMP] = ACTIONS(4334), + [anon_sym_GT_AMP] = ACTIONS(4334), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_LT_LT_DASH] = ACTIONS(4334), + [anon_sym_LT_LT_LT] = ACTIONS(4334), + [sym__special_characters] = ACTIONS(4334), + [anon_sym_DQUOTE] = ACTIONS(4334), + [anon_sym_DOLLAR] = ACTIONS(4336), + [sym_raw_string] = ACTIONS(4334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4334), + [anon_sym_BQUOTE] = ACTIONS(4334), + [anon_sym_LT_LPAREN] = ACTIONS(4334), + [anon_sym_GT_LPAREN] = ACTIONS(4334), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4336), + [sym_word] = ACTIONS(4336), + [anon_sym_LF] = ACTIONS(4334), + [anon_sym_AMP] = ACTIONS(4336), + }, + [4105] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [sym_variable_name] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_esac] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5527), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [4106] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [sym_variable_name] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_esac] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5535), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [4107] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9919), + [sym_comment] = ACTIONS(57), + }, + [4108] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9921), + [sym_comment] = ACTIONS(57), + }, + [4109] = { + [anon_sym_RBRACE] = ACTIONS(9921), + [sym_comment] = ACTIONS(57), + }, + [4110] = { + [sym_concatenation] = STATE(4152), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4152), + [anon_sym_RBRACE] = ACTIONS(9923), + [anon_sym_EQ] = ACTIONS(9925), + [anon_sym_DASH] = ACTIONS(9925), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9925), + [anon_sym_COLON_QMARK] = ACTIONS(9925), + [anon_sym_COLON_DASH] = ACTIONS(9925), + [anon_sym_PERCENT] = ACTIONS(9925), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4111] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [sym_variable_name] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_esac] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5579), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [4112] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9923), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4113] = { + [sym_concatenation] = STATE(4153), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4153), + [anon_sym_RBRACE] = ACTIONS(9921), + [anon_sym_EQ] = ACTIONS(9929), + [anon_sym_DASH] = ACTIONS(9929), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9929), + [anon_sym_COLON_QMARK] = ACTIONS(9929), + [anon_sym_COLON_DASH] = ACTIONS(9929), + [anon_sym_PERCENT] = ACTIONS(9929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4114] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9921), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4115] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [sym_variable_name] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_esac] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5624), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [4116] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9933), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4117] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_esac] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5527), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [4118] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_esac] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5535), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [4119] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9935), + [sym_comment] = ACTIONS(57), + }, + [4120] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9937), + [sym_comment] = ACTIONS(57), + }, + [4121] = { + [anon_sym_RBRACE] = ACTIONS(9937), + [sym_comment] = ACTIONS(57), + }, + [4122] = { + [sym_concatenation] = STATE(4158), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4158), + [anon_sym_RBRACE] = ACTIONS(9939), + [anon_sym_EQ] = ACTIONS(9941), + [anon_sym_DASH] = ACTIONS(9941), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9941), + [anon_sym_COLON_QMARK] = ACTIONS(9941), + [anon_sym_COLON_DASH] = ACTIONS(9941), + [anon_sym_PERCENT] = ACTIONS(9941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4123] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_esac] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5579), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [4124] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9939), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4125] = { + [sym_concatenation] = STATE(4159), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4159), + [anon_sym_RBRACE] = ACTIONS(9937), + [anon_sym_EQ] = ACTIONS(9945), + [anon_sym_DASH] = ACTIONS(9945), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9945), + [anon_sym_COLON_QMARK] = ACTIONS(9945), + [anon_sym_COLON_DASH] = ACTIONS(9945), + [anon_sym_PERCENT] = ACTIONS(9945), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4126] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9937), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4127] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_esac] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5624), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [4128] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9949), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4129] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_esac] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_EQ_TILDE] = ACTIONS(7027), + [anon_sym_EQ_EQ] = ACTIONS(7027), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [4130] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_esac] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_EQ_TILDE] = ACTIONS(7031), + [anon_sym_EQ_EQ] = ACTIONS(7031), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [4131] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_esac] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_EQ_TILDE] = ACTIONS(7035), + [anon_sym_EQ_EQ] = ACTIONS(7035), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [4132] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9951), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4133] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9953), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4134] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_esac] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_EQ_TILDE] = ACTIONS(7071), + [anon_sym_EQ_EQ] = ACTIONS(7071), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [4135] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [sym_variable_name] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_fi] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [4136] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [sym_variable_name] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_fi] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [4137] = { + [sym__simple_heredoc_body] = ACTIONS(5525), + [sym__heredoc_body_beginning] = ACTIONS(5525), + [sym_file_descriptor] = ACTIONS(5525), + [sym__concat] = ACTIONS(5525), + [sym_variable_name] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym_esac] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5527), + [anon_sym_SEMI_SEMI] = ACTIONS(5525), + [anon_sym_PIPE_AMP] = ACTIONS(5525), + [anon_sym_AMP_AMP] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_AMP_GT] = ACTIONS(5527), + [anon_sym_AMP_GT_GT] = ACTIONS(5525), + [anon_sym_LT_AMP] = ACTIONS(5525), + [anon_sym_GT_AMP] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_LT_LT_DASH] = ACTIONS(5525), + [anon_sym_LT_LT_LT] = ACTIONS(5525), + [sym__special_characters] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(5525), + [anon_sym_DOLLAR] = ACTIONS(5527), + [sym_raw_string] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5525), + [anon_sym_BQUOTE] = ACTIONS(5525), + [anon_sym_LT_LPAREN] = ACTIONS(5525), + [anon_sym_GT_LPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5527), + [anon_sym_LF] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5527), + }, + [4138] = { + [sym__simple_heredoc_body] = ACTIONS(5533), + [sym__heredoc_body_beginning] = ACTIONS(5533), + [sym_file_descriptor] = ACTIONS(5533), + [sym__concat] = ACTIONS(5533), + [sym_variable_name] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym_esac] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5535), + [anon_sym_SEMI_SEMI] = ACTIONS(5533), + [anon_sym_PIPE_AMP] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_AMP_GT] = ACTIONS(5535), + [anon_sym_AMP_GT_GT] = ACTIONS(5533), + [anon_sym_LT_AMP] = ACTIONS(5533), + [anon_sym_GT_AMP] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_LT_LT_DASH] = ACTIONS(5533), + [anon_sym_LT_LT_LT] = ACTIONS(5533), + [sym__special_characters] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5533), + [anon_sym_BQUOTE] = ACTIONS(5533), + [anon_sym_LT_LPAREN] = ACTIONS(5533), + [anon_sym_GT_LPAREN] = ACTIONS(5533), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5535), + [anon_sym_LF] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5535), + }, + [4139] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9955), + [sym_comment] = ACTIONS(57), + }, + [4140] = { + [aux_sym_concatenation_repeat1] = STATE(1763), + [sym__concat] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(9957), + [sym_comment] = ACTIONS(57), + }, + [4141] = { + [anon_sym_RBRACE] = ACTIONS(9957), + [sym_comment] = ACTIONS(57), + }, + [4142] = { + [sym_concatenation] = STATE(4166), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4166), + [anon_sym_RBRACE] = ACTIONS(9959), + [anon_sym_EQ] = ACTIONS(9961), + [anon_sym_DASH] = ACTIONS(9961), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9961), + [anon_sym_COLON_QMARK] = ACTIONS(9961), + [anon_sym_COLON_DASH] = ACTIONS(9961), + [anon_sym_PERCENT] = ACTIONS(9961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4143] = { + [sym__simple_heredoc_body] = ACTIONS(5577), + [sym__heredoc_body_beginning] = ACTIONS(5577), + [sym_file_descriptor] = ACTIONS(5577), + [sym__concat] = ACTIONS(5577), + [sym_variable_name] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym_esac] = ACTIONS(5579), + [anon_sym_PIPE] = ACTIONS(5579), + [anon_sym_SEMI_SEMI] = ACTIONS(5577), + [anon_sym_PIPE_AMP] = ACTIONS(5577), + [anon_sym_AMP_AMP] = ACTIONS(5577), + [anon_sym_PIPE_PIPE] = ACTIONS(5577), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_GT_GT] = ACTIONS(5577), + [anon_sym_AMP_GT] = ACTIONS(5579), + [anon_sym_AMP_GT_GT] = ACTIONS(5577), + [anon_sym_LT_AMP] = ACTIONS(5577), + [anon_sym_GT_AMP] = ACTIONS(5577), + [anon_sym_LT_LT] = ACTIONS(5579), + [anon_sym_LT_LT_DASH] = ACTIONS(5577), + [anon_sym_LT_LT_LT] = ACTIONS(5577), + [sym__special_characters] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [sym_raw_string] = ACTIONS(5577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5577), + [anon_sym_BQUOTE] = ACTIONS(5577), + [anon_sym_LT_LPAREN] = ACTIONS(5577), + [anon_sym_GT_LPAREN] = ACTIONS(5577), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5579), + [anon_sym_LF] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5579), + }, + [4144] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9959), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4145] = { + [sym_concatenation] = STATE(4167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(4167), + [anon_sym_RBRACE] = ACTIONS(9957), + [anon_sym_EQ] = ACTIONS(9965), + [anon_sym_DASH] = ACTIONS(9965), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(9967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(9965), + [anon_sym_COLON_QMARK] = ACTIONS(9965), + [anon_sym_COLON_DASH] = ACTIONS(9965), + [anon_sym_PERCENT] = ACTIONS(9965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4146] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9957), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4147] = { + [sym__simple_heredoc_body] = ACTIONS(5622), + [sym__heredoc_body_beginning] = ACTIONS(5622), + [sym_file_descriptor] = ACTIONS(5622), + [sym__concat] = ACTIONS(5622), + [sym_variable_name] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_esac] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_SEMI_SEMI] = ACTIONS(5622), + [anon_sym_PIPE_AMP] = ACTIONS(5622), + [anon_sym_AMP_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_AMP_GT] = ACTIONS(5624), + [anon_sym_AMP_GT_GT] = ACTIONS(5622), + [anon_sym_LT_AMP] = ACTIONS(5622), + [anon_sym_GT_AMP] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_LT_LT_DASH] = ACTIONS(5622), + [anon_sym_LT_LT_LT] = ACTIONS(5622), + [sym__special_characters] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5624), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5622), + [anon_sym_BQUOTE] = ACTIONS(5622), + [anon_sym_LT_LPAREN] = ACTIONS(5622), + [anon_sym_GT_LPAREN] = ACTIONS(5622), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5624), + [anon_sym_LF] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5624), + }, + [4148] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9969), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4149] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [sym_variable_name] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_esac] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7027), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [4150] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [sym_variable_name] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_esac] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7031), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [4151] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [sym_variable_name] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_esac] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7035), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [4152] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9971), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4153] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9973), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4154] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [sym_variable_name] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_esac] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7071), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [4155] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_esac] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7027), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [4156] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_esac] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7031), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [4157] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_esac] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7035), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [4158] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9975), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4159] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9977), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4160] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_esac] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7071), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [4161] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_esac] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_EQ_TILDE] = ACTIONS(8146), + [anon_sym_EQ_EQ] = ACTIONS(8146), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [4162] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_esac] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_EQ_TILDE] = ACTIONS(8150), + [anon_sym_EQ_EQ] = ACTIONS(8150), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [4163] = { + [sym__simple_heredoc_body] = ACTIONS(7025), + [sym__heredoc_body_beginning] = ACTIONS(7025), + [sym_file_descriptor] = ACTIONS(7025), + [sym__concat] = ACTIONS(7025), + [sym_variable_name] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7027), + [anon_sym_esac] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_SEMI_SEMI] = ACTIONS(7025), + [anon_sym_PIPE_AMP] = ACTIONS(7025), + [anon_sym_AMP_AMP] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7027), + [anon_sym_GT] = ACTIONS(7027), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_AMP_GT] = ACTIONS(7027), + [anon_sym_AMP_GT_GT] = ACTIONS(7025), + [anon_sym_LT_AMP] = ACTIONS(7025), + [anon_sym_GT_AMP] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7027), + [anon_sym_LT_LT_DASH] = ACTIONS(7025), + [anon_sym_LT_LT_LT] = ACTIONS(7025), + [sym__special_characters] = ACTIONS(7025), + [anon_sym_DQUOTE] = ACTIONS(7025), + [anon_sym_DOLLAR] = ACTIONS(7027), + [sym_raw_string] = ACTIONS(7025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7025), + [anon_sym_BQUOTE] = ACTIONS(7025), + [anon_sym_LT_LPAREN] = ACTIONS(7025), + [anon_sym_GT_LPAREN] = ACTIONS(7025), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7027), + [anon_sym_LF] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7027), + }, + [4164] = { + [sym__simple_heredoc_body] = ACTIONS(7029), + [sym__heredoc_body_beginning] = ACTIONS(7029), + [sym_file_descriptor] = ACTIONS(7029), + [sym__concat] = ACTIONS(7029), + [sym_variable_name] = ACTIONS(7029), + [anon_sym_SEMI] = ACTIONS(7031), + [anon_sym_esac] = ACTIONS(7031), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_SEMI_SEMI] = ACTIONS(7029), + [anon_sym_PIPE_AMP] = ACTIONS(7029), + [anon_sym_AMP_AMP] = ACTIONS(7029), + [anon_sym_PIPE_PIPE] = ACTIONS(7029), + [anon_sym_LT] = ACTIONS(7031), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7029), + [anon_sym_AMP_GT] = ACTIONS(7031), + [anon_sym_AMP_GT_GT] = ACTIONS(7029), + [anon_sym_LT_AMP] = ACTIONS(7029), + [anon_sym_GT_AMP] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_LT_LT_DASH] = ACTIONS(7029), + [anon_sym_LT_LT_LT] = ACTIONS(7029), + [sym__special_characters] = ACTIONS(7029), + [anon_sym_DQUOTE] = ACTIONS(7029), + [anon_sym_DOLLAR] = ACTIONS(7031), + [sym_raw_string] = ACTIONS(7029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7029), + [anon_sym_BQUOTE] = ACTIONS(7029), + [anon_sym_LT_LPAREN] = ACTIONS(7029), + [anon_sym_GT_LPAREN] = ACTIONS(7029), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7031), + [anon_sym_LF] = ACTIONS(7029), + [anon_sym_AMP] = ACTIONS(7031), + }, + [4165] = { + [sym__simple_heredoc_body] = ACTIONS(7033), + [sym__heredoc_body_beginning] = ACTIONS(7033), + [sym_file_descriptor] = ACTIONS(7033), + [sym__concat] = ACTIONS(7033), + [sym_variable_name] = ACTIONS(7033), + [anon_sym_SEMI] = ACTIONS(7035), + [anon_sym_esac] = ACTIONS(7035), + [anon_sym_PIPE] = ACTIONS(7035), + [anon_sym_SEMI_SEMI] = ACTIONS(7033), + [anon_sym_PIPE_AMP] = ACTIONS(7033), + [anon_sym_AMP_AMP] = ACTIONS(7033), + [anon_sym_PIPE_PIPE] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7035), + [anon_sym_GT] = ACTIONS(7035), + [anon_sym_GT_GT] = ACTIONS(7033), + [anon_sym_AMP_GT] = ACTIONS(7035), + [anon_sym_AMP_GT_GT] = ACTIONS(7033), + [anon_sym_LT_AMP] = ACTIONS(7033), + [anon_sym_GT_AMP] = ACTIONS(7033), + [anon_sym_LT_LT] = ACTIONS(7035), + [anon_sym_LT_LT_DASH] = ACTIONS(7033), + [anon_sym_LT_LT_LT] = ACTIONS(7033), + [sym__special_characters] = ACTIONS(7033), + [anon_sym_DQUOTE] = ACTIONS(7033), + [anon_sym_DOLLAR] = ACTIONS(7035), + [sym_raw_string] = ACTIONS(7033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7033), + [anon_sym_BQUOTE] = ACTIONS(7033), + [anon_sym_LT_LPAREN] = ACTIONS(7033), + [anon_sym_GT_LPAREN] = ACTIONS(7033), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7035), + [anon_sym_LF] = ACTIONS(7033), + [anon_sym_AMP] = ACTIONS(7035), + }, + [4166] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9979), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4167] = { + [sym_concatenation] = STATE(1167), + [sym_string] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_command_substitution] = STATE(581), + [sym_process_substitution] = STATE(581), + [aux_sym_expansion_repeat1] = STATE(1167), + [anon_sym_RBRACE] = ACTIONS(9981), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [sym__special_characters] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1113), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_COLON_QMARK] = ACTIONS(2436), + [anon_sym_COLON_DASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), + [sym_comment] = ACTIONS(343), + [sym_word] = ACTIONS(1129), + }, + [4168] = { + [sym__simple_heredoc_body] = ACTIONS(7069), + [sym__heredoc_body_beginning] = ACTIONS(7069), + [sym_file_descriptor] = ACTIONS(7069), + [sym__concat] = ACTIONS(7069), + [sym_variable_name] = ACTIONS(7069), + [anon_sym_SEMI] = ACTIONS(7071), + [anon_sym_esac] = ACTIONS(7071), + [anon_sym_PIPE] = ACTIONS(7071), + [anon_sym_SEMI_SEMI] = ACTIONS(7069), + [anon_sym_PIPE_AMP] = ACTIONS(7069), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_LT] = ACTIONS(7071), + [anon_sym_GT] = ACTIONS(7071), + [anon_sym_GT_GT] = ACTIONS(7069), + [anon_sym_AMP_GT] = ACTIONS(7071), + [anon_sym_AMP_GT_GT] = ACTIONS(7069), + [anon_sym_LT_AMP] = ACTIONS(7069), + [anon_sym_GT_AMP] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7071), + [anon_sym_LT_LT_DASH] = ACTIONS(7069), + [anon_sym_LT_LT_LT] = ACTIONS(7069), + [sym__special_characters] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [anon_sym_DOLLAR] = ACTIONS(7071), + [sym_raw_string] = ACTIONS(7069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7069), + [anon_sym_BQUOTE] = ACTIONS(7069), + [anon_sym_LT_LPAREN] = ACTIONS(7069), + [anon_sym_GT_LPAREN] = ACTIONS(7069), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(7071), + [anon_sym_LF] = ACTIONS(7069), + [anon_sym_AMP] = ACTIONS(7071), + }, + [4169] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [sym_variable_name] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_esac] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8146), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [4170] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [sym_variable_name] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_esac] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8150), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [4171] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_esac] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8146), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [4172] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_esac] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8150), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), + }, + [4173] = { + [sym__simple_heredoc_body] = ACTIONS(8144), + [sym__heredoc_body_beginning] = ACTIONS(8144), + [sym_file_descriptor] = ACTIONS(8144), + [sym__concat] = ACTIONS(8144), + [sym_variable_name] = ACTIONS(8144), + [anon_sym_SEMI] = ACTIONS(8146), + [anon_sym_esac] = ACTIONS(8146), + [anon_sym_PIPE] = ACTIONS(8146), + [anon_sym_SEMI_SEMI] = ACTIONS(8144), + [anon_sym_PIPE_AMP] = ACTIONS(8144), + [anon_sym_AMP_AMP] = ACTIONS(8144), + [anon_sym_PIPE_PIPE] = ACTIONS(8144), + [anon_sym_LT] = ACTIONS(8146), + [anon_sym_GT] = ACTIONS(8146), + [anon_sym_GT_GT] = ACTIONS(8144), + [anon_sym_AMP_GT] = ACTIONS(8146), + [anon_sym_AMP_GT_GT] = ACTIONS(8144), + [anon_sym_LT_AMP] = ACTIONS(8144), + [anon_sym_GT_AMP] = ACTIONS(8144), + [anon_sym_LT_LT] = ACTIONS(8146), + [anon_sym_LT_LT_DASH] = ACTIONS(8144), + [anon_sym_LT_LT_LT] = ACTIONS(8144), + [sym__special_characters] = ACTIONS(8144), + [anon_sym_DQUOTE] = ACTIONS(8144), + [anon_sym_DOLLAR] = ACTIONS(8146), + [sym_raw_string] = ACTIONS(8144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8144), + [anon_sym_BQUOTE] = ACTIONS(8144), + [anon_sym_LT_LPAREN] = ACTIONS(8144), + [anon_sym_GT_LPAREN] = ACTIONS(8144), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8146), + [anon_sym_LF] = ACTIONS(8144), + [anon_sym_AMP] = ACTIONS(8146), + }, + [4174] = { + [sym__simple_heredoc_body] = ACTIONS(8148), + [sym__heredoc_body_beginning] = ACTIONS(8148), + [sym_file_descriptor] = ACTIONS(8148), + [sym__concat] = ACTIONS(8148), + [sym_variable_name] = ACTIONS(8148), + [anon_sym_SEMI] = ACTIONS(8150), + [anon_sym_esac] = ACTIONS(8150), + [anon_sym_PIPE] = ACTIONS(8150), + [anon_sym_SEMI_SEMI] = ACTIONS(8148), + [anon_sym_PIPE_AMP] = ACTIONS(8148), + [anon_sym_AMP_AMP] = ACTIONS(8148), + [anon_sym_PIPE_PIPE] = ACTIONS(8148), + [anon_sym_LT] = ACTIONS(8150), + [anon_sym_GT] = ACTIONS(8150), + [anon_sym_GT_GT] = ACTIONS(8148), + [anon_sym_AMP_GT] = ACTIONS(8150), + [anon_sym_AMP_GT_GT] = ACTIONS(8148), + [anon_sym_LT_AMP] = ACTIONS(8148), + [anon_sym_GT_AMP] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(8150), + [anon_sym_LT_LT_DASH] = ACTIONS(8148), + [anon_sym_LT_LT_LT] = ACTIONS(8148), + [sym__special_characters] = ACTIONS(8148), + [anon_sym_DQUOTE] = ACTIONS(8148), + [anon_sym_DOLLAR] = ACTIONS(8150), + [sym_raw_string] = ACTIONS(8148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8148), + [anon_sym_BQUOTE] = ACTIONS(8148), + [anon_sym_LT_LPAREN] = ACTIONS(8148), + [anon_sym_GT_LPAREN] = ACTIONS(8148), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(8150), + [anon_sym_LF] = ACTIONS(8148), + [anon_sym_AMP] = ACTIONS(8150), }, }; @@ -90766,3195 +123324,4764 @@ static TSParseActionEntry ts_parse_actions[] = { [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 = true}, SHIFT(40), - [75] = {.count = 1, .reusable = false}, SHIFT(41), - [77] = {.count = 1, .reusable = true}, SHIFT(42), - [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 = 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), - [103] = {.count = 1, .reusable = false}, SHIFT(54), - [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 = 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 = true}, SHIFT(71), - [125] = {.count = 1, .reusable = true}, SHIFT(72), - [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 = 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), + [61] = {.count = 1, .reusable = false}, SHIFT(36), + [63] = {.count = 1, .reusable = true}, SHIFT(36), + [65] = {.count = 1, .reusable = true}, SHIFT(37), + [67] = {.count = 1, .reusable = true}, SHIFT(38), + [69] = {.count = 1, .reusable = true}, SHIFT(39), + [71] = {.count = 1, .reusable = true}, SHIFT(40), + [73] = {.count = 1, .reusable = true}, SHIFT(41), + [75] = {.count = 1, .reusable = false}, SHIFT(42), + [77] = {.count = 1, .reusable = true}, SHIFT(43), + [79] = {.count = 1, .reusable = true}, SHIFT(44), + [81] = {.count = 1, .reusable = false}, SHIFT(45), + [83] = {.count = 1, .reusable = true}, SHIFT(46), + [85] = {.count = 1, .reusable = true}, SHIFT(47), + [87] = {.count = 1, .reusable = true}, SHIFT(48), + [89] = {.count = 1, .reusable = true}, SHIFT(49), + [91] = {.count = 1, .reusable = true}, SHIFT(50), + [93] = {.count = 1, .reusable = false}, SHIFT(46), + [95] = {.count = 1, .reusable = true}, SHIFT(42), + [97] = {.count = 1, .reusable = true}, SHIFT(52), + [99] = {.count = 1, .reusable = false}, SHIFT(53), + [101] = {.count = 1, .reusable = true}, SHIFT(54), + [103] = {.count = 1, .reusable = false}, SHIFT(55), + [105] = {.count = 1, .reusable = false}, SHIFT(56), + [107] = {.count = 1, .reusable = false}, SHIFT(57), + [109] = {.count = 1, .reusable = false}, SHIFT(58), + [111] = {.count = 1, .reusable = false}, SHIFT(59), + [113] = {.count = 1, .reusable = true}, SHIFT(60), + [115] = {.count = 1, .reusable = false}, SHIFT(61), + [117] = {.count = 1, .reusable = false}, SHIFT(62), + [119] = {.count = 1, .reusable = true}, SHIFT(63), + [121] = {.count = 1, .reusable = false}, SHIFT(64), + [123] = {.count = 1, .reusable = false}, SHIFT(65), + [125] = {.count = 1, .reusable = false}, SHIFT(66), + [127] = {.count = 1, .reusable = true}, SHIFT(67), + [129] = {.count = 1, .reusable = false}, SHIFT(68), + [131] = {.count = 1, .reusable = true}, SHIFT(69), + [133] = {.count = 1, .reusable = true}, SHIFT(70), + [135] = {.count = 1, .reusable = true}, SHIFT(71), + [137] = {.count = 1, .reusable = true}, SHIFT(72), + [139] = {.count = 1, .reusable = true}, SHIFT(73), + [141] = {.count = 1, .reusable = false}, SHIFT(74), + [143] = {.count = 1, .reusable = true}, SHIFT(83), + [145] = {.count = 1, .reusable = true}, SHIFT(84), + [147] = {.count = 1, .reusable = false}, SHIFT(85), + [149] = {.count = 1, .reusable = true}, SHIFT(86), + [151] = {.count = 1, .reusable = true}, SHIFT(87), + [153] = {.count = 1, .reusable = true}, SHIFT(88), + [155] = {.count = 1, .reusable = true}, SHIFT(89), + [157] = {.count = 1, .reusable = true}, SHIFT(90), + [159] = {.count = 1, .reusable = true}, SHIFT(92), + [161] = {.count = 1, .reusable = true}, SHIFT(93), + [163] = {.count = 1, .reusable = false}, SHIFT(94), + [165] = {.count = 1, .reusable = false}, SHIFT(95), + [167] = {.count = 1, .reusable = false}, SHIFT(96), + [169] = {.count = 1, .reusable = false}, SHIFT(97), + [171] = {.count = 1, .reusable = true}, SHIFT(98), + [173] = {.count = 1, .reusable = false}, SHIFT(99), + [175] = {.count = 1, .reusable = true}, SHIFT(107), [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 = 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 = 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), + [179] = {.count = 1, .reusable = true}, SHIFT(109), + [181] = {.count = 1, .reusable = false}, SHIFT(110), + [183] = {.count = 1, .reusable = false}, SHIFT(111), + [185] = {.count = 1, .reusable = false}, SHIFT(112), + [187] = {.count = 1, .reusable = false}, SHIFT(113), + [189] = {.count = 1, .reusable = false}, SHIFT(114), + [191] = {.count = 1, .reusable = true}, SHIFT(115), + [193] = {.count = 1, .reusable = true}, SHIFT(116), + [195] = {.count = 1, .reusable = false}, SHIFT(117), + [197] = {.count = 1, .reusable = false}, SHIFT(118), + [199] = {.count = 1, .reusable = true}, SHIFT(119), + [201] = {.count = 1, .reusable = false}, SHIFT(120), + [203] = {.count = 1, .reusable = false}, SHIFT(121), + [205] = {.count = 1, .reusable = false}, SHIFT(122), + [207] = {.count = 1, .reusable = true}, SHIFT(123), + [209] = {.count = 1, .reusable = false}, SHIFT(124), + [211] = {.count = 1, .reusable = true}, SHIFT(125), + [213] = {.count = 1, .reusable = true}, SHIFT(126), + [215] = {.count = 1, .reusable = true}, SHIFT(127), + [217] = {.count = 1, .reusable = true}, SHIFT(128), + [219] = {.count = 1, .reusable = true}, SHIFT(129), + [221] = {.count = 1, .reusable = false}, SHIFT(130), + [223] = {.count = 1, .reusable = true}, SHIFT(139), + [225] = {.count = 1, .reusable = true}, SHIFT(142), + [227] = {.count = 1, .reusable = false}, SHIFT(143), + [229] = {.count = 1, .reusable = true}, SHIFT(144), + [231] = {.count = 1, .reusable = true}, SHIFT(145), + [233] = {.count = 1, .reusable = false}, SHIFT(146), + [235] = {.count = 1, .reusable = true}, SHIFT(147), + [237] = {.count = 1, .reusable = true}, SHIFT(148), + [239] = {.count = 1, .reusable = true}, SHIFT(149), + [241] = {.count = 1, .reusable = true}, SHIFT(150), + [243] = {.count = 1, .reusable = true}, SHIFT(151), + [245] = {.count = 1, .reusable = false}, SHIFT(147), + [247] = {.count = 1, .reusable = true}, SHIFT(143), + [249] = {.count = 1, .reusable = false}, SHIFT(153), + [251] = {.count = 1, .reusable = true}, SHIFT(154), + [253] = {.count = 1, .reusable = true}, SHIFT(155), + [255] = {.count = 1, .reusable = false}, SHIFT(155), + [257] = {.count = 1, .reusable = true}, SHIFT(153), + [259] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 1), + [261] = {.count = 1, .reusable = true}, SHIFT(157), + [263] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 1), + [265] = {.count = 1, .reusable = true}, SHIFT(158), + [267] = {.count = 1, .reusable = true}, SHIFT(159), + [269] = {.count = 1, .reusable = false}, SHIFT(160), + [271] = {.count = 1, .reusable = true}, SHIFT(161), + [273] = {.count = 1, .reusable = true}, SHIFT(162), + [275] = {.count = 1, .reusable = true}, SHIFT(163), + [277] = {.count = 1, .reusable = true}, SHIFT(164), + [279] = {.count = 1, .reusable = true}, SHIFT(165), + [281] = {.count = 1, .reusable = false}, SHIFT(167), + [283] = {.count = 1, .reusable = false}, SHIFT(161), + [285] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 1), + [287] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 1), + [289] = {.count = 1, .reusable = true}, SHIFT(168), + [291] = {.count = 1, .reusable = true}, SHIFT(169), + [293] = {.count = 1, .reusable = false}, SHIFT(170), + [295] = {.count = 1, .reusable = true}, SHIFT(171), + [297] = {.count = 1, .reusable = true}, SHIFT(172), + [299] = {.count = 1, .reusable = true}, SHIFT(173), + [301] = {.count = 1, .reusable = true}, SHIFT(174), + [303] = {.count = 1, .reusable = true}, SHIFT(175), + [305] = {.count = 1, .reusable = false}, SHIFT(176), + [307] = {.count = 1, .reusable = false}, SHIFT(171), + [309] = {.count = 1, .reusable = true}, SHIFT(177), + [311] = {.count = 1, .reusable = true}, SHIFT(178), + [313] = {.count = 1, .reusable = false}, SHIFT(179), + [315] = {.count = 1, .reusable = true}, SHIFT(180), + [317] = {.count = 1, .reusable = true}, SHIFT(181), + [319] = {.count = 1, .reusable = true}, SHIFT(182), + [321] = {.count = 1, .reusable = true}, SHIFT(183), + [323] = {.count = 1, .reusable = true}, SHIFT(184), + [325] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [327] = {.count = 1, .reusable = true}, SHIFT(186), + [329] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [331] = {.count = 1, .reusable = false}, SHIFT(188), + [333] = {.count = 1, .reusable = false}, SHIFT(189), + [335] = {.count = 1, .reusable = true}, SHIFT(190), + [337] = {.count = 1, .reusable = false}, SHIFT(191), + [339] = {.count = 1, .reusable = false}, SHIFT(192), + [341] = {.count = 1, .reusable = false}, SHIFT(193), + [343] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), + [345] = {.count = 1, .reusable = true}, SHIFT(195), + [347] = {.count = 1, .reusable = true}, SHIFT(196), + [349] = {.count = 1, .reusable = false}, SHIFT(197), + [351] = {.count = 1, .reusable = true}, SHIFT(197), + [353] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1), + [355] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1), [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), + [361] = {.count = 1, .reusable = true}, SHIFT(200), + [363] = {.count = 1, .reusable = false}, SHIFT(201), + [365] = {.count = 1, .reusable = true}, SHIFT(201), [367] = {.count = 1, .reusable = true}, SHIFT(203), - [369] = {.count = 1, .reusable = true}, SHIFT(204), - [371] = {.count = 1, .reusable = true}, SHIFT(205), + [369] = {.count = 1, .reusable = false}, SHIFT(204), + [371] = {.count = 1, .reusable = false}, 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 = 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), + [375] = {.count = 1, .reusable = false}, SHIFT(207), + [377] = {.count = 1, .reusable = true}, SHIFT(208), + [379] = {.count = 1, .reusable = false}, SHIFT(209), + [381] = {.count = 1, .reusable = true}, SHIFT(218), + [383] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), + [385] = {.count = 1, .reusable = true}, REDUCE(sym_program, 1), + [387] = {.count = 1, .reusable = true}, SHIFT(219), + [389] = {.count = 1, .reusable = true}, SHIFT(220), + [391] = {.count = 1, .reusable = true}, SHIFT(221), + [393] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 1), + [395] = {.count = 1, .reusable = false}, SHIFT(222), + [397] = {.count = 1, .reusable = false}, SHIFT(223), + [399] = {.count = 1, .reusable = true}, SHIFT(222), + [401] = {.count = 1, .reusable = true}, SHIFT(223), + [403] = {.count = 1, .reusable = true}, SHIFT(224), + [405] = {.count = 1, .reusable = false}, SHIFT(225), + [407] = {.count = 1, .reusable = true}, SHIFT(225), + [409] = {.count = 1, .reusable = false}, SHIFT(226), + [411] = {.count = 1, .reusable = true}, SHIFT(226), + [413] = {.count = 1, .reusable = true}, SHIFT(227), + [415] = {.count = 1, .reusable = true}, REDUCE(sym_command, 1), + [417] = {.count = 1, .reusable = false}, REDUCE(sym_command, 1), + [419] = {.count = 1, .reusable = false}, SHIFT(230), + [421] = {.count = 1, .reusable = true}, SHIFT(231), + [423] = {.count = 1, .reusable = true}, SHIFT(232), + [425] = {.count = 1, .reusable = false}, SHIFT(232), + [427] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 1), + [429] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 1), + [431] = {.count = 1, .reusable = true}, SHIFT(18), + [433] = {.count = 1, .reusable = true}, SHIFT(239), + [435] = {.count = 1, .reusable = true}, SHIFT(240), + [437] = {.count = 1, .reusable = true}, SHIFT(242), + [439] = {.count = 1, .reusable = true}, SHIFT(243), + [441] = {.count = 1, .reusable = true}, SHIFT(245), + [443] = {.count = 1, .reusable = true}, SHIFT(246), + [445] = {.count = 1, .reusable = true}, SHIFT(247), + [447] = {.count = 1, .reusable = true}, SHIFT(248), + [449] = {.count = 1, .reusable = false}, SHIFT(249), + [451] = {.count = 1, .reusable = true}, SHIFT(250), + [453] = {.count = 1, .reusable = true}, SHIFT(251), + [455] = {.count = 1, .reusable = true}, SHIFT(252), + [457] = {.count = 1, .reusable = true}, SHIFT(253), + [459] = {.count = 1, .reusable = true}, SHIFT(254), + [461] = {.count = 1, .reusable = false}, SHIFT(255), + [463] = {.count = 1, .reusable = true}, SHIFT(255), + [465] = {.count = 1, .reusable = true}, SHIFT(256), + [467] = {.count = 1, .reusable = false}, SHIFT(257), + [469] = {.count = 1, .reusable = true}, SHIFT(258), + [471] = {.count = 1, .reusable = true}, SHIFT(259), + [473] = {.count = 1, .reusable = false}, SHIFT(260), + [475] = {.count = 1, .reusable = true}, SHIFT(261), + [477] = {.count = 1, .reusable = true}, SHIFT(262), + [479] = {.count = 1, .reusable = true}, SHIFT(263), + [481] = {.count = 1, .reusable = true}, SHIFT(264), + [483] = {.count = 1, .reusable = true}, SHIFT(265), + [485] = {.count = 1, .reusable = false}, SHIFT(261), + [487] = {.count = 1, .reusable = true}, SHIFT(257), + [489] = {.count = 1, .reusable = true}, SHIFT(267), + [491] = {.count = 1, .reusable = false}, SHIFT(268), + [493] = {.count = 1, .reusable = true}, SHIFT(268), [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(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 = 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), + [499] = {.count = 1, .reusable = true}, SHIFT(271), + [501] = {.count = 1, .reusable = true}, SHIFT(272), + [503] = {.count = 1, .reusable = false}, SHIFT(273), + [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 = true}, SHIFT(277), + [513] = {.count = 1, .reusable = true}, SHIFT(278), + [515] = {.count = 1, .reusable = false}, SHIFT(274), + [517] = {.count = 1, .reusable = true}, SHIFT(270), + [519] = {.count = 1, .reusable = true}, SHIFT(281), + [521] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), + [523] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), + [525] = {.count = 1, .reusable = false}, SHIFT(283), + [527] = {.count = 1, .reusable = false}, SHIFT(284), + [529] = {.count = 1, .reusable = true}, SHIFT(286), + [531] = {.count = 1, .reusable = true}, SHIFT(287), + [533] = {.count = 1, .reusable = false}, SHIFT(288), + [535] = {.count = 1, .reusable = true}, SHIFT(288), + [537] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [539] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [541] = {.count = 1, .reusable = true}, SHIFT(289), + [543] = {.count = 1, .reusable = true}, SHIFT(290), + [545] = {.count = 1, .reusable = true}, SHIFT(291), + [547] = {.count = 1, .reusable = false}, SHIFT(292), + [549] = {.count = 1, .reusable = true}, SHIFT(292), + [551] = {.count = 1, .reusable = true}, SHIFT(296), + [553] = {.count = 1, .reusable = true}, SHIFT(297), + [555] = {.count = 1, .reusable = true}, SHIFT(298), + [557] = {.count = 1, .reusable = false}, SHIFT(297), + [559] = {.count = 1, .reusable = true}, SHIFT(299), + [561] = {.count = 1, .reusable = true}, SHIFT(300), + [563] = {.count = 1, .reusable = true}, SHIFT(301), + [565] = {.count = 1, .reusable = true}, SHIFT(302), + [567] = {.count = 1, .reusable = true}, SHIFT(306), + [569] = {.count = 1, .reusable = true}, SHIFT(307), + [571] = {.count = 1, .reusable = true}, SHIFT(309), + [573] = {.count = 1, .reusable = true}, SHIFT(311), [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), + [579] = {.count = 1, .reusable = true}, SHIFT(318), + [581] = {.count = 1, .reusable = false}, SHIFT(319), [583] = {.count = 1, .reusable = true}, SHIFT(320), - [585] = {.count = 1, .reusable = false}, SHIFT(321), - [587] = {.count = 1, .reusable = false}, SHIFT(322), + [585] = {.count = 1, .reusable = true}, SHIFT(321), + [587] = {.count = 1, .reusable = true}, 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), + [591] = {.count = 1, .reusable = true}, SHIFT(324), + [593] = {.count = 1, .reusable = false}, SHIFT(326), + [595] = {.count = 1, .reusable = false}, SHIFT(320), + [597] = {.count = 1, .reusable = true}, SHIFT(327), + [599] = {.count = 1, .reusable = true}, SHIFT(328), + [601] = {.count = 1, .reusable = false}, SHIFT(329), + [603] = {.count = 1, .reusable = true}, SHIFT(330), + [605] = {.count = 1, .reusable = true}, SHIFT(331), + [607] = {.count = 1, .reusable = true}, SHIFT(332), + [609] = {.count = 1, .reusable = true}, SHIFT(333), + [611] = {.count = 1, .reusable = true}, SHIFT(334), + [613] = {.count = 1, .reusable = false}, SHIFT(335), + [615] = {.count = 1, .reusable = false}, SHIFT(330), + [617] = {.count = 1, .reusable = true}, SHIFT(336), + [619] = {.count = 1, .reusable = false}, SHIFT(338), + [621] = {.count = 1, .reusable = false}, SHIFT(339), + [623] = {.count = 1, .reusable = true}, SHIFT(341), + [625] = {.count = 1, .reusable = true}, SHIFT(342), + [627] = {.count = 1, .reusable = false}, SHIFT(343), [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 = 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}, 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}, 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), + [631] = {.count = 1, .reusable = true}, SHIFT(344), + [633] = {.count = 1, .reusable = true}, SHIFT(345), + [635] = {.count = 1, .reusable = true}, SHIFT(346), + [637] = {.count = 1, .reusable = false}, SHIFT(347), + [639] = {.count = 1, .reusable = true}, SHIFT(347), + [641] = {.count = 1, .reusable = true}, SHIFT(351), + [643] = {.count = 1, .reusable = true}, SHIFT(352), + [645] = {.count = 1, .reusable = true}, SHIFT(354), + [647] = {.count = 1, .reusable = false}, SHIFT(355), + [649] = {.count = 1, .reusable = false}, SHIFT(356), + [651] = {.count = 1, .reusable = true}, SHIFT(355), + [653] = {.count = 1, .reusable = true}, SHIFT(356), + [655] = {.count = 1, .reusable = true}, SHIFT(357), + [657] = {.count = 1, .reusable = false}, SHIFT(358), + [659] = {.count = 1, .reusable = true}, SHIFT(358), + [661] = {.count = 1, .reusable = false}, SHIFT(359), + [663] = {.count = 1, .reusable = true}, SHIFT(359), + [665] = {.count = 1, .reusable = true}, SHIFT(360), + [667] = {.count = 1, .reusable = false}, SHIFT(362), + [669] = {.count = 1, .reusable = true}, SHIFT(363), + [671] = {.count = 1, .reusable = true}, SHIFT(364), + [673] = {.count = 1, .reusable = false}, SHIFT(364), + [675] = {.count = 1, .reusable = true}, SHIFT(66), + [677] = {.count = 1, .reusable = true}, SHIFT(367), + [679] = {.count = 1, .reusable = true}, SHIFT(368), + [681] = {.count = 1, .reusable = true}, SHIFT(369), + [683] = {.count = 1, .reusable = false}, SHIFT(370), + [685] = {.count = 1, .reusable = true}, SHIFT(370), + [687] = {.count = 1, .reusable = false}, SHIFT(372), + [689] = {.count = 1, .reusable = false}, SHIFT(373), + [691] = {.count = 1, .reusable = true}, SHIFT(375), + [693] = {.count = 1, .reusable = true}, SHIFT(376), + [695] = {.count = 1, .reusable = false}, SHIFT(377), + [697] = {.count = 1, .reusable = true}, SHIFT(377), + [699] = {.count = 1, .reusable = true}, SHIFT(378), + [701] = {.count = 1, .reusable = false}, SHIFT(379), + [703] = {.count = 1, .reusable = true}, SHIFT(379), + [705] = {.count = 1, .reusable = true}, SHIFT(380), + [707] = {.count = 1, .reusable = true}, SHIFT(381), + [709] = {.count = 1, .reusable = true}, SHIFT(382), + [711] = {.count = 1, .reusable = false}, SHIFT(383), + [713] = {.count = 1, .reusable = true}, SHIFT(383), + [715] = {.count = 1, .reusable = true}, SHIFT(387), + [717] = {.count = 1, .reusable = true}, SHIFT(389), + [719] = {.count = 1, .reusable = true}, SHIFT(390), + [721] = {.count = 1, .reusable = true}, SHIFT(391), + [723] = {.count = 1, .reusable = true}, SHIFT(392), + [725] = {.count = 1, .reusable = false}, SHIFT(394), + [727] = {.count = 1, .reusable = false}, SHIFT(392), + [729] = {.count = 1, .reusable = true}, SHIFT(395), + [731] = {.count = 1, .reusable = true}, SHIFT(396), + [733] = {.count = 1, .reusable = false}, SHIFT(397), + [735] = {.count = 1, .reusable = false}, SHIFT(396), + [737] = {.count = 1, .reusable = true}, SHIFT(399), + [739] = {.count = 1, .reusable = true}, SHIFT(400), + [741] = {.count = 1, .reusable = false}, SHIFT(401), + [743] = {.count = 1, .reusable = true}, SHIFT(401), + [745] = {.count = 1, .reusable = true}, SHIFT(402), + [747] = {.count = 1, .reusable = false}, SHIFT(403), + [749] = {.count = 1, .reusable = true}, SHIFT(403), + [751] = {.count = 1, .reusable = true}, SHIFT(404), + [753] = {.count = 1, .reusable = false}, SHIFT(406), + [755] = {.count = 1, .reusable = true}, SHIFT(407), + [757] = {.count = 1, .reusable = true}, SHIFT(408), + [759] = {.count = 1, .reusable = false}, SHIFT(408), + [761] = {.count = 1, .reusable = true}, SHIFT(97), + [763] = {.count = 1, .reusable = true}, SHIFT(413), + [765] = {.count = 1, .reusable = true}, SHIFT(414), + [767] = {.count = 1, .reusable = true}, SHIFT(415), + [769] = {.count = 1, .reusable = true}, SHIFT(419), + [771] = {.count = 1, .reusable = true}, SHIFT(420), + [773] = {.count = 1, .reusable = true}, SHIFT(422), + [775] = {.count = 1, .reusable = true}, SHIFT(424), + [777] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [779] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [781] = {.count = 1, .reusable = true}, SHIFT(429), + [783] = {.count = 1, .reusable = false}, SHIFT(430), + [785] = {.count = 1, .reusable = true}, SHIFT(431), + [787] = {.count = 1, .reusable = false}, SHIFT(432), + [789] = {.count = 1, .reusable = true}, SHIFT(433), + [791] = {.count = 1, .reusable = true}, SHIFT(434), + [793] = {.count = 1, .reusable = true}, SHIFT(435), + [795] = {.count = 1, .reusable = true}, SHIFT(436), + [797] = {.count = 1, .reusable = true}, SHIFT(437), + [799] = {.count = 1, .reusable = false}, SHIFT(439), + [801] = {.count = 1, .reusable = false}, SHIFT(433), + [803] = {.count = 1, .reusable = false}, SHIFT(440), + [805] = {.count = 1, .reusable = true}, SHIFT(441), + [807] = {.count = 1, .reusable = false}, SHIFT(442), + [809] = {.count = 1, .reusable = true}, SHIFT(443), + [811] = {.count = 1, .reusable = true}, SHIFT(444), + [813] = {.count = 1, .reusable = true}, SHIFT(445), + [815] = {.count = 1, .reusable = true}, SHIFT(446), + [817] = {.count = 1, .reusable = true}, SHIFT(447), + [819] = {.count = 1, .reusable = false}, SHIFT(448), + [821] = {.count = 1, .reusable = false}, SHIFT(443), + [823] = {.count = 1, .reusable = true}, SHIFT(449), + [825] = {.count = 1, .reusable = false}, SHIFT(451), + [827] = {.count = 1, .reusable = false}, SHIFT(452), + [829] = {.count = 1, .reusable = true}, SHIFT(454), + [831] = {.count = 1, .reusable = true}, SHIFT(455), + [833] = {.count = 1, .reusable = false}, SHIFT(456), + [835] = {.count = 1, .reusable = true}, SHIFT(456), + [837] = {.count = 1, .reusable = true}, SHIFT(457), + [839] = {.count = 1, .reusable = true}, SHIFT(458), + [841] = {.count = 1, .reusable = true}, SHIFT(459), + [843] = {.count = 1, .reusable = false}, SHIFT(460), + [845] = {.count = 1, .reusable = true}, SHIFT(460), + [847] = {.count = 1, .reusable = true}, SHIFT(464), + [849] = {.count = 1, .reusable = true}, SHIFT(465), + [851] = {.count = 1, .reusable = true}, SHIFT(466), + [853] = {.count = 1, .reusable = true}, SHIFT(467), + [855] = {.count = 1, .reusable = true}, SHIFT(468), + [857] = {.count = 1, .reusable = false}, SHIFT(469), + [859] = {.count = 1, .reusable = false}, SHIFT(470), [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), + [865] = {.count = 1, .reusable = true}, SHIFT(471), + [867] = {.count = 1, .reusable = false}, SHIFT(472), + [869] = {.count = 1, .reusable = true}, SHIFT(472), + [871] = {.count = 1, .reusable = false}, SHIFT(473), [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), + [875] = {.count = 1, .reusable = true}, SHIFT(474), + [877] = {.count = 1, .reusable = false}, SHIFT(477), + [879] = {.count = 1, .reusable = false}, SHIFT(478), + [881] = {.count = 1, .reusable = true}, SHIFT(479), + [883] = {.count = 1, .reusable = false}, SHIFT(479), + [885] = {.count = 1, .reusable = true}, SHIFT(122), + [887] = {.count = 1, .reusable = true}, SHIFT(484), + [889] = {.count = 1, .reusable = true}, REDUCE(sym_negated_command, 2), + [891] = {.count = 1, .reusable = false}, REDUCE(sym_negated_command, 2), + [893] = {.count = 1, .reusable = true}, SHIFT(487), + [895] = {.count = 1, .reusable = false}, SHIFT(489), + [897] = {.count = 1, .reusable = false}, SHIFT(490), + [899] = {.count = 1, .reusable = true}, SHIFT(492), + [901] = {.count = 1, .reusable = true}, SHIFT(493), [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 = true}, REDUCE(sym_heredoc_body, 1), - [913] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), - [915] = {.count = 1, .reusable = true}, SHIFT(505), - [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 = true}, SHIFT(503), - [925] = {.count = 1, .reusable = true}, SHIFT(504), - [927] = {.count = 1, .reusable = false}, SHIFT(506), - [929] = {.count = 1, .reusable = true}, SHIFT(506), - [931] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), - [933] = {.count = 1, .reusable = true}, REDUCE(sym_program, 2), - [935] = {.count = 1, .reusable = false}, REDUCE(sym__terminated_statement, 2), - [937] = {.count = 1, .reusable = true}, SHIFT(511), - [939] = {.count = 1, .reusable = true}, SHIFT(512), - [941] = {.count = 1, .reusable = true}, SHIFT(514), + [905] = {.count = 1, .reusable = true}, SHIFT(494), + [907] = {.count = 1, .reusable = true}, SHIFT(495), + [909] = {.count = 1, .reusable = true}, SHIFT(496), + [911] = {.count = 1, .reusable = true}, SHIFT(497), + [913] = {.count = 1, .reusable = false}, SHIFT(498), + [915] = {.count = 1, .reusable = true}, SHIFT(498), + [917] = {.count = 1, .reusable = true}, SHIFT(502), + [919] = {.count = 1, .reusable = true}, SHIFT(503), + [921] = {.count = 1, .reusable = false}, SHIFT(502), + [923] = {.count = 1, .reusable = true}, SHIFT(504), + [925] = {.count = 1, .reusable = true}, SHIFT(507), + [927] = {.count = 1, .reusable = true}, SHIFT(508), + [929] = {.count = 1, .reusable = false}, SHIFT(507), + [931] = {.count = 1, .reusable = true}, SHIFT(509), + [933] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [935] = {.count = 1, .reusable = true}, SHIFT(510), + [937] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [939] = {.count = 1, .reusable = false}, SHIFT(512), + [941] = {.count = 1, .reusable = false}, SHIFT(513), [943] = {.count = 1, .reusable = true}, SHIFT(515), [945] = {.count = 1, .reusable = true}, SHIFT(516), - [947] = {.count = 1, .reusable = false}, SHIFT(518), - [949] = {.count = 1, .reusable = true}, SHIFT(518), - [951] = {.count = 1, .reusable = true}, REDUCE(sym_redirected_statement, 2), - [953] = {.count = 1, .reusable = false}, REDUCE(sym_redirected_statement, 2), - [955] = {.count = 1, .reusable = true}, SHIFT(520), - [957] = {.count = 1, .reusable = true}, SHIFT(521), - [959] = {.count = 1, .reusable = true}, SHIFT(522), - [961] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), - [963] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), - [965] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), - [967] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), - [969] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), - [971] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), - [973] = {.count = 1, .reusable = false}, SHIFT(524), - [975] = {.count = 1, .reusable = true}, SHIFT(524), - [977] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2), - [980] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(51), - [983] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4), - [986] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(5), - [989] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(6), - [992] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(7), - [995] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(8), - [998] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(9), - [1001] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(10), - [1004] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(11), - [1007] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(52), - [1010] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(13), - [1013] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(14), - [1016] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(53), - [1019] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(54), - [1022] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(17), - [1025] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(17), - [1028] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(55), - [1031] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(19), - [1034] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(20), - [1037] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(56), - [1040] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(22), - [1043] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(23), - [1046] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(24), - [1049] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(25), - [1052] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(57), - [1055] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), - [1058] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(92), - [1061] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(17), - [1064] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(17), - [1067] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), - [1069] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), - [1071] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 4), - [1073] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 4), - [1075] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), - [1077] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), - [1079] = {.count = 1, .reusable = true}, SHIFT(529), - [1081] = {.count = 1, .reusable = true}, SHIFT(530), - [1083] = {.count = 1, .reusable = true}, SHIFT(532), - [1085] = {.count = 1, .reusable = true}, SHIFT(533), - [1087] = {.count = 1, .reusable = true}, SHIFT(534), - [1089] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), - [1091] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), - [1093] = {.count = 1, .reusable = true}, SHIFT(535), - [1095] = {.count = 1, .reusable = true}, SHIFT(536), - [1097] = {.count = 1, .reusable = true}, SHIFT(537), - [1099] = {.count = 1, .reusable = false}, 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}, SHIFT(542), - [1109] = {.count = 1, .reusable = true}, SHIFT(543), - [1111] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 4), - [1113] = {.count = 1, .reusable = true}, SHIFT(545), - [1115] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 4), - [1117] = {.count = 1, .reusable = false}, SHIFT(547), - [1119] = {.count = 1, .reusable = false}, SHIFT(548), - [1121] = {.count = 1, .reusable = true}, SHIFT(550), - [1123] = {.count = 1, .reusable = true}, SHIFT(551), - [1125] = {.count = 1, .reusable = false}, SHIFT(552), - [1127] = {.count = 1, .reusable = true}, SHIFT(552), - [1129] = {.count = 1, .reusable = true}, SHIFT(553), - [1131] = {.count = 1, .reusable = true}, SHIFT(554), - [1133] = {.count = 1, .reusable = true}, SHIFT(555), - [1135] = {.count = 1, .reusable = false}, SHIFT(556), - [1137] = {.count = 1, .reusable = true}, SHIFT(556), - [1139] = {.count = 1, .reusable = false}, SHIFT(566), - [1141] = {.count = 1, .reusable = true}, SHIFT(566), - [1143] = {.count = 1, .reusable = true}, SHIFT(570), - [1145] = {.count = 1, .reusable = false}, SHIFT(572), - [1147] = {.count = 1, .reusable = false}, SHIFT(573), - [1149] = {.count = 1, .reusable = true}, SHIFT(575), - [1151] = {.count = 1, .reusable = true}, SHIFT(576), - [1153] = {.count = 1, .reusable = false}, SHIFT(577), - [1155] = {.count = 1, .reusable = true}, SHIFT(577), - [1157] = {.count = 1, .reusable = true}, SHIFT(578), - [1159] = {.count = 1, .reusable = true}, SHIFT(579), - [1161] = {.count = 1, .reusable = true}, SHIFT(580), - [1163] = {.count = 1, .reusable = false}, SHIFT(581), - [1165] = {.count = 1, .reusable = true}, SHIFT(581), - [1167] = {.count = 1, .reusable = false}, SHIFT(591), - [1169] = {.count = 1, .reusable = true}, SHIFT(591), - [1171] = {.count = 1, .reusable = true}, SHIFT(592), - [1173] = {.count = 1, .reusable = true}, SHIFT(593), - [1175] = {.count = 1, .reusable = false}, SHIFT(592), - [1177] = {.count = 1, .reusable = true}, SHIFT(594), - [1179] = {.count = 1, .reusable = true}, SHIFT(595), - [1181] = {.count = 1, .reusable = true}, SHIFT(596), - [1183] = {.count = 1, .reusable = false}, 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(601), - [1193] = {.count = 1, .reusable = true}, SHIFT(602), - [1195] = {.count = 1, .reusable = true}, SHIFT(607), - [1197] = {.count = 1, .reusable = false}, SHIFT(609), - [1199] = {.count = 1, .reusable = false}, SHIFT(610), - [1201] = {.count = 1, .reusable = true}, SHIFT(612), - [1203] = {.count = 1, .reusable = true}, SHIFT(613), - [1205] = {.count = 1, .reusable = false}, SHIFT(614), - [1207] = {.count = 1, .reusable = true}, SHIFT(614), - [1209] = {.count = 1, .reusable = true}, SHIFT(615), - [1211] = {.count = 1, .reusable = true}, SHIFT(616), - [1213] = {.count = 1, .reusable = true}, SHIFT(617), - [1215] = {.count = 1, .reusable = false}, SHIFT(618), - [1217] = {.count = 1, .reusable = true}, SHIFT(618), - [1219] = {.count = 1, .reusable = true}, SHIFT(628), - [1221] = {.count = 1, .reusable = true}, SHIFT(629), - [1223] = {.count = 1, .reusable = true}, SHIFT(630), - [1225] = {.count = 1, .reusable = false}, SHIFT(629), - [1227] = {.count = 1, .reusable = true}, SHIFT(631), - [1229] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), - [1231] = {.count = 1, .reusable = true}, SHIFT(632), - [1233] = {.count = 1, .reusable = false}, SHIFT(634), - [1235] = {.count = 1, .reusable = false}, SHIFT(635), - [1237] = {.count = 1, .reusable = true}, SHIFT(636), - [1239] = {.count = 1, .reusable = true}, SHIFT(637), - [1241] = {.count = 1, .reusable = true}, SHIFT(638), - [1243] = {.count = 1, .reusable = false}, SHIFT(639), - [1245] = {.count = 1, .reusable = true}, SHIFT(639), - [1247] = {.count = 1, .reusable = true}, SHIFT(640), - [1249] = {.count = 1, .reusable = false}, SHIFT(642), - [1251] = {.count = 1, .reusable = true}, SHIFT(642), - [1253] = {.count = 1, .reusable = true}, SHIFT(641), - [1255] = {.count = 1, .reusable = true}, SHIFT(643), - [1257] = {.count = 1, .reusable = false}, SHIFT(645), - [1259] = {.count = 1, .reusable = true}, SHIFT(645), - [1261] = {.count = 1, .reusable = true}, SHIFT(644), - [1263] = {.count = 1, .reusable = false}, SHIFT(646), - [1265] = {.count = 1, .reusable = true}, SHIFT(647), - [1267] = {.count = 1, .reusable = true}, SHIFT(646), - [1269] = {.count = 1, .reusable = false}, SHIFT(651), - [1271] = {.count = 1, .reusable = true}, SHIFT(651), - [1273] = {.count = 1, .reusable = false}, SHIFT(655), - [1275] = {.count = 1, .reusable = true}, SHIFT(656), - [1277] = {.count = 1, .reusable = true}, SHIFT(655), - [1279] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), - [1281] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), - [1283] = {.count = 1, .reusable = true}, SHIFT(661), - [1285] = {.count = 1, .reusable = true}, REDUCE(sym_postfix_expression, 2), - [1287] = {.count = 1, .reusable = false}, REDUCE(sym_postfix_expression, 2), - [1289] = {.count = 1, .reusable = true}, SHIFT(662), - [1291] = {.count = 1, .reusable = true}, SHIFT(663), - [1293] = {.count = 1, .reusable = true}, SHIFT(664), - [1295] = {.count = 1, .reusable = false}, SHIFT(666), - [1297] = {.count = 1, .reusable = false}, SHIFT(668), - [1299] = {.count = 1, .reusable = false}, SHIFT(670), - [1301] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), - [1303] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), - [1305] = {.count = 1, .reusable = false}, SHIFT(672), - [1307] = {.count = 1, .reusable = true}, SHIFT(672), - [1309] = {.count = 1, .reusable = true}, SHIFT(677), - [1311] = {.count = 1, .reusable = true}, SHIFT(678), - [1313] = {.count = 1, .reusable = true}, SHIFT(679), - [1315] = {.count = 1, .reusable = true}, SHIFT(680), - [1317] = {.count = 1, .reusable = false}, SHIFT(681), - [1319] = {.count = 1, .reusable = true}, SHIFT(681), - [1321] = {.count = 1, .reusable = true}, SHIFT(683), - [1323] = {.count = 1, .reusable = true}, SHIFT(684), - [1325] = {.count = 1, .reusable = false}, SHIFT(687), - [1327] = {.count = 1, .reusable = false}, SHIFT(688), - [1329] = {.count = 1, .reusable = false}, SHIFT(689), - [1331] = {.count = 1, .reusable = true}, SHIFT(693), - [1333] = {.count = 1, .reusable = false}, SHIFT(694), - [1335] = {.count = 1, .reusable = true}, SHIFT(694), - [1337] = {.count = 1, .reusable = true}, SHIFT(695), - [1339] = {.count = 1, .reusable = false}, SHIFT(697), - [1341] = {.count = 1, .reusable = false}, SHIFT(698), - [1343] = {.count = 1, .reusable = false}, SHIFT(699), - [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 = true}, SHIFT(702), - [1353] = {.count = 1, .reusable = true}, SHIFT(703), - [1355] = {.count = 1, .reusable = false}, SHIFT(704), - [1357] = {.count = 1, .reusable = true}, SHIFT(704), - [1359] = {.count = 1, .reusable = true}, SHIFT(705), - [1361] = {.count = 1, .reusable = false}, SHIFT(707), - [1363] = {.count = 1, .reusable = true}, SHIFT(707), - [1365] = {.count = 1, .reusable = true}, SHIFT(706), - [1367] = {.count = 1, .reusable = true}, SHIFT(708), - [1369] = {.count = 1, .reusable = false}, SHIFT(710), - [1371] = {.count = 1, .reusable = true}, SHIFT(710), - [1373] = {.count = 1, .reusable = true}, SHIFT(709), - [1375] = {.count = 1, .reusable = false}, SHIFT(711), - [1377] = {.count = 1, .reusable = true}, SHIFT(712), - [1379] = {.count = 1, .reusable = true}, SHIFT(711), - [1381] = {.count = 1, .reusable = false}, SHIFT(716), - [1383] = {.count = 1, .reusable = true}, SHIFT(716), - [1385] = {.count = 1, .reusable = false}, SHIFT(720), - [1387] = {.count = 1, .reusable = true}, SHIFT(721), - [1389] = {.count = 1, .reusable = true}, SHIFT(720), - [1391] = {.count = 1, .reusable = true}, SHIFT(725), - [1393] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), - [1395] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), - [1397] = {.count = 1, .reusable = true}, SHIFT(726), - [1399] = {.count = 1, .reusable = true}, SHIFT(727), - [1401] = {.count = 1, .reusable = true}, SHIFT(728), - [1403] = {.count = 1, .reusable = false}, SHIFT(730), - [1405] = {.count = 1, .reusable = false}, SHIFT(732), - [1407] = {.count = 1, .reusable = false}, SHIFT(734), - [1409] = {.count = 1, .reusable = true}, SHIFT(734), - [1411] = {.count = 1, .reusable = true}, SHIFT(735), - [1413] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), - [1415] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), - [1417] = {.count = 1, .reusable = true}, SHIFT(740), - [1419] = {.count = 1, .reusable = true}, SHIFT(741), - [1421] = {.count = 1, .reusable = true}, SHIFT(742), - [1423] = {.count = 1, .reusable = true}, SHIFT(743), - [1425] = {.count = 1, .reusable = false}, SHIFT(744), - [1427] = {.count = 1, .reusable = true}, SHIFT(744), - [1429] = {.count = 1, .reusable = true}, SHIFT(746), - [1431] = {.count = 1, .reusable = true}, SHIFT(747), - [1433] = {.count = 1, .reusable = false}, SHIFT(749), - [1435] = {.count = 1, .reusable = true}, SHIFT(749), - [1437] = {.count = 1, .reusable = false}, SHIFT(752), - [1439] = {.count = 1, .reusable = true}, SHIFT(752), - [1441] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [1443] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [1445] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), - [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 = true}, SHIFT(757), - [1457] = {.count = 1, .reusable = true}, SHIFT(758), - [1459] = {.count = 1, .reusable = false}, SHIFT(760), - [1461] = {.count = 1, .reusable = false}, SHIFT(761), - [1463] = {.count = 1, .reusable = true}, SHIFT(762), - [1465] = {.count = 1, .reusable = true}, SHIFT(763), - [1467] = {.count = 1, .reusable = true}, SHIFT(764), - [1469] = {.count = 1, .reusable = false}, SHIFT(765), - [1471] = {.count = 1, .reusable = true}, SHIFT(765), - [1473] = {.count = 1, .reusable = true}, SHIFT(766), - [1475] = {.count = 1, .reusable = false}, SHIFT(768), - [1477] = {.count = 1, .reusable = true}, SHIFT(768), - [1479] = {.count = 1, .reusable = true}, SHIFT(767), - [1481] = {.count = 1, .reusable = true}, SHIFT(769), - [1483] = {.count = 1, .reusable = false}, SHIFT(771), - [1485] = {.count = 1, .reusable = true}, SHIFT(771), - [1487] = {.count = 1, .reusable = true}, SHIFT(770), - [1489] = {.count = 1, .reusable = false}, SHIFT(772), - [1491] = {.count = 1, .reusable = true}, SHIFT(773), - [1493] = {.count = 1, .reusable = true}, SHIFT(772), - [1495] = {.count = 1, .reusable = false}, SHIFT(777), - [1497] = {.count = 1, .reusable = true}, SHIFT(777), - [1499] = {.count = 1, .reusable = false}, SHIFT(781), - [1501] = {.count = 1, .reusable = true}, SHIFT(782), - [1503] = {.count = 1, .reusable = true}, SHIFT(781), - [1505] = {.count = 1, .reusable = true}, SHIFT(787), - [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 = true}, SHIFT(792), - [1515] = {.count = 1, .reusable = true}, SHIFT(793), - [1517] = {.count = 1, .reusable = false}, SHIFT(795), - [1519] = {.count = 1, .reusable = false}, SHIFT(796), - [1521] = {.count = 1, .reusable = true}, SHIFT(797), - [1523] = {.count = 1, .reusable = true}, SHIFT(798), - [1525] = {.count = 1, .reusable = true}, SHIFT(799), - [1527] = {.count = 1, .reusable = false}, SHIFT(800), - [1529] = {.count = 1, .reusable = true}, SHIFT(800), - [1531] = {.count = 1, .reusable = true}, SHIFT(801), - [1533] = {.count = 1, .reusable = false}, SHIFT(803), - [1535] = {.count = 1, .reusable = true}, SHIFT(803), - [1537] = {.count = 1, .reusable = true}, SHIFT(802), - [1539] = {.count = 1, .reusable = true}, SHIFT(804), - [1541] = {.count = 1, .reusable = false}, SHIFT(806), - [1543] = {.count = 1, .reusable = true}, SHIFT(806), - [1545] = {.count = 1, .reusable = true}, SHIFT(805), - [1547] = {.count = 1, .reusable = false}, SHIFT(807), - [1549] = {.count = 1, .reusable = true}, SHIFT(808), - [1551] = {.count = 1, .reusable = true}, SHIFT(807), - [1553] = {.count = 1, .reusable = false}, SHIFT(812), - [1555] = {.count = 1, .reusable = true}, SHIFT(812), - [1557] = {.count = 1, .reusable = false}, SHIFT(816), - [1559] = {.count = 1, .reusable = true}, SHIFT(817), - [1561] = {.count = 1, .reusable = true}, SHIFT(816), - [1563] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1565] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(110), - [1568] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1570] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(111), - [1573] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(112), - [1576] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(113), - [1579] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(114), - [1582] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(115), - [1585] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(116), - [1588] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(117), - [1591] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(118), - [1594] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(393), - [1597] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(114), - [1600] = {.count = 1, .reusable = true}, SHIFT(821), - [1602] = {.count = 1, .reusable = false}, SHIFT(823), - [1604] = {.count = 1, .reusable = false}, SHIFT(824), - [1606] = {.count = 1, .reusable = true}, SHIFT(825), - [1608] = {.count = 1, .reusable = true}, SHIFT(826), - [1610] = {.count = 1, .reusable = true}, SHIFT(827), - [1612] = {.count = 1, .reusable = false}, SHIFT(828), - [1614] = {.count = 1, .reusable = true}, SHIFT(828), - [1616] = {.count = 1, .reusable = true}, SHIFT(829), - [1618] = {.count = 1, .reusable = false}, SHIFT(831), - [1620] = {.count = 1, .reusable = true}, SHIFT(831), - [1622] = {.count = 1, .reusable = true}, SHIFT(830), - [1624] = {.count = 1, .reusable = true}, SHIFT(832), - [1626] = {.count = 1, .reusable = false}, SHIFT(834), - [1628] = {.count = 1, .reusable = true}, SHIFT(834), - [1630] = {.count = 1, .reusable = true}, SHIFT(833), - [1632] = {.count = 1, .reusable = false}, SHIFT(835), - [1634] = {.count = 1, .reusable = true}, SHIFT(836), - [1636] = {.count = 1, .reusable = true}, SHIFT(835), - [1638] = {.count = 1, .reusable = false}, SHIFT(840), - [1640] = {.count = 1, .reusable = true}, SHIFT(840), - [1642] = {.count = 1, .reusable = false}, SHIFT(844), - [1644] = {.count = 1, .reusable = true}, SHIFT(845), - [1646] = {.count = 1, .reusable = true}, SHIFT(844), - [1648] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), - [1650] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), - [1652] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(121), - [1655] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(122), - [1658] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(123), - [1661] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(124), - [1664] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(125), - [1667] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(126), - [1670] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(127), - [1673] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(128), - [1676] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(415), - [1679] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(124), - [1682] = {.count = 1, .reusable = true}, SHIFT(849), - [1684] = {.count = 1, .reusable = false}, SHIFT(851), - [1686] = {.count = 1, .reusable = false}, SHIFT(852), - [1688] = {.count = 1, .reusable = true}, SHIFT(853), - [1690] = {.count = 1, .reusable = true}, SHIFT(854), - [1692] = {.count = 1, .reusable = true}, SHIFT(855), - [1694] = {.count = 1, .reusable = false}, SHIFT(856), - [1696] = {.count = 1, .reusable = true}, SHIFT(856), - [1698] = {.count = 1, .reusable = true}, SHIFT(857), - [1700] = {.count = 1, .reusable = false}, SHIFT(859), - [1702] = {.count = 1, .reusable = true}, SHIFT(859), - [1704] = {.count = 1, .reusable = true}, SHIFT(858), - [1706] = {.count = 1, .reusable = true}, SHIFT(860), - [1708] = {.count = 1, .reusable = false}, SHIFT(862), - [1710] = {.count = 1, .reusable = true}, SHIFT(862), - [1712] = {.count = 1, .reusable = true}, SHIFT(861), - [1714] = {.count = 1, .reusable = false}, SHIFT(863), - [1716] = {.count = 1, .reusable = true}, SHIFT(864), - [1718] = {.count = 1, .reusable = true}, SHIFT(863), - [1720] = {.count = 1, .reusable = false}, SHIFT(868), - [1722] = {.count = 1, .reusable = true}, SHIFT(868), - [1724] = {.count = 1, .reusable = false}, SHIFT(872), - [1726] = {.count = 1, .reusable = true}, SHIFT(873), - [1728] = {.count = 1, .reusable = true}, SHIFT(872), - [1730] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1732] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1734] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(139), - [1737] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), - [1739] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), - [1741] = {.count = 1, .reusable = true}, SHIFT(877), - [1743] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), - [1745] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), - [1747] = {.count = 1, .reusable = true}, SHIFT(878), - [1749] = {.count = 1, .reusable = true}, SHIFT(879), - [1751] = {.count = 1, .reusable = true}, SHIFT(880), - [1753] = {.count = 1, .reusable = false}, SHIFT(881), - [1755] = {.count = 1, .reusable = true}, SHIFT(881), - [1757] = {.count = 1, .reusable = true}, SHIFT(882), - [1759] = {.count = 1, .reusable = false}, SHIFT(884), - [1761] = {.count = 1, .reusable = true}, SHIFT(884), - [1763] = {.count = 1, .reusable = true}, SHIFT(883), - [1765] = {.count = 1, .reusable = true}, SHIFT(885), - [1767] = {.count = 1, .reusable = false}, SHIFT(887), - [1769] = {.count = 1, .reusable = true}, SHIFT(887), - [1771] = {.count = 1, .reusable = true}, SHIFT(886), - [1773] = {.count = 1, .reusable = false}, SHIFT(888), - [1775] = {.count = 1, .reusable = true}, SHIFT(889), - [1777] = {.count = 1, .reusable = true}, SHIFT(888), - [1779] = {.count = 1, .reusable = false}, SHIFT(893), - [1781] = {.count = 1, .reusable = true}, SHIFT(893), - [1783] = {.count = 1, .reusable = false}, SHIFT(897), - [1785] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(898), - [1788] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(143), - [1791] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(144), - [1794] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(145), - [1797] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(146), - [1800] = {.count = 1, .reusable = true}, SHIFT(899), - [1802] = {.count = 1, .reusable = true}, SHIFT(900), - [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 = false}, 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(909), - [1820] = {.count = 1, .reusable = true}, SHIFT(910), - [1822] = {.count = 1, .reusable = true}, SHIFT(912), - [1824] = {.count = 1, .reusable = true}, SHIFT(913), - [1826] = {.count = 1, .reusable = false}, SHIFT(915), - [1828] = {.count = 1, .reusable = true}, SHIFT(915), - [1830] = {.count = 1, .reusable = true}, SHIFT(914), - [1832] = {.count = 1, .reusable = false}, SHIFT(917), - [1834] = {.count = 1, .reusable = true}, SHIFT(917), - [1836] = {.count = 1, .reusable = true}, SHIFT(916), - [1838] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 3), - [1840] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 3), - [1842] = {.count = 1, .reusable = true}, SHIFT(918), - [1844] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1846] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1848] = {.count = 1, .reusable = false}, SHIFT(920), - [1850] = {.count = 1, .reusable = false}, SHIFT(921), - [1852] = {.count = 1, .reusable = true}, SHIFT(923), - [1854] = {.count = 1, .reusable = true}, SHIFT(924), - [1856] = {.count = 1, .reusable = false}, SHIFT(925), - [1858] = {.count = 1, .reusable = true}, SHIFT(925), - [1860] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), - [1862] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), - [1864] = {.count = 1, .reusable = true}, SHIFT(926), - [1866] = {.count = 1, .reusable = true}, SHIFT(927), - [1868] = {.count = 1, .reusable = true}, SHIFT(928), - [1870] = {.count = 1, .reusable = false}, SHIFT(929), - [1872] = {.count = 1, .reusable = true}, SHIFT(929), - [1874] = {.count = 1, .reusable = true}, SHIFT(930), - [1876] = {.count = 1, .reusable = true}, SHIFT(931), - [1878] = {.count = 1, .reusable = false}, SHIFT(932), - [1880] = {.count = 1, .reusable = true}, SHIFT(932), - [1882] = {.count = 1, .reusable = false}, SHIFT(942), - [1884] = {.count = 1, .reusable = true}, SHIFT(942), - [1886] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), - [1888] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), - [1890] = {.count = 1, .reusable = true}, SHIFT(943), - [1892] = {.count = 1, .reusable = true}, SHIFT(944), - [1894] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), - [1896] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), - [1898] = {.count = 1, .reusable = false}, SHIFT(945), - [1900] = {.count = 1, .reusable = true}, SHIFT(945), - [1902] = {.count = 1, .reusable = false}, SHIFT(946), - [1904] = {.count = 1, .reusable = true}, SHIFT(946), - [1906] = {.count = 1, .reusable = false}, SHIFT(948), - [1908] = {.count = 1, .reusable = true}, SHIFT(948), - [1910] = {.count = 1, .reusable = true}, SHIFT(953), - [1912] = {.count = 1, .reusable = true}, SHIFT(954), - [1914] = {.count = 1, .reusable = true}, SHIFT(955), - [1916] = {.count = 1, .reusable = true}, SHIFT(956), - [1918] = {.count = 1, .reusable = false}, SHIFT(957), - [1920] = {.count = 1, .reusable = true}, SHIFT(957), - [1922] = {.count = 1, .reusable = false}, SHIFT(959), - [1924] = {.count = 1, .reusable = true}, SHIFT(959), - [1926] = {.count = 1, .reusable = true}, SHIFT(962), - [1928] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), - [1930] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), - [1932] = {.count = 1, .reusable = false}, SHIFT(963), - [1934] = {.count = 1, .reusable = true}, SHIFT(963), - [1936] = {.count = 1, .reusable = false}, SHIFT(964), - [1938] = {.count = 1, .reusable = true}, SHIFT(964), - [1940] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), - [1942] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), - [1944] = {.count = 1, .reusable = true}, SHIFT(967), - [1946] = {.count = 1, .reusable = false}, SHIFT(968), - [1948] = {.count = 1, .reusable = true}, SHIFT(968), - [1950] = {.count = 1, .reusable = true}, SHIFT(969), - [1952] = {.count = 1, .reusable = true}, SHIFT(970), - [1954] = {.count = 1, .reusable = true}, SHIFT(971), - [1956] = {.count = 1, .reusable = false}, SHIFT(972), - [1958] = {.count = 1, .reusable = true}, SHIFT(972), - [1960] = {.count = 1, .reusable = true}, SHIFT(980), - [1962] = {.count = 1, .reusable = true}, SHIFT(979), - [1964] = {.count = 1, .reusable = true}, SHIFT(981), - [1966] = {.count = 1, .reusable = true}, SHIFT(982), - [1968] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), - [1970] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), - [1972] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), - [1974] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), - [1976] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), - [1978] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), - [1980] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 2), - [1982] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 2), - [1984] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), - [1986] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), - [1988] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 3), - [1990] = {.count = 1, .reusable = true}, REDUCE(sym_program, 3), - [1992] = {.count = 1, .reusable = false}, REDUCE(sym__terminated_statement, 3), - [1994] = {.count = 1, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [1996] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(172), - [1999] = {.count = 1, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [2001] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(176), - [2004] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(176), - [2007] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(177), - [2010] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(177), - [2013] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(178), - [2016] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), - [2018] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), - [2020] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 2), - [2022] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 2), - [2024] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(181), - [2027] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(182), - [2030] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(19), - [2033] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), - [2036] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(183), - [2039] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), - [2042] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(23), - [2045] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(24), - [2048] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(25), - [2051] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(183), - [2054] = {.count = 1, .reusable = false}, SHIFT(985), - [2056] = {.count = 1, .reusable = true}, SHIFT(985), - [2058] = {.count = 1, .reusable = false}, SHIFT(986), - [2060] = {.count = 1, .reusable = true}, SHIFT(986), - [2062] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), - [2064] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), - [2066] = {.count = 1, .reusable = true}, SHIFT(988), - [2068] = {.count = 1, .reusable = false}, SHIFT(758), - [2070] = {.count = 1, .reusable = true}, SHIFT(989), - [2072] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 4), - [2074] = {.count = 1, .reusable = true}, SHIFT(991), - [2076] = {.count = 1, .reusable = true}, SHIFT(992), - [2078] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), - [2080] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), - [2082] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), - [2084] = {.count = 1, .reusable = true}, SHIFT(993), - [2086] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [2088] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [2090] = {.count = 1, .reusable = false}, SHIFT(995), - [2092] = {.count = 1, .reusable = false}, SHIFT(996), - [2094] = {.count = 1, .reusable = true}, SHIFT(998), - [2096] = {.count = 1, .reusable = true}, SHIFT(999), - [2098] = {.count = 1, .reusable = false}, SHIFT(1000), - [2100] = {.count = 1, .reusable = true}, SHIFT(1000), - [2102] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), - [2104] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [2106] = {.count = 1, .reusable = true}, SHIFT(1001), - [2108] = {.count = 1, .reusable = true}, SHIFT(1002), - [2110] = {.count = 1, .reusable = true}, SHIFT(1003), - [2112] = {.count = 1, .reusable = false}, SHIFT(1004), - [2114] = {.count = 1, .reusable = true}, SHIFT(1004), - [2116] = {.count = 1, .reusable = true}, SHIFT(1014), - [2118] = {.count = 1, .reusable = true}, SHIFT(1016), - [2120] = {.count = 1, .reusable = false}, SHIFT(1018), - [2122] = {.count = 1, .reusable = false}, SHIFT(1019), - [2124] = {.count = 1, .reusable = true}, SHIFT(1020), - [2126] = {.count = 1, .reusable = true}, SHIFT(1021), - [2128] = {.count = 1, .reusable = true}, SHIFT(1022), - [2130] = {.count = 1, .reusable = false}, SHIFT(1023), - [2132] = {.count = 1, .reusable = true}, SHIFT(1023), - [2134] = {.count = 1, .reusable = true}, SHIFT(1024), - [2136] = {.count = 1, .reusable = false}, SHIFT(1026), - [2138] = {.count = 1, .reusable = true}, SHIFT(1026), - [2140] = {.count = 1, .reusable = true}, SHIFT(1025), - [2142] = {.count = 1, .reusable = true}, SHIFT(1027), - [2144] = {.count = 1, .reusable = false}, SHIFT(1029), - [2146] = {.count = 1, .reusable = true}, SHIFT(1029), - [2148] = {.count = 1, .reusable = true}, SHIFT(1028), - [2150] = {.count = 1, .reusable = false}, SHIFT(1030), - [2152] = {.count = 1, .reusable = true}, SHIFT(1031), - [2154] = {.count = 1, .reusable = true}, SHIFT(1030), - [2156] = {.count = 1, .reusable = false}, SHIFT(1035), - [2158] = {.count = 1, .reusable = true}, SHIFT(1035), - [2160] = {.count = 1, .reusable = false}, SHIFT(1039), - [2162] = {.count = 1, .reusable = true}, SHIFT(1040), - [2164] = {.count = 1, .reusable = true}, SHIFT(1039), - [2166] = {.count = 1, .reusable = true}, SHIFT(1044), - [2168] = {.count = 1, .reusable = false}, SHIFT(1046), - [2170] = {.count = 1, .reusable = true}, SHIFT(1046), - [2172] = {.count = 1, .reusable = true}, SHIFT(1047), - [2174] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2), - [2176] = {.count = 1, .reusable = true}, SHIFT(1048), - [2178] = {.count = 1, .reusable = false}, SHIFT(1050), - [2180] = {.count = 1, .reusable = false}, SHIFT(1051), - [2182] = {.count = 1, .reusable = true}, SHIFT(1052), - [2184] = {.count = 1, .reusable = true}, SHIFT(1053), - [2186] = {.count = 1, .reusable = true}, SHIFT(1054), - [2188] = {.count = 1, .reusable = false}, SHIFT(1055), - [2190] = {.count = 1, .reusable = true}, SHIFT(1055), - [2192] = {.count = 1, .reusable = true}, SHIFT(1056), - [2194] = {.count = 1, .reusable = false}, SHIFT(1058), - [2196] = {.count = 1, .reusable = true}, SHIFT(1058), - [2198] = {.count = 1, .reusable = true}, SHIFT(1057), - [2200] = {.count = 1, .reusable = true}, SHIFT(1059), - [2202] = {.count = 1, .reusable = false}, SHIFT(1061), - [2204] = {.count = 1, .reusable = true}, SHIFT(1061), - [2206] = {.count = 1, .reusable = true}, SHIFT(1060), - [2208] = {.count = 1, .reusable = false}, SHIFT(1062), - [2210] = {.count = 1, .reusable = true}, SHIFT(1063), - [2212] = {.count = 1, .reusable = true}, SHIFT(1062), - [2214] = {.count = 1, .reusable = false}, SHIFT(1067), - [2216] = {.count = 1, .reusable = true}, SHIFT(1067), - [2218] = {.count = 1, .reusable = false}, SHIFT(1071), - [2220] = {.count = 1, .reusable = true}, SHIFT(1072), - [2222] = {.count = 1, .reusable = true}, SHIFT(1071), - [2224] = {.count = 1, .reusable = true}, SHIFT(1078), - [2226] = {.count = 1, .reusable = true}, SHIFT(1079), - [2228] = {.count = 1, .reusable = false}, SHIFT(1081), - [2230] = {.count = 1, .reusable = false}, SHIFT(1082), - [2232] = {.count = 1, .reusable = true}, SHIFT(1084), - [2234] = {.count = 1, .reusable = true}, SHIFT(1085), - [2236] = {.count = 1, .reusable = false}, SHIFT(1086), - [2238] = {.count = 1, .reusable = true}, SHIFT(1086), - [2240] = {.count = 1, .reusable = true}, SHIFT(1087), - [2242] = {.count = 1, .reusable = true}, SHIFT(1088), - [2244] = {.count = 1, .reusable = true}, SHIFT(1089), - [2246] = {.count = 1, .reusable = false}, SHIFT(1090), - [2248] = {.count = 1, .reusable = true}, SHIFT(1090), - [2250] = {.count = 1, .reusable = false}, SHIFT(1100), - [2252] = {.count = 1, .reusable = true}, SHIFT(1100), - [2254] = {.count = 1, .reusable = false}, SHIFT(598), - [2256] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4), - [2258] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4), - [2260] = {.count = 1, .reusable = true}, SHIFT(1102), - [2262] = {.count = 1, .reusable = true}, SHIFT(1103), - [2264] = {.count = 1, .reusable = false}, SHIFT(1105), - [2266] = {.count = 1, .reusable = false}, SHIFT(1106), - [2268] = {.count = 1, .reusable = true}, SHIFT(1107), - [2270] = {.count = 1, .reusable = true}, SHIFT(1108), - [2272] = {.count = 1, .reusable = true}, SHIFT(1109), + [947] = {.count = 1, .reusable = false}, SHIFT(517), + [949] = {.count = 1, .reusable = true}, SHIFT(517), + [951] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [953] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [955] = {.count = 1, .reusable = true}, SHIFT(518), + [957] = {.count = 1, .reusable = true}, SHIFT(519), + [959] = {.count = 1, .reusable = true}, SHIFT(520), + [961] = {.count = 1, .reusable = false}, SHIFT(521), + [963] = {.count = 1, .reusable = true}, SHIFT(521), + [965] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), + [967] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), + [969] = {.count = 1, .reusable = false}, SHIFT(525), + [971] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [973] = {.count = 1, .reusable = true}, SHIFT(526), + [975] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [977] = {.count = 1, .reusable = false}, SHIFT(528), + [979] = {.count = 1, .reusable = false}, SHIFT(529), + [981] = {.count = 1, .reusable = true}, SHIFT(531), + [983] = {.count = 1, .reusable = true}, SHIFT(532), + [985] = {.count = 1, .reusable = false}, SHIFT(533), + [987] = {.count = 1, .reusable = true}, SHIFT(533), + [989] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), + [991] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), + [993] = {.count = 1, .reusable = true}, SHIFT(534), + [995] = {.count = 1, .reusable = true}, SHIFT(535), + [997] = {.count = 1, .reusable = true}, SHIFT(536), + [999] = {.count = 1, .reusable = false}, SHIFT(537), + [1001] = {.count = 1, .reusable = true}, SHIFT(537), + [1003] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), + [1005] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), + [1007] = {.count = 1, .reusable = false}, SHIFT(541), + [1009] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 2), + [1011] = {.count = 1, .reusable = true}, SHIFT(542), + [1013] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 2), + [1015] = {.count = 1, .reusable = false}, SHIFT(544), + [1017] = {.count = 1, .reusable = false}, SHIFT(545), + [1019] = {.count = 1, .reusable = true}, SHIFT(547), + [1021] = {.count = 1, .reusable = true}, SHIFT(548), + [1023] = {.count = 1, .reusable = false}, SHIFT(549), + [1025] = {.count = 1, .reusable = true}, SHIFT(549), + [1027] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), + [1029] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), + [1031] = {.count = 1, .reusable = true}, SHIFT(550), + [1033] = {.count = 1, .reusable = true}, SHIFT(551), + [1035] = {.count = 1, .reusable = true}, SHIFT(552), + [1037] = {.count = 1, .reusable = false}, SHIFT(553), + [1039] = {.count = 1, .reusable = true}, SHIFT(553), + [1041] = {.count = 1, .reusable = true}, SHIFT(557), + [1043] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), + [1045] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), + [1047] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), + [1049] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), + [1051] = {.count = 1, .reusable = true}, SHIFT(559), + [1053] = {.count = 1, .reusable = false}, SHIFT(560), + [1055] = {.count = 1, .reusable = false}, SHIFT(559), + [1057] = {.count = 1, .reusable = false}, SHIFT(561), + [1059] = {.count = 1, .reusable = false}, SHIFT(562), + [1061] = {.count = 1, .reusable = true}, SHIFT(562), + [1063] = {.count = 1, .reusable = true}, SHIFT(563), + [1065] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 1), + [1067] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 1), + [1069] = {.count = 1, .reusable = true}, SHIFT(564), + [1071] = {.count = 1, .reusable = true}, SHIFT(565), + [1073] = {.count = 1, .reusable = true}, SHIFT(566), + [1075] = {.count = 1, .reusable = false}, SHIFT(567), + [1077] = {.count = 1, .reusable = true}, SHIFT(567), + [1079] = {.count = 1, .reusable = false}, SHIFT(570), + [1081] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 3), + [1083] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 3), + [1085] = {.count = 1, .reusable = true}, REDUCE(sym_string_expansion, 2), + [1087] = {.count = 1, .reusable = false}, REDUCE(sym_string_expansion, 2), + [1089] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2), + [1091] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2), + [1093] = {.count = 1, .reusable = true}, SHIFT(572), + [1095] = {.count = 1, .reusable = true}, SHIFT(573), + [1097] = {.count = 1, .reusable = true}, SHIFT(574), + [1099] = {.count = 1, .reusable = true}, SHIFT(575), + [1101] = {.count = 1, .reusable = false}, SHIFT(576), + [1103] = {.count = 1, .reusable = true}, SHIFT(576), + [1105] = {.count = 1, .reusable = true}, SHIFT(577), + [1107] = {.count = 1, .reusable = false}, SHIFT(587), + [1109] = {.count = 1, .reusable = false}, SHIFT(578), + [1111] = {.count = 1, .reusable = true}, SHIFT(579), + [1113] = {.count = 1, .reusable = false}, SHIFT(580), + [1115] = {.count = 1, .reusable = true}, SHIFT(581), + [1117] = {.count = 1, .reusable = true}, SHIFT(587), + [1119] = {.count = 1, .reusable = true}, SHIFT(582), + [1121] = {.count = 1, .reusable = true}, SHIFT(583), + [1123] = {.count = 1, .reusable = true}, SHIFT(584), + [1125] = {.count = 1, .reusable = true}, SHIFT(585), + [1127] = {.count = 1, .reusable = true}, SHIFT(586), + [1129] = {.count = 1, .reusable = false}, SHIFT(581), + [1131] = {.count = 1, .reusable = true}, SHIFT(588), + [1133] = {.count = 1, .reusable = false}, SHIFT(590), + [1135] = {.count = 1, .reusable = true}, SHIFT(590), + [1137] = {.count = 1, .reusable = true}, SHIFT(589), + [1139] = {.count = 1, .reusable = true}, SHIFT(591), + [1141] = {.count = 1, .reusable = true}, SHIFT(592), + [1143] = {.count = 1, .reusable = true}, SHIFT(593), + [1145] = {.count = 1, .reusable = true}, SHIFT(594), + [1147] = {.count = 1, .reusable = true}, SHIFT(595), + [1149] = {.count = 1, .reusable = false}, SHIFT(597), + [1151] = {.count = 1, .reusable = false}, SHIFT(595), + [1153] = {.count = 1, .reusable = true}, SHIFT(598), + [1155] = {.count = 1, .reusable = true}, SHIFT(599), + [1157] = {.count = 1, .reusable = false}, SHIFT(600), + [1159] = {.count = 1, .reusable = false}, SHIFT(599), + [1161] = {.count = 1, .reusable = true}, SHIFT(602), + [1163] = {.count = 1, .reusable = false}, SHIFT(603), + [1165] = {.count = 1, .reusable = false}, SHIFT(604), + [1167] = {.count = 1, .reusable = true}, SHIFT(603), + [1169] = {.count = 1, .reusable = true}, SHIFT(604), + [1171] = {.count = 1, .reusable = true}, SHIFT(605), + [1173] = {.count = 1, .reusable = false}, SHIFT(606), + [1175] = {.count = 1, .reusable = true}, SHIFT(606), + [1177] = {.count = 1, .reusable = true}, SHIFT(607), + [1179] = {.count = 1, .reusable = false}, SHIFT(610), + [1181] = {.count = 1, .reusable = true}, SHIFT(611), + [1183] = {.count = 1, .reusable = true}, SHIFT(612), + [1185] = {.count = 1, .reusable = false}, SHIFT(612), + [1187] = {.count = 1, .reusable = true}, SHIFT(207), + [1189] = {.count = 1, .reusable = true}, SHIFT(617), + [1191] = {.count = 1, .reusable = true}, SHIFT(618), + [1193] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), + [1195] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), + [1197] = {.count = 1, .reusable = true}, SHIFT(624), + [1199] = {.count = 1, .reusable = true}, SHIFT(619), + [1201] = {.count = 1, .reusable = false}, SHIFT(620), + [1203] = {.count = 1, .reusable = true}, SHIFT(621), + [1205] = {.count = 1, .reusable = true}, SHIFT(622), + [1207] = {.count = 1, .reusable = true}, SHIFT(623), + [1209] = {.count = 1, .reusable = false}, SHIFT(625), + [1211] = {.count = 1, .reusable = true}, SHIFT(625), + [1213] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), + [1215] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 2), + [1217] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), + [1219] = {.count = 1, .reusable = true}, SHIFT(630), + [1221] = {.count = 1, .reusable = true}, SHIFT(631), + [1223] = {.count = 1, .reusable = true}, SHIFT(633), + [1225] = {.count = 1, .reusable = true}, SHIFT(634), + [1227] = {.count = 1, .reusable = true}, SHIFT(635), + [1229] = {.count = 1, .reusable = false}, SHIFT(637), + [1231] = {.count = 1, .reusable = true}, SHIFT(637), + [1233] = {.count = 1, .reusable = true}, REDUCE(sym_redirected_statement, 2), + [1235] = {.count = 1, .reusable = false}, REDUCE(sym_redirected_statement, 2), + [1237] = {.count = 1, .reusable = true}, SHIFT(639), + [1239] = {.count = 1, .reusable = true}, SHIFT(640), + [1241] = {.count = 1, .reusable = true}, SHIFT(641), + [1243] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [1245] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [1247] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), + [1249] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), + [1251] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), + [1253] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), + [1255] = {.count = 1, .reusable = false}, SHIFT(643), + [1257] = {.count = 1, .reusable = true}, SHIFT(643), + [1259] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2), + [1262] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(203), + [1265] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4), + [1268] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(5), + [1271] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(6), + [1274] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(7), + [1277] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(8), + [1280] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(9), + [1283] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(10), + [1286] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(11), + [1289] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(645), + [1292] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(13), + [1295] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(14), + [1298] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(646), + [1301] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(647), + [1304] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(17), + [1307] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(17), + [1310] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(207), + [1313] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(19), + [1316] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(20), + [1319] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(208), + [1322] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(22), + [1325] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(23), + [1328] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(24), + [1331] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(25), + [1334] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(209), + [1337] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), + [1340] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(139), + [1343] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(17), + [1346] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(17), + [1349] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), + [1351] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), + [1353] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 4), + [1355] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 4), + [1357] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), + [1359] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), + [1361] = {.count = 1, .reusable = true}, SHIFT(653), + [1363] = {.count = 1, .reusable = true}, SHIFT(654), + [1365] = {.count = 1, .reusable = true}, SHIFT(656), + [1367] = {.count = 1, .reusable = true}, SHIFT(657), + [1369] = {.count = 1, .reusable = true}, SHIFT(658), + [1371] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), + [1373] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), + [1375] = {.count = 1, .reusable = true}, SHIFT(659), + [1377] = {.count = 1, .reusable = true}, SHIFT(660), + [1379] = {.count = 1, .reusable = true}, SHIFT(661), + [1381] = {.count = 1, .reusable = false}, SHIFT(662), + [1383] = {.count = 1, .reusable = true}, SHIFT(663), + [1385] = {.count = 1, .reusable = true}, SHIFT(664), + [1387] = {.count = 1, .reusable = true}, SHIFT(665), + [1389] = {.count = 1, .reusable = true}, SHIFT(666), + [1391] = {.count = 1, .reusable = true}, SHIFT(667), + [1393] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 4), + [1395] = {.count = 1, .reusable = true}, SHIFT(669), + [1397] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 4), + [1399] = {.count = 1, .reusable = false}, SHIFT(671), + [1401] = {.count = 1, .reusable = false}, SHIFT(672), + [1403] = {.count = 1, .reusable = true}, SHIFT(674), + [1405] = {.count = 1, .reusable = true}, SHIFT(675), + [1407] = {.count = 1, .reusable = false}, SHIFT(676), + [1409] = {.count = 1, .reusable = true}, SHIFT(676), + [1411] = {.count = 1, .reusable = true}, SHIFT(677), + [1413] = {.count = 1, .reusable = true}, SHIFT(678), + [1415] = {.count = 1, .reusable = true}, SHIFT(679), + [1417] = {.count = 1, .reusable = false}, SHIFT(680), + [1419] = {.count = 1, .reusable = true}, SHIFT(680), + [1421] = {.count = 1, .reusable = false}, SHIFT(684), + [1423] = {.count = 1, .reusable = true}, SHIFT(684), + [1425] = {.count = 1, .reusable = true}, SHIFT(688), + [1427] = {.count = 1, .reusable = false}, SHIFT(690), + [1429] = {.count = 1, .reusable = false}, SHIFT(691), + [1431] = {.count = 1, .reusable = true}, SHIFT(693), + [1433] = {.count = 1, .reusable = true}, SHIFT(694), + [1435] = {.count = 1, .reusable = false}, SHIFT(695), + [1437] = {.count = 1, .reusable = true}, SHIFT(695), + [1439] = {.count = 1, .reusable = true}, SHIFT(696), + [1441] = {.count = 1, .reusable = true}, SHIFT(697), + [1443] = {.count = 1, .reusable = true}, SHIFT(698), + [1445] = {.count = 1, .reusable = false}, SHIFT(699), + [1447] = {.count = 1, .reusable = true}, SHIFT(699), + [1449] = {.count = 1, .reusable = false}, SHIFT(703), + [1451] = {.count = 1, .reusable = true}, SHIFT(703), + [1453] = {.count = 1, .reusable = true}, SHIFT(704), + [1455] = {.count = 1, .reusable = true}, SHIFT(705), + [1457] = {.count = 1, .reusable = false}, SHIFT(704), + [1459] = {.count = 1, .reusable = true}, SHIFT(706), + [1461] = {.count = 1, .reusable = true}, SHIFT(707), + [1463] = {.count = 1, .reusable = true}, SHIFT(708), + [1465] = {.count = 1, .reusable = false}, SHIFT(709), + [1467] = {.count = 1, .reusable = true}, SHIFT(710), + [1469] = {.count = 1, .reusable = true}, SHIFT(711), + [1471] = {.count = 1, .reusable = true}, SHIFT(712), + [1473] = {.count = 1, .reusable = true}, SHIFT(713), + [1475] = {.count = 1, .reusable = true}, SHIFT(714), + [1477] = {.count = 1, .reusable = true}, SHIFT(719), + [1479] = {.count = 1, .reusable = false}, SHIFT(721), + [1481] = {.count = 1, .reusable = false}, SHIFT(722), + [1483] = {.count = 1, .reusable = true}, SHIFT(724), + [1485] = {.count = 1, .reusable = true}, SHIFT(725), + [1487] = {.count = 1, .reusable = false}, SHIFT(726), + [1489] = {.count = 1, .reusable = true}, SHIFT(726), + [1491] = {.count = 1, .reusable = true}, SHIFT(727), + [1493] = {.count = 1, .reusable = true}, SHIFT(728), + [1495] = {.count = 1, .reusable = true}, SHIFT(729), + [1497] = {.count = 1, .reusable = false}, SHIFT(730), + [1499] = {.count = 1, .reusable = true}, SHIFT(730), + [1501] = {.count = 1, .reusable = true}, SHIFT(734), + [1503] = {.count = 1, .reusable = true}, SHIFT(735), + [1505] = {.count = 1, .reusable = true}, SHIFT(736), + [1507] = {.count = 1, .reusable = false}, SHIFT(735), + [1509] = {.count = 1, .reusable = true}, SHIFT(737), + [1511] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), + [1513] = {.count = 1, .reusable = true}, SHIFT(738), + [1515] = {.count = 1, .reusable = false}, SHIFT(740), + [1517] = {.count = 1, .reusable = false}, SHIFT(741), + [1519] = {.count = 1, .reusable = true}, SHIFT(742), + [1521] = {.count = 1, .reusable = true}, SHIFT(743), + [1523] = {.count = 1, .reusable = true}, SHIFT(744), + [1525] = {.count = 1, .reusable = false}, SHIFT(745), + [1527] = {.count = 1, .reusable = true}, SHIFT(745), + [1529] = {.count = 1, .reusable = true}, SHIFT(746), + [1531] = {.count = 1, .reusable = false}, SHIFT(748), + [1533] = {.count = 1, .reusable = true}, SHIFT(748), + [1535] = {.count = 1, .reusable = true}, SHIFT(747), + [1537] = {.count = 1, .reusable = true}, SHIFT(749), + [1539] = {.count = 1, .reusable = false}, SHIFT(751), + [1541] = {.count = 1, .reusable = true}, SHIFT(751), + [1543] = {.count = 1, .reusable = true}, SHIFT(750), + [1545] = {.count = 1, .reusable = true}, SHIFT(752), + [1547] = {.count = 1, .reusable = true}, SHIFT(753), + [1549] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), + [1551] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), + [1553] = {.count = 1, .reusable = true}, SHIFT(755), + [1555] = {.count = 1, .reusable = true}, REDUCE(sym_postfix_expression, 2), + [1557] = {.count = 1, .reusable = false}, REDUCE(sym_postfix_expression, 2), + [1559] = {.count = 1, .reusable = true}, SHIFT(756), + [1561] = {.count = 1, .reusable = true}, SHIFT(757), + [1563] = {.count = 1, .reusable = true}, SHIFT(758), + [1565] = {.count = 1, .reusable = true}, SHIFT(759), + [1567] = {.count = 1, .reusable = false}, SHIFT(760), + [1569] = {.count = 1, .reusable = true}, SHIFT(761), + [1571] = {.count = 1, .reusable = true}, SHIFT(762), + [1573] = {.count = 1, .reusable = true}, SHIFT(763), + [1575] = {.count = 1, .reusable = true}, SHIFT(764), + [1577] = {.count = 1, .reusable = true}, SHIFT(765), + [1579] = {.count = 1, .reusable = false}, SHIFT(766), + [1581] = {.count = 1, .reusable = true}, SHIFT(766), + [1583] = {.count = 1, .reusable = true}, SHIFT(768), + [1585] = {.count = 1, .reusable = false}, SHIFT(769), + [1587] = {.count = 1, .reusable = true}, SHIFT(769), + [1589] = {.count = 1, .reusable = true}, SHIFT(770), + [1591] = {.count = 1, .reusable = true}, SHIFT(771), + [1593] = {.count = 1, .reusable = true}, SHIFT(773), + [1595] = {.count = 1, .reusable = true}, SHIFT(774), + [1597] = {.count = 1, .reusable = false}, SHIFT(775), + [1599] = {.count = 1, .reusable = true}, SHIFT(775), + [1601] = {.count = 1, .reusable = true}, SHIFT(776), + [1603] = {.count = 1, .reusable = false}, SHIFT(777), + [1605] = {.count = 1, .reusable = true}, SHIFT(777), + [1607] = {.count = 1, .reusable = true}, SHIFT(778), + [1609] = {.count = 1, .reusable = true}, SHIFT(780), + [1611] = {.count = 1, .reusable = true}, SHIFT(781), + [1613] = {.count = 1, .reusable = true}, SHIFT(782), + [1615] = {.count = 1, .reusable = true}, SHIFT(783), + [1617] = {.count = 1, .reusable = false}, SHIFT(785), + [1619] = {.count = 1, .reusable = false}, SHIFT(786), + [1621] = {.count = 1, .reusable = true}, SHIFT(788), + [1623] = {.count = 1, .reusable = true}, SHIFT(789), + [1625] = {.count = 1, .reusable = false}, SHIFT(790), + [1627] = {.count = 1, .reusable = true}, SHIFT(790), + [1629] = {.count = 1, .reusable = true}, SHIFT(791), + [1631] = {.count = 1, .reusable = true}, SHIFT(792), + [1633] = {.count = 1, .reusable = true}, SHIFT(793), + [1635] = {.count = 1, .reusable = false}, SHIFT(794), + [1637] = {.count = 1, .reusable = true}, SHIFT(794), + [1639] = {.count = 1, .reusable = false}, SHIFT(798), + [1641] = {.count = 1, .reusable = true}, SHIFT(799), + [1643] = {.count = 1, .reusable = false}, SHIFT(801), + [1645] = {.count = 1, .reusable = false}, SHIFT(802), + [1647] = {.count = 1, .reusable = true}, SHIFT(804), + [1649] = {.count = 1, .reusable = true}, SHIFT(805), + [1651] = {.count = 1, .reusable = false}, SHIFT(806), + [1653] = {.count = 1, .reusable = true}, SHIFT(806), + [1655] = {.count = 1, .reusable = true}, SHIFT(807), + [1657] = {.count = 1, .reusable = true}, SHIFT(808), + [1659] = {.count = 1, .reusable = true}, SHIFT(809), + [1661] = {.count = 1, .reusable = false}, SHIFT(810), + [1663] = {.count = 1, .reusable = true}, SHIFT(810), + [1665] = {.count = 1, .reusable = false}, SHIFT(814), + [1667] = {.count = 1, .reusable = true}, SHIFT(815), + [1669] = {.count = 1, .reusable = false}, SHIFT(817), + [1671] = {.count = 1, .reusable = false}, SHIFT(818), + [1673] = {.count = 1, .reusable = true}, SHIFT(819), + [1675] = {.count = 1, .reusable = true}, SHIFT(820), + [1677] = {.count = 1, .reusable = true}, SHIFT(821), + [1679] = {.count = 1, .reusable = false}, SHIFT(822), + [1681] = {.count = 1, .reusable = true}, SHIFT(822), + [1683] = {.count = 1, .reusable = true}, SHIFT(823), + [1685] = {.count = 1, .reusable = false}, SHIFT(825), + [1687] = {.count = 1, .reusable = true}, SHIFT(825), + [1689] = {.count = 1, .reusable = true}, SHIFT(824), + [1691] = {.count = 1, .reusable = true}, SHIFT(826), + [1693] = {.count = 1, .reusable = false}, SHIFT(828), + [1695] = {.count = 1, .reusable = true}, SHIFT(828), + [1697] = {.count = 1, .reusable = true}, SHIFT(827), + [1699] = {.count = 1, .reusable = true}, SHIFT(829), + [1701] = {.count = 1, .reusable = true}, SHIFT(830), + [1703] = {.count = 1, .reusable = true}, SHIFT(831), + [1705] = {.count = 1, .reusable = true}, SHIFT(832), + [1707] = {.count = 1, .reusable = false}, SHIFT(833), + [1709] = {.count = 1, .reusable = false}, SHIFT(834), + [1711] = {.count = 1, .reusable = false}, SHIFT(835), + [1713] = {.count = 1, .reusable = false}, SHIFT(836), + [1715] = {.count = 1, .reusable = false}, SHIFT(837), + [1717] = {.count = 1, .reusable = true}, SHIFT(838), + [1719] = {.count = 1, .reusable = false}, SHIFT(839), + [1721] = {.count = 1, .reusable = true}, SHIFT(840), + [1723] = {.count = 1, .reusable = true}, SHIFT(841), + [1725] = {.count = 1, .reusable = true}, SHIFT(842), + [1727] = {.count = 1, .reusable = true}, SHIFT(843), + [1729] = {.count = 1, .reusable = true}, SHIFT(844), + [1731] = {.count = 1, .reusable = false}, SHIFT(845), + [1733] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [1735] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [1737] = {.count = 1, .reusable = false}, SHIFT(854), + [1739] = {.count = 1, .reusable = true}, SHIFT(854), + [1741] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), + [1743] = {.count = 1, .reusable = true}, SHIFT(859), + [1745] = {.count = 1, .reusable = true}, SHIFT(860), + [1747] = {.count = 1, .reusable = true}, SHIFT(862), + [1749] = {.count = 1, .reusable = true}, SHIFT(863), + [1751] = {.count = 1, .reusable = true}, SHIFT(864), + [1753] = {.count = 1, .reusable = true}, SHIFT(867), + [1755] = {.count = 1, .reusable = true}, SHIFT(868), + [1757] = {.count = 1, .reusable = true}, SHIFT(869), + [1759] = {.count = 1, .reusable = true}, SHIFT(872), + [1761] = {.count = 1, .reusable = false}, SHIFT(873), + [1763] = {.count = 1, .reusable = false}, SHIFT(874), + [1765] = {.count = 1, .reusable = false}, SHIFT(875), + [1767] = {.count = 1, .reusable = false}, SHIFT(876), + [1769] = {.count = 1, .reusable = false}, SHIFT(877), + [1771] = {.count = 1, .reusable = false}, SHIFT(878), + [1773] = {.count = 1, .reusable = false}, SHIFT(879), + [1775] = {.count = 1, .reusable = true}, SHIFT(880), + [1777] = {.count = 1, .reusable = false}, SHIFT(881), + [1779] = {.count = 1, .reusable = true}, SHIFT(882), + [1781] = {.count = 1, .reusable = true}, SHIFT(883), + [1783] = {.count = 1, .reusable = true}, SHIFT(884), + [1785] = {.count = 1, .reusable = true}, SHIFT(885), + [1787] = {.count = 1, .reusable = true}, SHIFT(886), + [1789] = {.count = 1, .reusable = false}, SHIFT(887), + [1791] = {.count = 1, .reusable = true}, SHIFT(898), + [1793] = {.count = 1, .reusable = false}, SHIFT(899), + [1795] = {.count = 1, .reusable = true}, SHIFT(899), + [1797] = {.count = 1, .reusable = true}, SHIFT(900), + [1799] = {.count = 1, .reusable = false}, SHIFT(902), + [1801] = {.count = 1, .reusable = false}, SHIFT(903), + [1803] = {.count = 1, .reusable = false}, SHIFT(904), + [1805] = {.count = 1, .reusable = true}, SHIFT(904), + [1807] = {.count = 1, .reusable = true}, SHIFT(905), + [1809] = {.count = 1, .reusable = true}, SHIFT(906), + [1811] = {.count = 1, .reusable = true}, SHIFT(907), + [1813] = {.count = 1, .reusable = true}, SHIFT(908), + [1815] = {.count = 1, .reusable = false}, SHIFT(909), + [1817] = {.count = 1, .reusable = true}, SHIFT(909), + [1819] = {.count = 1, .reusable = true}, SHIFT(910), + [1821] = {.count = 1, .reusable = false}, SHIFT(912), + [1823] = {.count = 1, .reusable = true}, SHIFT(912), + [1825] = {.count = 1, .reusable = true}, SHIFT(911), + [1827] = {.count = 1, .reusable = true}, SHIFT(913), + [1829] = {.count = 1, .reusable = false}, SHIFT(915), + [1831] = {.count = 1, .reusable = true}, SHIFT(915), + [1833] = {.count = 1, .reusable = true}, SHIFT(914), + [1835] = {.count = 1, .reusable = true}, SHIFT(916), + [1837] = {.count = 1, .reusable = true}, SHIFT(917), + [1839] = {.count = 1, .reusable = true}, SHIFT(918), + [1841] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [1843] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [1845] = {.count = 1, .reusable = true}, SHIFT(919), + [1847] = {.count = 1, .reusable = true}, SHIFT(920), + [1849] = {.count = 1, .reusable = true}, SHIFT(921), + [1851] = {.count = 1, .reusable = false}, SHIFT(923), + [1853] = {.count = 1, .reusable = false}, SHIFT(925), + [1855] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), + [1857] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), + [1859] = {.count = 1, .reusable = false}, SHIFT(927), + [1861] = {.count = 1, .reusable = true}, SHIFT(927), + [1863] = {.count = 1, .reusable = true}, SHIFT(932), + [1865] = {.count = 1, .reusable = true}, SHIFT(933), + [1867] = {.count = 1, .reusable = true}, SHIFT(934), + [1869] = {.count = 1, .reusable = true}, SHIFT(935), + [1871] = {.count = 1, .reusable = true}, SHIFT(937), + [1873] = {.count = 1, .reusable = true}, SHIFT(938), + [1875] = {.count = 1, .reusable = true}, SHIFT(941), + [1877] = {.count = 1, .reusable = true}, SHIFT(942), + [1879] = {.count = 1, .reusable = true}, SHIFT(943), + [1881] = {.count = 1, .reusable = true}, SHIFT(944), + [1883] = {.count = 1, .reusable = false}, SHIFT(945), + [1885] = {.count = 1, .reusable = true}, SHIFT(946), + [1887] = {.count = 1, .reusable = true}, SHIFT(947), + [1889] = {.count = 1, .reusable = true}, SHIFT(948), + [1891] = {.count = 1, .reusable = true}, SHIFT(949), + [1893] = {.count = 1, .reusable = true}, SHIFT(950), + [1895] = {.count = 1, .reusable = false}, SHIFT(951), + [1897] = {.count = 1, .reusable = true}, SHIFT(951), + [1899] = {.count = 1, .reusable = true}, SHIFT(953), + [1901] = {.count = 1, .reusable = false}, SHIFT(954), + [1903] = {.count = 1, .reusable = true}, SHIFT(954), + [1905] = {.count = 1, .reusable = true}, SHIFT(955), + [1907] = {.count = 1, .reusable = true}, SHIFT(956), + [1909] = {.count = 1, .reusable = true}, SHIFT(958), + [1911] = {.count = 1, .reusable = true}, SHIFT(959), + [1913] = {.count = 1, .reusable = false}, SHIFT(960), + [1915] = {.count = 1, .reusable = true}, SHIFT(960), + [1917] = {.count = 1, .reusable = true}, SHIFT(961), + [1919] = {.count = 1, .reusable = false}, SHIFT(962), + [1921] = {.count = 1, .reusable = true}, SHIFT(962), + [1923] = {.count = 1, .reusable = true}, SHIFT(963), + [1925] = {.count = 1, .reusable = true}, SHIFT(965), + [1927] = {.count = 1, .reusable = true}, SHIFT(966), + [1929] = {.count = 1, .reusable = true}, SHIFT(967), + [1931] = {.count = 1, .reusable = true}, SHIFT(968), + [1933] = {.count = 1, .reusable = false}, SHIFT(970), + [1935] = {.count = 1, .reusable = false}, SHIFT(971), + [1937] = {.count = 1, .reusable = true}, SHIFT(973), + [1939] = {.count = 1, .reusable = true}, SHIFT(974), + [1941] = {.count = 1, .reusable = false}, SHIFT(975), + [1943] = {.count = 1, .reusable = true}, SHIFT(975), + [1945] = {.count = 1, .reusable = true}, SHIFT(976), + [1947] = {.count = 1, .reusable = true}, SHIFT(977), + [1949] = {.count = 1, .reusable = true}, SHIFT(978), + [1951] = {.count = 1, .reusable = false}, SHIFT(979), + [1953] = {.count = 1, .reusable = true}, SHIFT(979), + [1955] = {.count = 1, .reusable = false}, SHIFT(983), + [1957] = {.count = 1, .reusable = true}, SHIFT(984), + [1959] = {.count = 1, .reusable = false}, SHIFT(986), + [1961] = {.count = 1, .reusable = false}, SHIFT(987), + [1963] = {.count = 1, .reusable = true}, SHIFT(989), + [1965] = {.count = 1, .reusable = true}, SHIFT(990), + [1967] = {.count = 1, .reusable = false}, SHIFT(991), + [1969] = {.count = 1, .reusable = true}, SHIFT(991), + [1971] = {.count = 1, .reusable = true}, SHIFT(992), + [1973] = {.count = 1, .reusable = true}, SHIFT(993), + [1975] = {.count = 1, .reusable = true}, SHIFT(994), + [1977] = {.count = 1, .reusable = false}, SHIFT(995), + [1979] = {.count = 1, .reusable = true}, SHIFT(995), + [1981] = {.count = 1, .reusable = false}, SHIFT(999), + [1983] = {.count = 1, .reusable = true}, SHIFT(1000), + [1985] = {.count = 1, .reusable = false}, SHIFT(1002), + [1987] = {.count = 1, .reusable = false}, SHIFT(1003), + [1989] = {.count = 1, .reusable = true}, SHIFT(1004), + [1991] = {.count = 1, .reusable = true}, SHIFT(1005), + [1993] = {.count = 1, .reusable = true}, SHIFT(1006), + [1995] = {.count = 1, .reusable = false}, SHIFT(1007), + [1997] = {.count = 1, .reusable = true}, SHIFT(1007), + [1999] = {.count = 1, .reusable = true}, SHIFT(1008), + [2001] = {.count = 1, .reusable = false}, SHIFT(1010), + [2003] = {.count = 1, .reusable = true}, SHIFT(1010), + [2005] = {.count = 1, .reusable = true}, SHIFT(1009), + [2007] = {.count = 1, .reusable = true}, SHIFT(1011), + [2009] = {.count = 1, .reusable = false}, SHIFT(1013), + [2011] = {.count = 1, .reusable = true}, SHIFT(1013), + [2013] = {.count = 1, .reusable = true}, SHIFT(1012), + [2015] = {.count = 1, .reusable = true}, SHIFT(1014), + [2017] = {.count = 1, .reusable = true}, SHIFT(1015), + [2019] = {.count = 1, .reusable = true}, SHIFT(1016), + [2021] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [2023] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [2025] = {.count = 1, .reusable = true}, SHIFT(1018), + [2027] = {.count = 1, .reusable = true}, SHIFT(1017), + [2029] = {.count = 1, .reusable = false}, SHIFT(1019), + [2031] = {.count = 1, .reusable = true}, SHIFT(1019), + [2033] = {.count = 1, .reusable = true}, SHIFT(1024), + [2035] = {.count = 1, .reusable = true}, SHIFT(1025), + [2037] = {.count = 1, .reusable = true}, SHIFT(1027), + [2039] = {.count = 1, .reusable = true}, SHIFT(1028), + [2041] = {.count = 1, .reusable = true}, SHIFT(1029), + [2043] = {.count = 1, .reusable = false}, SHIFT(1031), + [2045] = {.count = 1, .reusable = true}, SHIFT(1031), + [2047] = {.count = 1, .reusable = true}, SHIFT(1033), + [2049] = {.count = 1, .reusable = true}, SHIFT(1034), + [2051] = {.count = 1, .reusable = true}, SHIFT(1035), + [2053] = {.count = 1, .reusable = false}, SHIFT(1037), + [2055] = {.count = 1, .reusable = true}, SHIFT(1037), + [2057] = {.count = 1, .reusable = true}, SHIFT(1040), + [2059] = {.count = 1, .reusable = true}, SHIFT(1041), + [2061] = {.count = 1, .reusable = true}, SHIFT(1042), + [2063] = {.count = 1, .reusable = true}, SHIFT(1043), + [2065] = {.count = 1, .reusable = true}, SHIFT(1044), + [2067] = {.count = 1, .reusable = true}, SHIFT(1045), + [2069] = {.count = 1, .reusable = false}, SHIFT(1047), + [2071] = {.count = 1, .reusable = false}, SHIFT(1048), + [2073] = {.count = 1, .reusable = true}, SHIFT(1049), + [2075] = {.count = 1, .reusable = true}, SHIFT(1050), + [2077] = {.count = 1, .reusable = true}, SHIFT(1051), + [2079] = {.count = 1, .reusable = false}, SHIFT(1052), + [2081] = {.count = 1, .reusable = true}, SHIFT(1052), + [2083] = {.count = 1, .reusable = true}, SHIFT(1053), + [2085] = {.count = 1, .reusable = false}, SHIFT(1055), + [2087] = {.count = 1, .reusable = true}, SHIFT(1055), + [2089] = {.count = 1, .reusable = true}, SHIFT(1054), + [2091] = {.count = 1, .reusable = true}, SHIFT(1056), + [2093] = {.count = 1, .reusable = false}, SHIFT(1058), + [2095] = {.count = 1, .reusable = true}, SHIFT(1058), + [2097] = {.count = 1, .reusable = true}, SHIFT(1057), + [2099] = {.count = 1, .reusable = true}, SHIFT(1059), + [2101] = {.count = 1, .reusable = true}, SHIFT(1060), + [2103] = {.count = 1, .reusable = true}, SHIFT(1062), + [2105] = {.count = 1, .reusable = true}, SHIFT(1064), + [2107] = {.count = 1, .reusable = true}, SHIFT(1065), + [2109] = {.count = 1, .reusable = true}, SHIFT(1066), + [2111] = {.count = 1, .reusable = true}, SHIFT(1067), + [2113] = {.count = 1, .reusable = true}, SHIFT(1068), + [2115] = {.count = 1, .reusable = false}, SHIFT(1070), + [2117] = {.count = 1, .reusable = false}, SHIFT(1071), + [2119] = {.count = 1, .reusable = true}, SHIFT(1072), + [2121] = {.count = 1, .reusable = true}, SHIFT(1073), + [2123] = {.count = 1, .reusable = true}, SHIFT(1074), + [2125] = {.count = 1, .reusable = false}, SHIFT(1075), + [2127] = {.count = 1, .reusable = true}, SHIFT(1075), + [2129] = {.count = 1, .reusable = true}, SHIFT(1076), + [2131] = {.count = 1, .reusable = false}, SHIFT(1078), + [2133] = {.count = 1, .reusable = true}, SHIFT(1078), + [2135] = {.count = 1, .reusable = true}, SHIFT(1077), + [2137] = {.count = 1, .reusable = true}, SHIFT(1079), + [2139] = {.count = 1, .reusable = false}, SHIFT(1081), + [2141] = {.count = 1, .reusable = true}, SHIFT(1081), + [2143] = {.count = 1, .reusable = true}, SHIFT(1080), + [2145] = {.count = 1, .reusable = true}, SHIFT(1082), + [2147] = {.count = 1, .reusable = true}, SHIFT(1083), + [2149] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [2151] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(157), + [2154] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [2156] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(158), + [2159] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(159), + [2162] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(160), + [2165] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(161), + [2168] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(162), + [2171] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(163), + [2174] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(164), + [2177] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(165), + [2180] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(525), + [2183] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(161), + [2186] = {.count = 1, .reusable = true}, SHIFT(1084), + [2188] = {.count = 1, .reusable = false}, SHIFT(1086), + [2190] = {.count = 1, .reusable = false}, SHIFT(1087), + [2192] = {.count = 1, .reusable = true}, SHIFT(1088), + [2194] = {.count = 1, .reusable = true}, SHIFT(1089), + [2196] = {.count = 1, .reusable = true}, SHIFT(1090), + [2198] = {.count = 1, .reusable = false}, SHIFT(1091), + [2200] = {.count = 1, .reusable = true}, SHIFT(1091), + [2202] = {.count = 1, .reusable = true}, SHIFT(1092), + [2204] = {.count = 1, .reusable = false}, SHIFT(1094), + [2206] = {.count = 1, .reusable = true}, SHIFT(1094), + [2208] = {.count = 1, .reusable = true}, SHIFT(1093), + [2210] = {.count = 1, .reusable = true}, SHIFT(1095), + [2212] = {.count = 1, .reusable = false}, SHIFT(1097), + [2214] = {.count = 1, .reusable = true}, SHIFT(1097), + [2216] = {.count = 1, .reusable = true}, SHIFT(1096), + [2218] = {.count = 1, .reusable = true}, SHIFT(1098), + [2220] = {.count = 1, .reusable = true}, SHIFT(1099), + [2222] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), + [2224] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), + [2226] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(168), + [2229] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(169), + [2232] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(170), + [2235] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(171), + [2238] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(172), + [2241] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(173), + [2244] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(174), + [2247] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(175), + [2250] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(541), + [2253] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(171), + [2256] = {.count = 1, .reusable = true}, SHIFT(1100), + [2258] = {.count = 1, .reusable = false}, SHIFT(1102), + [2260] = {.count = 1, .reusable = false}, SHIFT(1103), + [2262] = {.count = 1, .reusable = true}, SHIFT(1104), + [2264] = {.count = 1, .reusable = true}, SHIFT(1105), + [2266] = {.count = 1, .reusable = true}, SHIFT(1106), + [2268] = {.count = 1, .reusable = false}, SHIFT(1107), + [2270] = {.count = 1, .reusable = true}, SHIFT(1107), + [2272] = {.count = 1, .reusable = true}, SHIFT(1108), [2274] = {.count = 1, .reusable = false}, SHIFT(1110), [2276] = {.count = 1, .reusable = true}, SHIFT(1110), - [2278] = {.count = 1, .reusable = true}, SHIFT(1111), - [2280] = {.count = 1, .reusable = false}, SHIFT(1113), - [2282] = {.count = 1, .reusable = true}, SHIFT(1113), - [2284] = {.count = 1, .reusable = true}, SHIFT(1112), - [2286] = {.count = 1, .reusable = true}, SHIFT(1114), - [2288] = {.count = 1, .reusable = false}, SHIFT(1116), - [2290] = {.count = 1, .reusable = true}, SHIFT(1116), - [2292] = {.count = 1, .reusable = true}, SHIFT(1115), - [2294] = {.count = 1, .reusable = false}, SHIFT(1117), - [2296] = {.count = 1, .reusable = true}, SHIFT(1118), - [2298] = {.count = 1, .reusable = true}, SHIFT(1117), - [2300] = {.count = 1, .reusable = false}, SHIFT(1122), - [2302] = {.count = 1, .reusable = true}, SHIFT(1122), - [2304] = {.count = 1, .reusable = false}, SHIFT(1126), - [2306] = {.count = 1, .reusable = true}, SHIFT(1127), - [2308] = {.count = 1, .reusable = true}, SHIFT(1126), - [2310] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [2312] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [2314] = {.count = 1, .reusable = true}, SHIFT(1132), - [2316] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(232), - [2319] = {.count = 1, .reusable = false}, SHIFT(1133), - [2321] = {.count = 1, .reusable = true}, SHIFT(1134), - [2323] = {.count = 1, .reusable = false}, SHIFT(1135), - [2325] = {.count = 1, .reusable = true}, SHIFT(1136), - [2327] = {.count = 1, .reusable = true}, SHIFT(1138), - [2329] = {.count = 1, .reusable = true}, SHIFT(1139), - [2331] = {.count = 1, .reusable = false}, SHIFT(1141), - [2333] = {.count = 1, .reusable = true}, SHIFT(1141), - [2335] = {.count = 1, .reusable = true}, SHIFT(1140), - [2337] = {.count = 1, .reusable = false}, SHIFT(1143), - [2339] = {.count = 1, .reusable = true}, SHIFT(1143), - [2341] = {.count = 1, .reusable = true}, SHIFT(1142), - [2343] = {.count = 1, .reusable = true}, SHIFT(1144), - [2345] = {.count = 1, .reusable = true}, SHIFT(1145), - [2347] = {.count = 1, .reusable = false}, SHIFT(1146), - [2349] = {.count = 1, .reusable = true}, SHIFT(1146), - [2351] = {.count = 1, .reusable = true}, SHIFT(1147), - [2353] = {.count = 1, .reusable = true}, SHIFT(1148), - [2355] = {.count = 1, .reusable = false}, SHIFT(1149), - [2357] = {.count = 1, .reusable = true}, SHIFT(1149), - [2359] = {.count = 1, .reusable = false}, SHIFT(1150), - [2361] = {.count = 1, .reusable = true}, SHIFT(1150), - [2363] = {.count = 1, .reusable = false}, SHIFT(1152), - [2365] = {.count = 1, .reusable = true}, SHIFT(1152), - [2367] = {.count = 1, .reusable = false}, SHIFT(1153), - [2369] = {.count = 1, .reusable = true}, SHIFT(1153), - [2371] = {.count = 1, .reusable = true}, SHIFT(1155), - [2373] = {.count = 1, .reusable = false}, SHIFT(1156), - [2375] = {.count = 1, .reusable = true}, SHIFT(1156), - [2377] = {.count = 1, .reusable = false}, SHIFT(1157), - [2379] = {.count = 1, .reusable = true}, SHIFT(1157), - [2381] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), - [2383] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), - [2385] = {.count = 1, .reusable = true}, SHIFT(1160), - [2387] = {.count = 1, .reusable = true}, SHIFT(1161), - [2389] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(258), - [2392] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(259), - [2395] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(260), - [2398] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(666), - [2401] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(260), - [2404] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(263), - [2407] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(264), - [2410] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(668), - [2413] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(264), - [2416] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), - [2418] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), - [2420] = {.count = 1, .reusable = false}, SHIFT(1164), - [2422] = {.count = 1, .reusable = true}, SHIFT(1166), - [2424] = {.count = 1, .reusable = true}, SHIFT(1167), - [2426] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(269), - [2429] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(273), - [2432] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(273), - [2435] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(274), - [2438] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(277), - [2441] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(278), - [2444] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(279), - [2447] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(279), - [2450] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), - [2452] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), - [2454] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), - [2456] = {.count = 1, .reusable = true}, SHIFT(1171), - [2458] = {.count = 1, .reusable = false}, SHIFT(1171), - [2460] = {.count = 1, .reusable = true}, SHIFT(688), - [2462] = {.count = 1, .reusable = true}, SHIFT(689), - [2464] = {.count = 1, .reusable = false}, SHIFT(1176), - [2466] = {.count = 1, .reusable = true}, SHIFT(1177), - [2468] = {.count = 1, .reusable = true}, SHIFT(1178), - [2470] = {.count = 1, .reusable = false}, SHIFT(1178), - [2472] = {.count = 1, .reusable = false}, SHIFT(1182), - [2474] = {.count = 1, .reusable = true}, SHIFT(1182), - [2476] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(283), - [2479] = {.count = 1, .reusable = false}, SHIFT(1183), - [2481] = {.count = 1, .reusable = false}, SHIFT(1184), - [2483] = {.count = 1, .reusable = false}, SHIFT(1187), - [2485] = {.count = 1, .reusable = true}, SHIFT(1187), - [2487] = {.count = 1, .reusable = true}, SHIFT(1188), - [2489] = {.count = 1, .reusable = false}, SHIFT(1189), - [2491] = {.count = 1, .reusable = true}, SHIFT(1190), - [2493] = {.count = 1, .reusable = true}, SHIFT(1192), - [2495] = {.count = 1, .reusable = true}, SHIFT(1193), - [2497] = {.count = 1, .reusable = false}, SHIFT(1195), - [2499] = {.count = 1, .reusable = true}, SHIFT(1195), - [2501] = {.count = 1, .reusable = true}, SHIFT(1194), - [2503] = {.count = 1, .reusable = false}, SHIFT(1197), - [2505] = {.count = 1, .reusable = true}, SHIFT(1197), - [2507] = {.count = 1, .reusable = true}, SHIFT(1196), - [2509] = {.count = 1, .reusable = true}, SHIFT(1198), - [2511] = {.count = 1, .reusable = true}, SHIFT(1199), - [2513] = {.count = 1, .reusable = false}, SHIFT(1200), - [2515] = {.count = 1, .reusable = true}, SHIFT(1200), - [2517] = {.count = 1, .reusable = true}, SHIFT(1201), - [2519] = {.count = 1, .reusable = true}, SHIFT(1202), - [2521] = {.count = 1, .reusable = false}, SHIFT(1203), - [2523] = {.count = 1, .reusable = true}, SHIFT(1203), - [2525] = {.count = 1, .reusable = false}, SHIFT(1204), - [2527] = {.count = 1, .reusable = true}, SHIFT(1204), - [2529] = {.count = 1, .reusable = false}, SHIFT(1206), - [2531] = {.count = 1, .reusable = true}, SHIFT(1206), - [2533] = {.count = 1, .reusable = false}, SHIFT(1207), - [2535] = {.count = 1, .reusable = true}, SHIFT(1207), - [2537] = {.count = 1, .reusable = true}, SHIFT(1209), - [2539] = {.count = 1, .reusable = false}, SHIFT(1210), - [2541] = {.count = 1, .reusable = true}, SHIFT(1210), - [2543] = {.count = 1, .reusable = false}, SHIFT(1211), - [2545] = {.count = 1, .reusable = true}, SHIFT(1211), - [2547] = {.count = 1, .reusable = true}, SHIFT(1215), - [2549] = {.count = 1, .reusable = true}, SHIFT(1216), - [2551] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(311), - [2554] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(312), - [2557] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(313), - [2560] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(730), - [2563] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(313), - [2566] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(316), - [2569] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(317), - [2572] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(732), - [2575] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(317), - [2578] = {.count = 1, .reusable = true}, SHIFT(1219), - [2580] = {.count = 1, .reusable = true}, SHIFT(1220), - [2582] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 4), - [2584] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 4), - [2586] = {.count = 1, .reusable = true}, SHIFT(1222), - [2588] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(320), - [2591] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(325), - [2594] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(325), - [2597] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(326), - [2600] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(329), - [2603] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(330), - [2606] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(331), - [2609] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(331), - [2612] = {.count = 1, .reusable = false}, SHIFT(1223), - [2614] = {.count = 1, .reusable = true}, SHIFT(1223), - [2616] = {.count = 1, .reusable = true}, SHIFT(1224), - [2618] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(343), - [2621] = {.count = 1, .reusable = false}, SHIFT(1226), - [2623] = {.count = 1, .reusable = true}, SHIFT(1227), - [2625] = {.count = 1, .reusable = false}, SHIFT(1228), - [2627] = {.count = 1, .reusable = true}, SHIFT(1229), - [2629] = {.count = 1, .reusable = true}, SHIFT(1231), - [2631] = {.count = 1, .reusable = true}, SHIFT(1232), - [2633] = {.count = 1, .reusable = false}, SHIFT(1234), - [2635] = {.count = 1, .reusable = true}, SHIFT(1234), - [2637] = {.count = 1, .reusable = true}, SHIFT(1233), - [2639] = {.count = 1, .reusable = false}, SHIFT(1236), - [2641] = {.count = 1, .reusable = true}, SHIFT(1236), - [2643] = {.count = 1, .reusable = true}, SHIFT(1235), - [2645] = {.count = 1, .reusable = true}, SHIFT(1237), - [2647] = {.count = 1, .reusable = true}, SHIFT(1238), - [2649] = {.count = 1, .reusable = false}, SHIFT(1239), - [2651] = {.count = 1, .reusable = true}, SHIFT(1239), - [2653] = {.count = 1, .reusable = true}, SHIFT(1240), - [2655] = {.count = 1, .reusable = true}, SHIFT(1241), - [2657] = {.count = 1, .reusable = false}, SHIFT(1242), - [2659] = {.count = 1, .reusable = true}, SHIFT(1242), - [2661] = {.count = 1, .reusable = false}, SHIFT(1243), - [2663] = {.count = 1, .reusable = true}, SHIFT(1243), - [2665] = {.count = 1, .reusable = false}, SHIFT(1245), - [2667] = {.count = 1, .reusable = true}, SHIFT(1245), - [2669] = {.count = 1, .reusable = false}, SHIFT(1246), - [2671] = {.count = 1, .reusable = true}, SHIFT(1246), - [2673] = {.count = 1, .reusable = true}, SHIFT(1248), - [2675] = {.count = 1, .reusable = false}, SHIFT(1249), - [2677] = {.count = 1, .reusable = true}, SHIFT(1249), - [2679] = {.count = 1, .reusable = false}, SHIFT(1250), - [2681] = {.count = 1, .reusable = true}, SHIFT(1250), - [2683] = {.count = 1, .reusable = true}, SHIFT(1252), - [2685] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(372), - [2688] = {.count = 1, .reusable = false}, SHIFT(1254), - [2690] = {.count = 1, .reusable = true}, SHIFT(1255), - [2692] = {.count = 1, .reusable = false}, SHIFT(1256), - [2694] = {.count = 1, .reusable = true}, SHIFT(1257), - [2696] = {.count = 1, .reusable = true}, SHIFT(1259), - [2698] = {.count = 1, .reusable = true}, SHIFT(1260), - [2700] = {.count = 1, .reusable = false}, SHIFT(1262), - [2702] = {.count = 1, .reusable = true}, SHIFT(1262), - [2704] = {.count = 1, .reusable = true}, SHIFT(1261), - [2706] = {.count = 1, .reusable = false}, SHIFT(1264), - [2708] = {.count = 1, .reusable = true}, SHIFT(1264), - [2710] = {.count = 1, .reusable = true}, SHIFT(1263), - [2712] = {.count = 1, .reusable = true}, SHIFT(1265), - [2714] = {.count = 1, .reusable = true}, SHIFT(1266), - [2716] = {.count = 1, .reusable = false}, SHIFT(1267), - [2718] = {.count = 1, .reusable = true}, SHIFT(1267), - [2720] = {.count = 1, .reusable = true}, SHIFT(1268), - [2722] = {.count = 1, .reusable = true}, SHIFT(1269), - [2724] = {.count = 1, .reusable = false}, SHIFT(1270), - [2726] = {.count = 1, .reusable = true}, SHIFT(1270), - [2728] = {.count = 1, .reusable = false}, SHIFT(1271), - [2730] = {.count = 1, .reusable = true}, SHIFT(1271), - [2732] = {.count = 1, .reusable = false}, SHIFT(1273), - [2734] = {.count = 1, .reusable = true}, SHIFT(1273), - [2736] = {.count = 1, .reusable = false}, SHIFT(1274), - [2738] = {.count = 1, .reusable = true}, SHIFT(1274), - [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 = false}, SHIFT(1278), - [2748] = {.count = 1, .reusable = true}, SHIFT(1278), - [2750] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(394), - [2753] = {.count = 1, .reusable = false}, SHIFT(1280), - [2755] = {.count = 1, .reusable = true}, SHIFT(1281), - [2757] = {.count = 1, .reusable = false}, SHIFT(1282), - [2759] = {.count = 1, .reusable = true}, SHIFT(1283), - [2761] = {.count = 1, .reusable = true}, SHIFT(1285), - [2763] = {.count = 1, .reusable = true}, SHIFT(1286), - [2765] = {.count = 1, .reusable = false}, SHIFT(1288), - [2767] = {.count = 1, .reusable = true}, SHIFT(1288), - [2769] = {.count = 1, .reusable = true}, SHIFT(1287), - [2771] = {.count = 1, .reusable = false}, SHIFT(1290), - [2773] = {.count = 1, .reusable = true}, SHIFT(1290), - [2775] = {.count = 1, .reusable = true}, SHIFT(1289), - [2777] = {.count = 1, .reusable = true}, SHIFT(1291), - [2779] = {.count = 1, .reusable = true}, SHIFT(1292), - [2781] = {.count = 1, .reusable = false}, SHIFT(1293), - [2783] = {.count = 1, .reusable = true}, SHIFT(1293), - [2785] = {.count = 1, .reusable = true}, SHIFT(1294), - [2787] = {.count = 1, .reusable = true}, SHIFT(1295), - [2789] = {.count = 1, .reusable = false}, SHIFT(1296), - [2791] = {.count = 1, .reusable = true}, SHIFT(1296), - [2793] = {.count = 1, .reusable = false}, SHIFT(1297), - [2795] = {.count = 1, .reusable = true}, SHIFT(1297), - [2797] = {.count = 1, .reusable = false}, SHIFT(1299), - [2799] = {.count = 1, .reusable = true}, SHIFT(1299), - [2801] = {.count = 1, .reusable = false}, SHIFT(1300), - [2803] = {.count = 1, .reusable = true}, SHIFT(1300), - [2805] = {.count = 1, .reusable = true}, SHIFT(1302), - [2807] = {.count = 1, .reusable = false}, SHIFT(1303), - [2809] = {.count = 1, .reusable = true}, SHIFT(1303), - [2811] = {.count = 1, .reusable = false}, SHIFT(1304), - [2813] = {.count = 1, .reusable = true}, SHIFT(1304), - [2815] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(416), - [2818] = {.count = 1, .reusable = false}, SHIFT(1306), - [2820] = {.count = 1, .reusable = true}, SHIFT(1307), - [2822] = {.count = 1, .reusable = false}, SHIFT(1308), - [2824] = {.count = 1, .reusable = true}, SHIFT(1309), - [2826] = {.count = 1, .reusable = true}, SHIFT(1311), + [2278] = {.count = 1, .reusable = true}, SHIFT(1109), + [2280] = {.count = 1, .reusable = true}, SHIFT(1111), + [2282] = {.count = 1, .reusable = false}, SHIFT(1113), + [2284] = {.count = 1, .reusable = true}, SHIFT(1113), + [2286] = {.count = 1, .reusable = true}, SHIFT(1112), + [2288] = {.count = 1, .reusable = true}, SHIFT(1114), + [2290] = {.count = 1, .reusable = true}, SHIFT(1115), + [2292] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [2294] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [2296] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(186), + [2299] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), + [2301] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), + [2303] = {.count = 1, .reusable = true}, SHIFT(1116), + [2305] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), + [2307] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), + [2309] = {.count = 1, .reusable = true}, SHIFT(1117), + [2311] = {.count = 1, .reusable = true}, SHIFT(1118), + [2313] = {.count = 1, .reusable = true}, SHIFT(1119), + [2315] = {.count = 1, .reusable = false}, SHIFT(1120), + [2317] = {.count = 1, .reusable = true}, SHIFT(1120), + [2319] = {.count = 1, .reusable = true}, SHIFT(1121), + [2321] = {.count = 1, .reusable = false}, SHIFT(1123), + [2323] = {.count = 1, .reusable = true}, SHIFT(1123), + [2325] = {.count = 1, .reusable = true}, SHIFT(1122), + [2327] = {.count = 1, .reusable = true}, SHIFT(1124), + [2329] = {.count = 1, .reusable = false}, SHIFT(1126), + [2331] = {.count = 1, .reusable = true}, SHIFT(1126), + [2333] = {.count = 1, .reusable = true}, SHIFT(1125), + [2335] = {.count = 1, .reusable = true}, SHIFT(1127), + [2337] = {.count = 1, .reusable = false}, SHIFT(1128), + [2339] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1129), + [2342] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(190), + [2345] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(191), + [2348] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(192), + [2351] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(193), + [2354] = {.count = 1, .reusable = true}, SHIFT(1130), + [2356] = {.count = 1, .reusable = true}, SHIFT(1131), + [2358] = {.count = 1, .reusable = true}, SHIFT(1133), + [2360] = {.count = 1, .reusable = false}, SHIFT(1134), + [2362] = {.count = 1, .reusable = true}, SHIFT(1135), + [2364] = {.count = 1, .reusable = false}, SHIFT(1136), + [2366] = {.count = 1, .reusable = true}, SHIFT(1137), + [2368] = {.count = 1, .reusable = true}, SHIFT(1138), + [2370] = {.count = 1, .reusable = true}, SHIFT(1139), + [2372] = {.count = 1, .reusable = true}, SHIFT(1140), + [2374] = {.count = 1, .reusable = true}, SHIFT(1141), + [2376] = {.count = 1, .reusable = true}, SHIFT(1143), + [2378] = {.count = 1, .reusable = true}, SHIFT(1144), + [2380] = {.count = 1, .reusable = false}, SHIFT(1146), + [2382] = {.count = 1, .reusable = true}, SHIFT(1146), + [2384] = {.count = 1, .reusable = true}, SHIFT(1145), + [2386] = {.count = 1, .reusable = false}, SHIFT(1148), + [2388] = {.count = 1, .reusable = true}, SHIFT(1148), + [2390] = {.count = 1, .reusable = true}, SHIFT(1147), + [2392] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 3), + [2394] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 3), + [2396] = {.count = 1, .reusable = true}, SHIFT(1149), + [2398] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [2400] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [2402] = {.count = 1, .reusable = false}, SHIFT(1151), + [2404] = {.count = 1, .reusable = false}, SHIFT(1152), + [2406] = {.count = 1, .reusable = true}, SHIFT(1154), + [2408] = {.count = 1, .reusable = true}, SHIFT(1155), + [2410] = {.count = 1, .reusable = false}, SHIFT(1156), + [2412] = {.count = 1, .reusable = true}, SHIFT(1156), + [2414] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), + [2416] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [2418] = {.count = 1, .reusable = true}, SHIFT(1157), + [2420] = {.count = 1, .reusable = true}, SHIFT(1158), + [2422] = {.count = 1, .reusable = true}, SHIFT(1159), + [2424] = {.count = 1, .reusable = false}, SHIFT(1160), + [2426] = {.count = 1, .reusable = true}, SHIFT(1160), + [2428] = {.count = 1, .reusable = true}, SHIFT(1161), + [2430] = {.count = 1, .reusable = true}, SHIFT(1162), + [2432] = {.count = 1, .reusable = false}, SHIFT(1163), + [2434] = {.count = 1, .reusable = true}, SHIFT(1163), + [2436] = {.count = 1, .reusable = false}, SHIFT(1167), + [2438] = {.count = 1, .reusable = true}, SHIFT(1167), + [2440] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), + [2442] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), + [2444] = {.count = 1, .reusable = true}, SHIFT(1168), + [2446] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), + [2448] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), + [2450] = {.count = 1, .reusable = true}, SHIFT(1169), + [2452] = {.count = 1, .reusable = true}, SHIFT(1170), + [2454] = {.count = 1, .reusable = true}, SHIFT(1171), + [2456] = {.count = 1, .reusable = false}, SHIFT(1173), + [2458] = {.count = 1, .reusable = false}, SHIFT(1175), + [2460] = {.count = 1, .reusable = false}, SHIFT(1177), + [2462] = {.count = 1, .reusable = true}, SHIFT(1177), + [2464] = {.count = 1, .reusable = true}, SHIFT(1182), + [2466] = {.count = 1, .reusable = true}, SHIFT(1183), + [2468] = {.count = 1, .reusable = true}, SHIFT(1184), + [2470] = {.count = 1, .reusable = true}, SHIFT(1185), + [2472] = {.count = 1, .reusable = false}, SHIFT(1186), + [2474] = {.count = 1, .reusable = true}, SHIFT(1186), + [2476] = {.count = 1, .reusable = true}, SHIFT(1188), + [2478] = {.count = 1, .reusable = true}, SHIFT(1189), + [2480] = {.count = 1, .reusable = false}, SHIFT(1191), + [2482] = {.count = 1, .reusable = true}, SHIFT(1191), + [2484] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), + [2486] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), + [2488] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), + [2490] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), + [2492] = {.count = 1, .reusable = true}, SHIFT(1195), + [2494] = {.count = 1, .reusable = false}, SHIFT(1196), + [2496] = {.count = 1, .reusable = true}, SHIFT(1196), + [2498] = {.count = 1, .reusable = true}, SHIFT(1197), + [2500] = {.count = 1, .reusable = true}, SHIFT(1198), + [2502] = {.count = 1, .reusable = true}, SHIFT(1199), + [2504] = {.count = 1, .reusable = false}, SHIFT(1200), + [2506] = {.count = 1, .reusable = true}, SHIFT(1200), + [2508] = {.count = 1, .reusable = true}, SHIFT(1204), + [2510] = {.count = 1, .reusable = true}, SHIFT(1203), + [2512] = {.count = 1, .reusable = true}, SHIFT(1205), + [2514] = {.count = 1, .reusable = true}, SHIFT(1206), + [2516] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), + [2518] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), + [2520] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), + [2522] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), + [2524] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), + [2526] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), + [2528] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 2), + [2530] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 2), + [2532] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), + [2534] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), + [2536] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 3), + [2538] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 3), + [2540] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 3), + [2542] = {.count = 1, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [2544] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(221), + [2547] = {.count = 1, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [2549] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(225), + [2552] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(225), + [2555] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(226), + [2558] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(226), + [2561] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(227), + [2564] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), + [2566] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), + [2568] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 2), + [2570] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 2), + [2572] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(230), + [2575] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(231), + [2578] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(19), + [2581] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), + [2584] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(232), + [2587] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), + [2590] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(23), + [2593] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(24), + [2596] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(25), + [2599] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(232), + [2602] = {.count = 1, .reusable = false}, SHIFT(1209), + [2604] = {.count = 1, .reusable = true}, SHIFT(1209), + [2606] = {.count = 1, .reusable = false}, SHIFT(1210), + [2608] = {.count = 1, .reusable = false}, SHIFT(1211), + [2610] = {.count = 1, .reusable = true}, SHIFT(1212), + [2612] = {.count = 1, .reusable = false}, SHIFT(1213), + [2614] = {.count = 1, .reusable = false}, SHIFT(1214), + [2616] = {.count = 1, .reusable = true}, SHIFT(1213), + [2618] = {.count = 1, .reusable = true}, SHIFT(1214), + [2620] = {.count = 1, .reusable = true}, SHIFT(1215), + [2622] = {.count = 1, .reusable = false}, SHIFT(1216), + [2624] = {.count = 1, .reusable = true}, SHIFT(1216), + [2626] = {.count = 1, .reusable = true}, SHIFT(1217), + [2628] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), + [2630] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), + [2632] = {.count = 1, .reusable = true}, SHIFT(1222), + [2634] = {.count = 1, .reusable = false}, SHIFT(1045), + [2636] = {.count = 1, .reusable = true}, SHIFT(1223), + [2638] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 4), + [2640] = {.count = 1, .reusable = true}, SHIFT(1225), + [2642] = {.count = 1, .reusable = true}, SHIFT(1226), + [2644] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), + [2646] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), + [2648] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), + [2650] = {.count = 1, .reusable = true}, SHIFT(1227), + [2652] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2654] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2656] = {.count = 1, .reusable = false}, SHIFT(1229), + [2658] = {.count = 1, .reusable = false}, SHIFT(1230), + [2660] = {.count = 1, .reusable = true}, SHIFT(1232), + [2662] = {.count = 1, .reusable = true}, SHIFT(1233), + [2664] = {.count = 1, .reusable = false}, SHIFT(1234), + [2666] = {.count = 1, .reusable = true}, SHIFT(1234), + [2668] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2670] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2672] = {.count = 1, .reusable = true}, SHIFT(1235), + [2674] = {.count = 1, .reusable = true}, SHIFT(1236), + [2676] = {.count = 1, .reusable = true}, SHIFT(1237), + [2678] = {.count = 1, .reusable = false}, SHIFT(1238), + [2680] = {.count = 1, .reusable = true}, SHIFT(1238), + [2682] = {.count = 1, .reusable = true}, SHIFT(1242), + [2684] = {.count = 1, .reusable = true}, SHIFT(1244), + [2686] = {.count = 1, .reusable = false}, SHIFT(1246), + [2688] = {.count = 1, .reusable = false}, SHIFT(1247), + [2690] = {.count = 1, .reusable = true}, SHIFT(1248), + [2692] = {.count = 1, .reusable = true}, SHIFT(1249), + [2694] = {.count = 1, .reusable = true}, SHIFT(1250), + [2696] = {.count = 1, .reusable = false}, SHIFT(1251), + [2698] = {.count = 1, .reusable = true}, SHIFT(1251), + [2700] = {.count = 1, .reusable = true}, SHIFT(1252), + [2702] = {.count = 1, .reusable = false}, SHIFT(1254), + [2704] = {.count = 1, .reusable = true}, SHIFT(1254), + [2706] = {.count = 1, .reusable = true}, SHIFT(1253), + [2708] = {.count = 1, .reusable = true}, SHIFT(1255), + [2710] = {.count = 1, .reusable = false}, SHIFT(1257), + [2712] = {.count = 1, .reusable = true}, SHIFT(1257), + [2714] = {.count = 1, .reusable = true}, SHIFT(1256), + [2716] = {.count = 1, .reusable = true}, SHIFT(1258), + [2718] = {.count = 1, .reusable = true}, SHIFT(1259), + [2720] = {.count = 1, .reusable = true}, SHIFT(1260), + [2722] = {.count = 1, .reusable = false}, SHIFT(1262), + [2724] = {.count = 1, .reusable = true}, SHIFT(1262), + [2726] = {.count = 1, .reusable = true}, SHIFT(1263), + [2728] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2), + [2730] = {.count = 1, .reusable = true}, SHIFT(1264), + [2732] = {.count = 1, .reusable = false}, SHIFT(1266), + [2734] = {.count = 1, .reusable = false}, SHIFT(1267), + [2736] = {.count = 1, .reusable = true}, SHIFT(1268), + [2738] = {.count = 1, .reusable = true}, SHIFT(1269), + [2740] = {.count = 1, .reusable = true}, SHIFT(1270), + [2742] = {.count = 1, .reusable = false}, SHIFT(1271), + [2744] = {.count = 1, .reusable = true}, SHIFT(1271), + [2746] = {.count = 1, .reusable = true}, SHIFT(1272), + [2748] = {.count = 1, .reusable = false}, SHIFT(1274), + [2750] = {.count = 1, .reusable = true}, SHIFT(1274), + [2752] = {.count = 1, .reusable = true}, SHIFT(1273), + [2754] = {.count = 1, .reusable = true}, SHIFT(1275), + [2756] = {.count = 1, .reusable = false}, SHIFT(1277), + [2758] = {.count = 1, .reusable = true}, SHIFT(1277), + [2760] = {.count = 1, .reusable = true}, SHIFT(1276), + [2762] = {.count = 1, .reusable = true}, SHIFT(1278), + [2764] = {.count = 1, .reusable = true}, SHIFT(1279), + [2766] = {.count = 1, .reusable = true}, SHIFT(1282), + [2768] = {.count = 1, .reusable = true}, SHIFT(1283), + [2770] = {.count = 1, .reusable = false}, SHIFT(1285), + [2772] = {.count = 1, .reusable = false}, SHIFT(1286), + [2774] = {.count = 1, .reusable = true}, SHIFT(1288), + [2776] = {.count = 1, .reusable = true}, SHIFT(1289), + [2778] = {.count = 1, .reusable = false}, SHIFT(1290), + [2780] = {.count = 1, .reusable = true}, SHIFT(1290), + [2782] = {.count = 1, .reusable = true}, SHIFT(1291), + [2784] = {.count = 1, .reusable = true}, SHIFT(1292), + [2786] = {.count = 1, .reusable = true}, SHIFT(1293), + [2788] = {.count = 1, .reusable = false}, SHIFT(1294), + [2790] = {.count = 1, .reusable = true}, SHIFT(1294), + [2792] = {.count = 1, .reusable = false}, SHIFT(1298), + [2794] = {.count = 1, .reusable = true}, SHIFT(1298), + [2796] = {.count = 1, .reusable = false}, SHIFT(710), + [2798] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4), + [2800] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4), + [2802] = {.count = 1, .reusable = true}, SHIFT(1300), + [2804] = {.count = 1, .reusable = true}, SHIFT(1301), + [2806] = {.count = 1, .reusable = false}, SHIFT(1303), + [2808] = {.count = 1, .reusable = false}, SHIFT(1304), + [2810] = {.count = 1, .reusable = true}, SHIFT(1305), + [2812] = {.count = 1, .reusable = true}, SHIFT(1306), + [2814] = {.count = 1, .reusable = true}, SHIFT(1307), + [2816] = {.count = 1, .reusable = false}, SHIFT(1308), + [2818] = {.count = 1, .reusable = true}, SHIFT(1308), + [2820] = {.count = 1, .reusable = true}, SHIFT(1309), + [2822] = {.count = 1, .reusable = false}, SHIFT(1311), + [2824] = {.count = 1, .reusable = true}, SHIFT(1311), + [2826] = {.count = 1, .reusable = true}, SHIFT(1310), [2828] = {.count = 1, .reusable = true}, SHIFT(1312), [2830] = {.count = 1, .reusable = false}, SHIFT(1314), [2832] = {.count = 1, .reusable = true}, SHIFT(1314), [2834] = {.count = 1, .reusable = true}, SHIFT(1313), - [2836] = {.count = 1, .reusable = false}, SHIFT(1316), + [2836] = {.count = 1, .reusable = true}, SHIFT(1315), [2838] = {.count = 1, .reusable = true}, SHIFT(1316), - [2840] = {.count = 1, .reusable = true}, SHIFT(1315), - [2842] = {.count = 1, .reusable = true}, SHIFT(1317), + [2840] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [2842] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), [2844] = {.count = 1, .reusable = true}, SHIFT(1318), - [2846] = {.count = 1, .reusable = false}, SHIFT(1319), - [2848] = {.count = 1, .reusable = true}, SHIFT(1319), - [2850] = {.count = 1, .reusable = true}, SHIFT(1320), - [2852] = {.count = 1, .reusable = true}, SHIFT(1321), - [2854] = {.count = 1, .reusable = false}, SHIFT(1322), - [2856] = {.count = 1, .reusable = true}, SHIFT(1322), - [2858] = {.count = 1, .reusable = false}, SHIFT(1323), - [2860] = {.count = 1, .reusable = true}, SHIFT(1323), - [2862] = {.count = 1, .reusable = false}, SHIFT(1325), - [2864] = {.count = 1, .reusable = true}, SHIFT(1325), - [2866] = {.count = 1, .reusable = false}, SHIFT(1326), - [2868] = {.count = 1, .reusable = true}, SHIFT(1326), - [2870] = {.count = 1, .reusable = true}, SHIFT(1328), - [2872] = {.count = 1, .reusable = false}, SHIFT(1329), - [2874] = {.count = 1, .reusable = true}, SHIFT(1329), - [2876] = {.count = 1, .reusable = false}, SHIFT(1330), - [2878] = {.count = 1, .reusable = true}, SHIFT(1330), - [2880] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), - [2882] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 3), - [2884] = {.count = 1, .reusable = true}, SHIFT(1332), - [2886] = {.count = 1, .reusable = false}, SHIFT(1333), - [2888] = {.count = 1, .reusable = true}, SHIFT(1334), - [2890] = {.count = 1, .reusable = true}, SHIFT(1336), - [2892] = {.count = 1, .reusable = true}, SHIFT(1337), - [2894] = {.count = 1, .reusable = false}, SHIFT(1339), - [2896] = {.count = 1, .reusable = true}, SHIFT(1339), - [2898] = {.count = 1, .reusable = true}, SHIFT(1338), - [2900] = {.count = 1, .reusable = false}, SHIFT(1341), - [2902] = {.count = 1, .reusable = true}, SHIFT(1341), - [2904] = {.count = 1, .reusable = true}, SHIFT(1340), - [2906] = {.count = 1, .reusable = true}, SHIFT(1342), - [2908] = {.count = 1, .reusable = true}, SHIFT(1343), - [2910] = {.count = 1, .reusable = false}, SHIFT(1344), - [2912] = {.count = 1, .reusable = true}, SHIFT(1344), - [2914] = {.count = 1, .reusable = true}, SHIFT(1345), - [2916] = {.count = 1, .reusable = true}, SHIFT(1346), - [2918] = {.count = 1, .reusable = false}, SHIFT(1347), - [2920] = {.count = 1, .reusable = true}, SHIFT(1347), - [2922] = {.count = 1, .reusable = false}, SHIFT(1348), - [2924] = {.count = 1, .reusable = true}, SHIFT(1348), - [2926] = {.count = 1, .reusable = false}, SHIFT(1350), - [2928] = {.count = 1, .reusable = true}, SHIFT(1350), - [2930] = {.count = 1, .reusable = false}, SHIFT(1351), - [2932] = {.count = 1, .reusable = true}, SHIFT(1351), - [2934] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), - [2936] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), - [2938] = {.count = 1, .reusable = true}, SHIFT(1353), - [2940] = {.count = 1, .reusable = true}, SHIFT(1354), - [2942] = {.count = 1, .reusable = true}, SHIFT(1355), - [2944] = {.count = 1, .reusable = true}, SHIFT(1356), - [2946] = {.count = 1, .reusable = true}, SHIFT(1357), - [2948] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), - [2950] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), - [2952] = {.count = 1, .reusable = true}, SHIFT(1358), - [2954] = {.count = 1, .reusable = true}, SHIFT(1359), - [2956] = {.count = 1, .reusable = false}, SHIFT(1361), - [2958] = {.count = 1, .reusable = false}, SHIFT(1362), - [2960] = {.count = 1, .reusable = true}, SHIFT(1364), - [2962] = {.count = 1, .reusable = true}, SHIFT(1365), - [2964] = {.count = 1, .reusable = false}, SHIFT(1366), - [2966] = {.count = 1, .reusable = true}, SHIFT(1366), - [2968] = {.count = 1, .reusable = true}, SHIFT(1367), - [2970] = {.count = 1, .reusable = true}, SHIFT(1368), - [2972] = {.count = 1, .reusable = true}, SHIFT(1369), - [2974] = {.count = 1, .reusable = true}, SHIFT(1370), - [2976] = {.count = 1, .reusable = false}, SHIFT(1371), - [2978] = {.count = 1, .reusable = true}, SHIFT(1371), - [2980] = {.count = 1, .reusable = false}, SHIFT(1381), - [2982] = {.count = 1, .reusable = true}, SHIFT(1382), - [2984] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [2986] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [2988] = {.count = 1, .reusable = true}, SHIFT(1384), - [2990] = {.count = 1, .reusable = true}, SHIFT(1385), - [2992] = {.count = 1, .reusable = false}, SHIFT(1386), - [2994] = {.count = 1, .reusable = true}, SHIFT(1386), - [2996] = {.count = 1, .reusable = true}, SHIFT(1387), - [2998] = {.count = 1, .reusable = false}, SHIFT(1388), - [3000] = {.count = 1, .reusable = true}, SHIFT(1388), - [3002] = {.count = 1, .reusable = true}, SHIFT(1389), - [3004] = {.count = 1, .reusable = false}, SHIFT(1391), - [3006] = {.count = 1, .reusable = false}, SHIFT(1392), - [3008] = {.count = 1, .reusable = true}, SHIFT(1393), - [3010] = {.count = 1, .reusable = true}, SHIFT(1394), - [3012] = {.count = 1, .reusable = true}, SHIFT(1395), - [3014] = {.count = 1, .reusable = false}, SHIFT(1396), - [3016] = {.count = 1, .reusable = true}, SHIFT(1396), - [3018] = {.count = 1, .reusable = true}, SHIFT(1397), - [3020] = {.count = 1, .reusable = false}, SHIFT(1399), - [3022] = {.count = 1, .reusable = true}, SHIFT(1399), - [3024] = {.count = 1, .reusable = true}, SHIFT(1398), - [3026] = {.count = 1, .reusable = true}, SHIFT(1400), - [3028] = {.count = 1, .reusable = false}, SHIFT(1402), - [3030] = {.count = 1, .reusable = true}, SHIFT(1402), - [3032] = {.count = 1, .reusable = true}, SHIFT(1401), - [3034] = {.count = 1, .reusable = true}, SHIFT(1403), - [3036] = {.count = 1, .reusable = false}, SHIFT(1404), - [3038] = {.count = 1, .reusable = true}, SHIFT(1404), - [3040] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 3), - [3042] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 3), - [3044] = {.count = 1, .reusable = false}, SHIFT(1405), - [3046] = {.count = 1, .reusable = true}, SHIFT(1406), - [3048] = {.count = 1, .reusable = true}, SHIFT(1405), - [3050] = {.count = 1, .reusable = false}, SHIFT(1410), - [3052] = {.count = 1, .reusable = true}, SHIFT(1410), - [3054] = {.count = 1, .reusable = false}, SHIFT(1414), - [3056] = {.count = 1, .reusable = true}, SHIFT(1415), - [3058] = {.count = 1, .reusable = true}, SHIFT(1414), - [3060] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), - [3062] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(942), - [3065] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(462), - [3068] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(463), - [3071] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(464), - [3074] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(465), - [3077] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(942), - [3080] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(466), - [3083] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(468), - [3086] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(469), - [3089] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(470), - [3092] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(465), - [3095] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 4), - [3097] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 4), - [3099] = {.count = 1, .reusable = true}, SHIFT(1419), - [3101] = {.count = 1, .reusable = false}, SHIFT(1420), - [3103] = {.count = 1, .reusable = true}, SHIFT(1420), - [3105] = {.count = 1, .reusable = true}, SHIFT(1421), - [3107] = {.count = 1, .reusable = true}, SHIFT(1422), - [3109] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(482), - [3112] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(486), - [3115] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(486), - [3118] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(487), - [3121] = {.count = 1, .reusable = false}, SHIFT(1424), - [3123] = {.count = 1, .reusable = true}, SHIFT(1424), - [3125] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 4), - [3127] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 4), - [3129] = {.count = 1, .reusable = true}, SHIFT(1425), - [3131] = {.count = 1, .reusable = false}, SHIFT(1426), - [3133] = {.count = 1, .reusable = true}, SHIFT(1426), - [3135] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), - [3137] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), + [2846] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(281), + [2849] = {.count = 1, .reusable = false}, SHIFT(1319), + [2851] = {.count = 1, .reusable = true}, SHIFT(1320), + [2853] = {.count = 1, .reusable = false}, SHIFT(1321), + [2855] = {.count = 1, .reusable = true}, SHIFT(1322), + [2857] = {.count = 1, .reusable = true}, SHIFT(1324), + [2859] = {.count = 1, .reusable = true}, SHIFT(1325), + [2861] = {.count = 1, .reusable = false}, SHIFT(1327), + [2863] = {.count = 1, .reusable = true}, SHIFT(1327), + [2865] = {.count = 1, .reusable = true}, SHIFT(1326), + [2867] = {.count = 1, .reusable = false}, SHIFT(1329), + [2869] = {.count = 1, .reusable = true}, SHIFT(1329), + [2871] = {.count = 1, .reusable = true}, SHIFT(1328), + [2873] = {.count = 1, .reusable = true}, SHIFT(1330), + [2875] = {.count = 1, .reusable = true}, SHIFT(1331), + [2877] = {.count = 1, .reusable = false}, SHIFT(1332), + [2879] = {.count = 1, .reusable = true}, SHIFT(1332), + [2881] = {.count = 1, .reusable = true}, SHIFT(1333), + [2883] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), + [2885] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), + [2887] = {.count = 1, .reusable = true}, SHIFT(1334), + [2889] = {.count = 1, .reusable = true}, SHIFT(1336), + [2891] = {.count = 1, .reusable = false}, SHIFT(1338), + [2893] = {.count = 1, .reusable = false}, SHIFT(1339), + [2895] = {.count = 1, .reusable = true}, SHIFT(1341), + [2897] = {.count = 1, .reusable = true}, SHIFT(1342), + [2899] = {.count = 1, .reusable = false}, SHIFT(1343), + [2901] = {.count = 1, .reusable = true}, SHIFT(1343), + [2903] = {.count = 1, .reusable = true}, SHIFT(1344), + [2905] = {.count = 1, .reusable = true}, SHIFT(1345), + [2907] = {.count = 1, .reusable = true}, SHIFT(1346), + [2909] = {.count = 1, .reusable = false}, SHIFT(1347), + [2911] = {.count = 1, .reusable = true}, SHIFT(1347), + [2913] = {.count = 1, .reusable = false}, SHIFT(1351), + [2915] = {.count = 1, .reusable = true}, SHIFT(1351), + [2917] = {.count = 1, .reusable = false}, SHIFT(1353), + [2919] = {.count = 1, .reusable = true}, SHIFT(1353), + [2921] = {.count = 1, .reusable = false}, SHIFT(1356), + [2923] = {.count = 1, .reusable = false}, SHIFT(1358), + [2925] = {.count = 1, .reusable = false}, SHIFT(1362), + [2927] = {.count = 1, .reusable = true}, SHIFT(1362), + [2929] = {.count = 1, .reusable = true}, SHIFT(1363), + [2931] = {.count = 1, .reusable = false}, SHIFT(1364), + [2933] = {.count = 1, .reusable = true}, SHIFT(1364), + [2935] = {.count = 1, .reusable = true}, SHIFT(1365), + [2937] = {.count = 1, .reusable = true}, SHIFT(1366), + [2939] = {.count = 1, .reusable = true}, SHIFT(1367), + [2941] = {.count = 1, .reusable = true}, SHIFT(1368), + [2943] = {.count = 1, .reusable = true}, SHIFT(1369), + [2945] = {.count = 1, .reusable = true}, SHIFT(1370), + [2947] = {.count = 1, .reusable = true}, SHIFT(1371), + [2949] = {.count = 1, .reusable = false}, SHIFT(1373), + [2951] = {.count = 1, .reusable = false}, SHIFT(1374), + [2953] = {.count = 1, .reusable = true}, SHIFT(1375), + [2955] = {.count = 1, .reusable = true}, SHIFT(1376), + [2957] = {.count = 1, .reusable = true}, SHIFT(1377), + [2959] = {.count = 1, .reusable = false}, SHIFT(1378), + [2961] = {.count = 1, .reusable = true}, SHIFT(1378), + [2963] = {.count = 1, .reusable = true}, SHIFT(1379), + [2965] = {.count = 1, .reusable = false}, SHIFT(1381), + [2967] = {.count = 1, .reusable = true}, SHIFT(1381), + [2969] = {.count = 1, .reusable = true}, SHIFT(1380), + [2971] = {.count = 1, .reusable = true}, SHIFT(1382), + [2973] = {.count = 1, .reusable = false}, SHIFT(1384), + [2975] = {.count = 1, .reusable = true}, SHIFT(1384), + [2977] = {.count = 1, .reusable = true}, SHIFT(1383), + [2979] = {.count = 1, .reusable = true}, SHIFT(1385), + [2981] = {.count = 1, .reusable = true}, SHIFT(1386), + [2983] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(316), + [2986] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(317), + [2989] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(318), + [2992] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(319), + [2995] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(320), + [2998] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(321), + [3001] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(322), + [3004] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(323), + [3007] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(324), + [3010] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(798), + [3013] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(320), + [3016] = {.count = 1, .reusable = true}, SHIFT(1387), + [3018] = {.count = 1, .reusable = false}, SHIFT(1389), + [3020] = {.count = 1, .reusable = false}, SHIFT(1390), + [3022] = {.count = 1, .reusable = true}, SHIFT(1391), + [3024] = {.count = 1, .reusable = true}, SHIFT(1392), + [3026] = {.count = 1, .reusable = true}, SHIFT(1393), + [3028] = {.count = 1, .reusable = false}, SHIFT(1394), + [3030] = {.count = 1, .reusable = true}, SHIFT(1394), + [3032] = {.count = 1, .reusable = true}, SHIFT(1395), + [3034] = {.count = 1, .reusable = false}, SHIFT(1397), + [3036] = {.count = 1, .reusable = true}, SHIFT(1397), + [3038] = {.count = 1, .reusable = true}, SHIFT(1396), + [3040] = {.count = 1, .reusable = true}, SHIFT(1398), + [3042] = {.count = 1, .reusable = false}, SHIFT(1400), + [3044] = {.count = 1, .reusable = true}, SHIFT(1400), + [3046] = {.count = 1, .reusable = true}, SHIFT(1399), + [3048] = {.count = 1, .reusable = true}, SHIFT(1401), + [3050] = {.count = 1, .reusable = true}, SHIFT(1402), + [3052] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(327), + [3055] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(328), + [3058] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(329), + [3061] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(330), + [3064] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(331), + [3067] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(332), + [3070] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(333), + [3073] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(334), + [3076] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(814), + [3079] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(330), + [3082] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(336), + [3085] = {.count = 1, .reusable = false}, SHIFT(1403), + [3087] = {.count = 1, .reusable = true}, SHIFT(1404), + [3089] = {.count = 1, .reusable = false}, SHIFT(1405), + [3091] = {.count = 1, .reusable = true}, SHIFT(1406), + [3093] = {.count = 1, .reusable = true}, SHIFT(1408), + [3095] = {.count = 1, .reusable = true}, SHIFT(1409), + [3097] = {.count = 1, .reusable = false}, SHIFT(1411), + [3099] = {.count = 1, .reusable = true}, SHIFT(1411), + [3101] = {.count = 1, .reusable = true}, SHIFT(1410), + [3103] = {.count = 1, .reusable = false}, SHIFT(1413), + [3105] = {.count = 1, .reusable = true}, SHIFT(1413), + [3107] = {.count = 1, .reusable = true}, SHIFT(1412), + [3109] = {.count = 1, .reusable = true}, SHIFT(1414), + [3111] = {.count = 1, .reusable = true}, SHIFT(1415), + [3113] = {.count = 1, .reusable = false}, SHIFT(1416), + [3115] = {.count = 1, .reusable = true}, SHIFT(1416), + [3117] = {.count = 1, .reusable = true}, SHIFT(1417), + [3119] = {.count = 1, .reusable = true}, SHIFT(1419), + [3121] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), + [3123] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), + [3125] = {.count = 1, .reusable = true}, SHIFT(1420), + [3127] = {.count = 1, .reusable = true}, SHIFT(1421), + [3129] = {.count = 1, .reusable = true}, SHIFT(1422), + [3131] = {.count = 1, .reusable = false}, SHIFT(1423), + [3133] = {.count = 1, .reusable = true}, SHIFT(1424), + [3135] = {.count = 1, .reusable = true}, SHIFT(1425), + [3137] = {.count = 1, .reusable = true}, SHIFT(1426), [3139] = {.count = 1, .reusable = true}, SHIFT(1427), [3141] = {.count = 1, .reusable = true}, SHIFT(1428), - [3143] = {.count = 1, .reusable = true}, SHIFT(1429), - [3145] = {.count = 1, .reusable = false}, SHIFT(1430), - [3147] = {.count = 1, .reusable = true}, SHIFT(1430), - [3149] = {.count = 1, .reusable = true}, SHIFT(1431), + [3143] = {.count = 1, .reusable = false}, SHIFT(1430), + [3145] = {.count = 1, .reusable = false}, SHIFT(1424), + [3147] = {.count = 1, .reusable = true}, SHIFT(1431), + [3149] = {.count = 1, .reusable = true}, SHIFT(1432), [3151] = {.count = 1, .reusable = false}, SHIFT(1433), - [3153] = {.count = 1, .reusable = true}, SHIFT(1433), - [3155] = {.count = 1, .reusable = true}, SHIFT(1432), - [3157] = {.count = 1, .reusable = true}, SHIFT(1434), - [3159] = {.count = 1, .reusable = false}, SHIFT(1436), - [3161] = {.count = 1, .reusable = true}, SHIFT(1436), - [3163] = {.count = 1, .reusable = true}, SHIFT(1435), - [3165] = {.count = 1, .reusable = false}, SHIFT(1437), - [3167] = {.count = 1, .reusable = true}, SHIFT(1438), - [3169] = {.count = 1, .reusable = true}, SHIFT(1437), - [3171] = {.count = 1, .reusable = false}, SHIFT(1442), - [3173] = {.count = 1, .reusable = true}, SHIFT(1442), - [3175] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), - [3177] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), - [3179] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(980), - [3182] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [3184] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(501), - [3187] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(502), - [3190] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(503), - [3193] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(504), - [3196] = {.count = 1, .reusable = true}, REDUCE(sym_program, 4), - [3198] = {.count = 1, .reusable = false}, SHIFT(1447), - [3200] = {.count = 1, .reusable = true}, SHIFT(1447), - [3202] = {.count = 1, .reusable = true}, SHIFT(1448), - [3204] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 4), - [3206] = {.count = 1, .reusable = true}, SHIFT(1449), - [3208] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), - [3210] = {.count = 1, .reusable = true}, SHIFT(1450), - [3212] = {.count = 1, .reusable = false}, SHIFT(1452), - [3214] = {.count = 1, .reusable = false}, SHIFT(1453), - [3216] = {.count = 1, .reusable = true}, SHIFT(1454), - [3218] = {.count = 1, .reusable = true}, SHIFT(1455), - [3220] = {.count = 1, .reusable = true}, SHIFT(1456), - [3222] = {.count = 1, .reusable = false}, SHIFT(1457), - [3224] = {.count = 1, .reusable = true}, SHIFT(1457), - [3226] = {.count = 1, .reusable = true}, SHIFT(1458), - [3228] = {.count = 1, .reusable = false}, SHIFT(1460), - [3230] = {.count = 1, .reusable = true}, SHIFT(1460), - [3232] = {.count = 1, .reusable = true}, SHIFT(1459), - [3234] = {.count = 1, .reusable = true}, SHIFT(1461), - [3236] = {.count = 1, .reusable = false}, SHIFT(1463), - [3238] = {.count = 1, .reusable = true}, SHIFT(1463), - [3240] = {.count = 1, .reusable = true}, SHIFT(1462), - [3242] = {.count = 1, .reusable = false}, SHIFT(1464), - [3244] = {.count = 1, .reusable = true}, SHIFT(1465), - [3246] = {.count = 1, .reusable = true}, SHIFT(1464), - [3248] = {.count = 1, .reusable = false}, SHIFT(1469), - [3250] = {.count = 1, .reusable = true}, SHIFT(1469), - [3252] = {.count = 1, .reusable = false}, SHIFT(1473), - [3254] = {.count = 1, .reusable = true}, SHIFT(1474), - [3256] = {.count = 1, .reusable = true}, SHIFT(1473), - [3258] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), - [3260] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), - [3262] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3264] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(536), - [3267] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(537), - [3270] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(538), - [3273] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(539), - [3276] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(540), - [3279] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(541), - [3282] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(542), - [3285] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(543), - [3288] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(545), - [3291] = {.count = 1, .reusable = false}, SHIFT(1478), - [3293] = {.count = 1, .reusable = true}, SHIFT(1479), - [3295] = {.count = 1, .reusable = false}, SHIFT(1480), - [3297] = {.count = 1, .reusable = true}, SHIFT(1481), - [3299] = {.count = 1, .reusable = true}, SHIFT(1483), - [3301] = {.count = 1, .reusable = true}, SHIFT(1484), - [3303] = {.count = 1, .reusable = false}, SHIFT(1486), - [3305] = {.count = 1, .reusable = true}, SHIFT(1486), - [3307] = {.count = 1, .reusable = true}, SHIFT(1485), - [3309] = {.count = 1, .reusable = false}, SHIFT(1488), - [3311] = {.count = 1, .reusable = true}, SHIFT(1488), - [3313] = {.count = 1, .reusable = true}, SHIFT(1487), - [3315] = {.count = 1, .reusable = true}, SHIFT(1489), - [3317] = {.count = 1, .reusable = true}, SHIFT(1490), - [3319] = {.count = 1, .reusable = false}, SHIFT(1491), - [3321] = {.count = 1, .reusable = true}, SHIFT(1491), - [3323] = {.count = 1, .reusable = true}, SHIFT(1492), - [3325] = {.count = 1, .reusable = true}, SHIFT(1493), - [3327] = {.count = 1, .reusable = false}, SHIFT(1494), - [3329] = {.count = 1, .reusable = true}, SHIFT(1494), - [3331] = {.count = 1, .reusable = false}, SHIFT(1495), - [3333] = {.count = 1, .reusable = true}, SHIFT(1495), - [3335] = {.count = 1, .reusable = false}, SHIFT(1497), - [3337] = {.count = 1, .reusable = true}, SHIFT(1497), - [3339] = {.count = 1, .reusable = false}, SHIFT(1498), - [3341] = {.count = 1, .reusable = true}, SHIFT(1498), - [3343] = {.count = 1, .reusable = true}, SHIFT(1500), - [3345] = {.count = 1, .reusable = false}, SHIFT(1501), - [3347] = {.count = 1, .reusable = true}, SHIFT(1501), - [3349] = {.count = 1, .reusable = false}, SHIFT(1502), - [3351] = {.count = 1, .reusable = true}, SHIFT(1502), - [3353] = {.count = 1, .reusable = true}, SHIFT(1504), - [3355] = {.count = 1, .reusable = true}, SHIFT(1506), - [3357] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(570), - [3360] = {.count = 1, .reusable = false}, SHIFT(1508), - [3362] = {.count = 1, .reusable = true}, SHIFT(1509), - [3364] = {.count = 1, .reusable = false}, SHIFT(1510), - [3366] = {.count = 1, .reusable = true}, SHIFT(1511), - [3368] = {.count = 1, .reusable = true}, SHIFT(1513), - [3370] = {.count = 1, .reusable = true}, SHIFT(1514), - [3372] = {.count = 1, .reusable = false}, SHIFT(1516), - [3374] = {.count = 1, .reusable = true}, SHIFT(1516), - [3376] = {.count = 1, .reusable = true}, SHIFT(1515), - [3378] = {.count = 1, .reusable = false}, SHIFT(1518), - [3380] = {.count = 1, .reusable = true}, SHIFT(1518), - [3382] = {.count = 1, .reusable = true}, SHIFT(1517), - [3384] = {.count = 1, .reusable = true}, SHIFT(1519), - [3386] = {.count = 1, .reusable = true}, SHIFT(1520), - [3388] = {.count = 1, .reusable = false}, SHIFT(1521), - [3390] = {.count = 1, .reusable = true}, SHIFT(1521), - [3392] = {.count = 1, .reusable = true}, SHIFT(1522), - [3394] = {.count = 1, .reusable = true}, SHIFT(1523), - [3396] = {.count = 1, .reusable = false}, SHIFT(1524), - [3398] = {.count = 1, .reusable = true}, SHIFT(1524), - [3400] = {.count = 1, .reusable = false}, SHIFT(1525), - [3402] = {.count = 1, .reusable = true}, SHIFT(1525), - [3404] = {.count = 1, .reusable = false}, SHIFT(1527), - [3406] = {.count = 1, .reusable = true}, SHIFT(1527), - [3408] = {.count = 1, .reusable = false}, SHIFT(1528), - [3410] = {.count = 1, .reusable = true}, SHIFT(1528), - [3412] = {.count = 1, .reusable = true}, SHIFT(1530), - [3414] = {.count = 1, .reusable = false}, SHIFT(1531), - [3416] = {.count = 1, .reusable = true}, SHIFT(1531), - [3418] = {.count = 1, .reusable = false}, SHIFT(1532), - [3420] = {.count = 1, .reusable = true}, SHIFT(1532), - [3422] = {.count = 1, .reusable = false}, SHIFT(1534), - [3424] = {.count = 1, .reusable = true}, SHIFT(1534), - [3426] = {.count = 1, .reusable = true}, SHIFT(1535), - [3428] = {.count = 1, .reusable = false}, SHIFT(1537), - [3430] = {.count = 1, .reusable = false}, SHIFT(1538), - [3432] = {.count = 1, .reusable = true}, SHIFT(1539), - [3434] = {.count = 1, .reusable = true}, SHIFT(1540), - [3436] = {.count = 1, .reusable = true}, SHIFT(1541), - [3438] = {.count = 1, .reusable = false}, SHIFT(1542), - [3440] = {.count = 1, .reusable = true}, SHIFT(1542), - [3442] = {.count = 1, .reusable = true}, SHIFT(1543), - [3444] = {.count = 1, .reusable = false}, SHIFT(1545), - [3446] = {.count = 1, .reusable = true}, SHIFT(1545), - [3448] = {.count = 1, .reusable = true}, SHIFT(1544), - [3450] = {.count = 1, .reusable = true}, SHIFT(1546), - [3452] = {.count = 1, .reusable = false}, SHIFT(1548), - [3454] = {.count = 1, .reusable = true}, SHIFT(1548), - [3456] = {.count = 1, .reusable = true}, SHIFT(1547), - [3458] = {.count = 1, .reusable = false}, SHIFT(1549), - [3460] = {.count = 1, .reusable = true}, SHIFT(1550), - [3462] = {.count = 1, .reusable = true}, SHIFT(1549), - [3464] = {.count = 1, .reusable = false}, SHIFT(1554), - [3466] = {.count = 1, .reusable = true}, SHIFT(1554), - [3468] = {.count = 1, .reusable = false}, SHIFT(1558), - [3470] = {.count = 1, .reusable = true}, SHIFT(1559), - [3472] = {.count = 1, .reusable = true}, SHIFT(1558), - [3474] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3476] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(595), - [3479] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(596), - [3482] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(597), - [3485] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(598), - [3488] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(599), - [3491] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(600), - [3494] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(601), - [3497] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(602), - [3500] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(598), - [3503] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(607), - [3506] = {.count = 1, .reusable = false}, SHIFT(1564), - [3508] = {.count = 1, .reusable = true}, SHIFT(1565), - [3510] = {.count = 1, .reusable = false}, SHIFT(1566), - [3512] = {.count = 1, .reusable = true}, SHIFT(1567), - [3514] = {.count = 1, .reusable = true}, SHIFT(1569), - [3516] = {.count = 1, .reusable = true}, SHIFT(1570), - [3518] = {.count = 1, .reusable = false}, SHIFT(1572), - [3520] = {.count = 1, .reusable = true}, SHIFT(1572), - [3522] = {.count = 1, .reusable = true}, SHIFT(1571), - [3524] = {.count = 1, .reusable = false}, SHIFT(1574), - [3526] = {.count = 1, .reusable = true}, SHIFT(1574), - [3528] = {.count = 1, .reusable = true}, SHIFT(1573), - [3530] = {.count = 1, .reusable = true}, SHIFT(1575), - [3532] = {.count = 1, .reusable = true}, SHIFT(1576), - [3534] = {.count = 1, .reusable = false}, SHIFT(1577), - [3536] = {.count = 1, .reusable = true}, SHIFT(1577), - [3538] = {.count = 1, .reusable = true}, SHIFT(1578), - [3540] = {.count = 1, .reusable = true}, SHIFT(1579), - [3542] = {.count = 1, .reusable = false}, SHIFT(1580), - [3544] = {.count = 1, .reusable = true}, SHIFT(1580), - [3546] = {.count = 1, .reusable = false}, SHIFT(1581), - [3548] = {.count = 1, .reusable = true}, SHIFT(1581), - [3550] = {.count = 1, .reusable = false}, SHIFT(1583), - [3552] = {.count = 1, .reusable = true}, SHIFT(1583), - [3554] = {.count = 1, .reusable = false}, SHIFT(1584), - [3556] = {.count = 1, .reusable = true}, SHIFT(1584), - [3558] = {.count = 1, .reusable = true}, SHIFT(1586), - [3560] = {.count = 1, .reusable = false}, SHIFT(1587), - [3562] = {.count = 1, .reusable = true}, SHIFT(1587), - [3564] = {.count = 1, .reusable = false}, SHIFT(1588), - [3566] = {.count = 1, .reusable = true}, SHIFT(1588), - [3568] = {.count = 1, .reusable = true}, SHIFT(1590), - [3570] = {.count = 1, .reusable = true}, SHIFT(1591), - [3572] = {.count = 1, .reusable = false}, SHIFT(1592), - [3574] = {.count = 1, .reusable = true}, SHIFT(1593), - [3576] = {.count = 1, .reusable = true}, SHIFT(1595), - [3578] = {.count = 1, .reusable = true}, SHIFT(1596), - [3580] = {.count = 1, .reusable = false}, SHIFT(1597), - [3582] = {.count = 1, .reusable = true}, SHIFT(1597), - [3584] = {.count = 1, .reusable = true}, SHIFT(1598), - [3586] = {.count = 1, .reusable = false}, SHIFT(1599), - [3588] = {.count = 1, .reusable = true}, SHIFT(1599), - [3590] = {.count = 1, .reusable = true}, SHIFT(1600), - [3592] = {.count = 1, .reusable = false}, SHIFT(1601), - [3594] = {.count = 1, .reusable = true}, SHIFT(1601), - [3596] = {.count = 1, .reusable = true}, SHIFT(1602), - [3598] = {.count = 1, .reusable = false}, SHIFT(1603), - [3600] = {.count = 1, .reusable = true}, SHIFT(1603), - [3602] = {.count = 1, .reusable = false}, SHIFT(1604), - [3604] = {.count = 1, .reusable = true}, SHIFT(1604), - [3606] = {.count = 1, .reusable = true}, SHIFT(1605), - [3608] = {.count = 1, .reusable = false}, SHIFT(1606), - [3610] = {.count = 1, .reusable = true}, SHIFT(1606), - [3612] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), - [3614] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), - [3616] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), - [3618] = {.count = 1, .reusable = true}, SHIFT(1609), - [3620] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), - [3622] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [3624] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [3626] = {.count = 1, .reusable = true}, SHIFT(1611), - [3628] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), - [3630] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(688), - [3633] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 2), - [3635] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 2), - [3637] = {.count = 1, .reusable = true}, SHIFT(1613), - [3639] = {.count = 1, .reusable = true}, SHIFT(1614), - [3641] = {.count = 1, .reusable = true}, SHIFT(1617), - [3643] = {.count = 1, .reusable = true}, SHIFT(1619), - [3645] = {.count = 1, .reusable = false}, SHIFT(1619), - [3647] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), - [3649] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), - [3651] = {.count = 1, .reusable = true}, SHIFT(1623), - [3653] = {.count = 1, .reusable = false}, SHIFT(1623), - [3655] = {.count = 1, .reusable = true}, SHIFT(1626), - [3657] = {.count = 1, .reusable = true}, SHIFT(1627), - [3659] = {.count = 1, .reusable = false}, SHIFT(1628), - [3661] = {.count = 1, .reusable = true}, SHIFT(1629), - [3663] = {.count = 1, .reusable = true}, SHIFT(1631), - [3665] = {.count = 1, .reusable = true}, SHIFT(1632), - [3667] = {.count = 1, .reusable = false}, SHIFT(1633), - [3669] = {.count = 1, .reusable = true}, SHIFT(1633), - [3671] = {.count = 1, .reusable = true}, SHIFT(1634), - [3673] = {.count = 1, .reusable = false}, SHIFT(1635), - [3675] = {.count = 1, .reusable = true}, SHIFT(1635), - [3677] = {.count = 1, .reusable = true}, SHIFT(1636), - [3679] = {.count = 1, .reusable = false}, SHIFT(1637), - [3681] = {.count = 1, .reusable = true}, SHIFT(1637), - [3683] = {.count = 1, .reusable = true}, SHIFT(1638), - [3685] = {.count = 1, .reusable = false}, SHIFT(1639), - [3687] = {.count = 1, .reusable = true}, SHIFT(1639), - [3689] = {.count = 1, .reusable = false}, SHIFT(1640), - [3691] = {.count = 1, .reusable = true}, SHIFT(1640), - [3693] = {.count = 1, .reusable = true}, SHIFT(1641), - [3695] = {.count = 1, .reusable = false}, SHIFT(1642), - [3697] = {.count = 1, .reusable = true}, SHIFT(1642), - [3699] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), - [3701] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), - [3703] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 5), - [3705] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 5), - [3707] = {.count = 1, .reusable = true}, SHIFT(1645), - [3709] = {.count = 1, .reusable = true}, SHIFT(1646), - [3711] = {.count = 1, .reusable = true}, SHIFT(1647), - [3713] = {.count = 1, .reusable = true}, SHIFT(1648), - [3715] = {.count = 1, .reusable = false}, SHIFT(1649), - [3717] = {.count = 1, .reusable = true}, SHIFT(1650), - [3719] = {.count = 1, .reusable = true}, SHIFT(1652), - [3721] = {.count = 1, .reusable = true}, SHIFT(1653), - [3723] = {.count = 1, .reusable = false}, SHIFT(1654), - [3725] = {.count = 1, .reusable = true}, SHIFT(1654), - [3727] = {.count = 1, .reusable = true}, SHIFT(1655), - [3729] = {.count = 1, .reusable = false}, SHIFT(1656), - [3731] = {.count = 1, .reusable = true}, SHIFT(1656), - [3733] = {.count = 1, .reusable = true}, SHIFT(1657), - [3735] = {.count = 1, .reusable = false}, SHIFT(1658), - [3737] = {.count = 1, .reusable = true}, SHIFT(1658), - [3739] = {.count = 1, .reusable = true}, SHIFT(1659), - [3741] = {.count = 1, .reusable = false}, SHIFT(1660), - [3743] = {.count = 1, .reusable = true}, SHIFT(1660), - [3745] = {.count = 1, .reusable = false}, SHIFT(1661), - [3747] = {.count = 1, .reusable = true}, SHIFT(1661), - [3749] = {.count = 1, .reusable = true}, SHIFT(1662), - [3751] = {.count = 1, .reusable = false}, SHIFT(1663), - [3753] = {.count = 1, .reusable = true}, SHIFT(1663), - [3755] = {.count = 1, .reusable = true}, SHIFT(1664), - [3757] = {.count = 1, .reusable = true}, SHIFT(1665), - [3759] = {.count = 1, .reusable = true}, SHIFT(1666), - [3761] = {.count = 1, .reusable = false}, SHIFT(1667), - [3763] = {.count = 1, .reusable = true}, SHIFT(1668), - [3765] = {.count = 1, .reusable = true}, SHIFT(1670), - [3767] = {.count = 1, .reusable = true}, SHIFT(1671), - [3769] = {.count = 1, .reusable = false}, SHIFT(1672), - [3771] = {.count = 1, .reusable = true}, SHIFT(1672), - [3773] = {.count = 1, .reusable = true}, SHIFT(1673), - [3775] = {.count = 1, .reusable = false}, SHIFT(1674), - [3777] = {.count = 1, .reusable = true}, SHIFT(1674), - [3779] = {.count = 1, .reusable = true}, SHIFT(1675), - [3781] = {.count = 1, .reusable = false}, SHIFT(1676), - [3783] = {.count = 1, .reusable = true}, SHIFT(1676), - [3785] = {.count = 1, .reusable = true}, SHIFT(1677), - [3787] = {.count = 1, .reusable = false}, SHIFT(1678), - [3789] = {.count = 1, .reusable = true}, SHIFT(1678), - [3791] = {.count = 1, .reusable = false}, SHIFT(1679), - [3793] = {.count = 1, .reusable = true}, SHIFT(1679), - [3795] = {.count = 1, .reusable = true}, SHIFT(1680), - [3797] = {.count = 1, .reusable = false}, SHIFT(1681), - [3799] = {.count = 1, .reusable = true}, SHIFT(1681), - [3801] = {.count = 1, .reusable = true}, SHIFT(1682), - [3803] = {.count = 1, .reusable = true}, SHIFT(1683), - [3805] = {.count = 1, .reusable = false}, SHIFT(1684), - [3807] = {.count = 1, .reusable = true}, SHIFT(1685), - [3809] = {.count = 1, .reusable = true}, SHIFT(1687), - [3811] = {.count = 1, .reusable = true}, SHIFT(1688), - [3813] = {.count = 1, .reusable = false}, SHIFT(1689), - [3815] = {.count = 1, .reusable = true}, SHIFT(1689), - [3817] = {.count = 1, .reusable = true}, SHIFT(1690), - [3819] = {.count = 1, .reusable = false}, SHIFT(1691), - [3821] = {.count = 1, .reusable = true}, SHIFT(1691), - [3823] = {.count = 1, .reusable = true}, SHIFT(1692), - [3825] = {.count = 1, .reusable = false}, SHIFT(1693), - [3827] = {.count = 1, .reusable = true}, SHIFT(1693), - [3829] = {.count = 1, .reusable = true}, SHIFT(1694), - [3831] = {.count = 1, .reusable = false}, SHIFT(1695), - [3833] = {.count = 1, .reusable = true}, SHIFT(1695), - [3835] = {.count = 1, .reusable = false}, SHIFT(1696), - [3837] = {.count = 1, .reusable = true}, SHIFT(1696), - [3839] = {.count = 1, .reusable = true}, SHIFT(1697), - [3841] = {.count = 1, .reusable = false}, SHIFT(1698), - [3843] = {.count = 1, .reusable = true}, SHIFT(1698), - [3845] = {.count = 1, .reusable = true}, SHIFT(1699), - [3847] = {.count = 1, .reusable = true}, SHIFT(1700), - [3849] = {.count = 1, .reusable = false}, SHIFT(1701), - [3851] = {.count = 1, .reusable = true}, SHIFT(1702), - [3853] = {.count = 1, .reusable = true}, SHIFT(1704), - [3855] = {.count = 1, .reusable = true}, SHIFT(1705), - [3857] = {.count = 1, .reusable = false}, SHIFT(1706), - [3859] = {.count = 1, .reusable = true}, SHIFT(1706), - [3861] = {.count = 1, .reusable = true}, SHIFT(1707), - [3863] = {.count = 1, .reusable = false}, SHIFT(1708), - [3865] = {.count = 1, .reusable = true}, SHIFT(1708), - [3867] = {.count = 1, .reusable = true}, SHIFT(1709), - [3869] = {.count = 1, .reusable = false}, SHIFT(1710), - [3871] = {.count = 1, .reusable = true}, SHIFT(1710), - [3873] = {.count = 1, .reusable = true}, SHIFT(1711), - [3875] = {.count = 1, .reusable = false}, SHIFT(1712), - [3877] = {.count = 1, .reusable = true}, SHIFT(1712), - [3879] = {.count = 1, .reusable = false}, SHIFT(1713), - [3881] = {.count = 1, .reusable = true}, SHIFT(1713), - [3883] = {.count = 1, .reusable = true}, SHIFT(1714), - [3885] = {.count = 1, .reusable = false}, SHIFT(1715), - [3887] = {.count = 1, .reusable = true}, SHIFT(1715), - [3889] = {.count = 1, .reusable = true}, SHIFT(1716), - [3891] = {.count = 1, .reusable = true}, SHIFT(1717), - [3893] = {.count = 1, .reusable = false}, SHIFT(1718), - [3895] = {.count = 1, .reusable = true}, SHIFT(1719), - [3897] = {.count = 1, .reusable = true}, SHIFT(1721), - [3899] = {.count = 1, .reusable = true}, SHIFT(1722), - [3901] = {.count = 1, .reusable = false}, SHIFT(1723), - [3903] = {.count = 1, .reusable = true}, SHIFT(1723), - [3905] = {.count = 1, .reusable = true}, SHIFT(1724), - [3907] = {.count = 1, .reusable = false}, SHIFT(1725), - [3909] = {.count = 1, .reusable = true}, SHIFT(1725), - [3911] = {.count = 1, .reusable = true}, SHIFT(1726), - [3913] = {.count = 1, .reusable = false}, SHIFT(1727), - [3915] = {.count = 1, .reusable = true}, SHIFT(1727), - [3917] = {.count = 1, .reusable = true}, SHIFT(1728), - [3919] = {.count = 1, .reusable = false}, SHIFT(1729), - [3921] = {.count = 1, .reusable = true}, SHIFT(1729), - [3923] = {.count = 1, .reusable = false}, SHIFT(1730), - [3925] = {.count = 1, .reusable = true}, SHIFT(1730), - [3927] = {.count = 1, .reusable = true}, SHIFT(1731), - [3929] = {.count = 1, .reusable = true}, SHIFT(1732), - [3931] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 4), - [3933] = {.count = 1, .reusable = true}, SHIFT(1733), - [3935] = {.count = 1, .reusable = true}, SHIFT(1734), - [3937] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), - [3939] = {.count = 1, .reusable = true}, SHIFT(1735), - [3941] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 6), - [3943] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 6), - [3945] = {.count = 1, .reusable = false}, SHIFT(1737), - [3947] = {.count = 1, .reusable = false}, SHIFT(1738), - [3949] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), - [3951] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), - [3953] = {.count = 1, .reusable = true}, SHIFT(1739), - [3955] = {.count = 1, .reusable = true}, SHIFT(1740), - [3957] = {.count = 1, .reusable = true}, SHIFT(1741), - [3959] = {.count = 1, .reusable = false}, SHIFT(1742), - [3961] = {.count = 1, .reusable = true}, SHIFT(1742), - [3963] = {.count = 1, .reusable = true}, SHIFT(1743), - [3965] = {.count = 1, .reusable = false}, SHIFT(1745), - [3967] = {.count = 1, .reusable = true}, SHIFT(1745), - [3969] = {.count = 1, .reusable = true}, SHIFT(1744), - [3971] = {.count = 1, .reusable = true}, SHIFT(1746), - [3973] = {.count = 1, .reusable = false}, SHIFT(1748), - [3975] = {.count = 1, .reusable = true}, SHIFT(1748), + [3153] = {.count = 1, .reusable = true}, SHIFT(1434), + [3155] = {.count = 1, .reusable = true}, SHIFT(1435), + [3157] = {.count = 1, .reusable = true}, SHIFT(1436), + [3159] = {.count = 1, .reusable = true}, SHIFT(1437), + [3161] = {.count = 1, .reusable = true}, SHIFT(1438), + [3163] = {.count = 1, .reusable = false}, SHIFT(1439), + [3165] = {.count = 1, .reusable = false}, SHIFT(1434), + [3167] = {.count = 1, .reusable = true}, SHIFT(1440), + [3169] = {.count = 1, .reusable = false}, SHIFT(1442), + [3171] = {.count = 1, .reusable = false}, SHIFT(1443), + [3173] = {.count = 1, .reusable = true}, SHIFT(1445), + [3175] = {.count = 1, .reusable = true}, SHIFT(1446), + [3177] = {.count = 1, .reusable = false}, SHIFT(1447), + [3179] = {.count = 1, .reusable = true}, SHIFT(1447), + [3181] = {.count = 1, .reusable = true}, SHIFT(1448), + [3183] = {.count = 1, .reusable = true}, SHIFT(1449), + [3185] = {.count = 1, .reusable = true}, SHIFT(1450), + [3187] = {.count = 1, .reusable = false}, SHIFT(1451), + [3189] = {.count = 1, .reusable = true}, SHIFT(1451), + [3191] = {.count = 1, .reusable = true}, SHIFT(1455), + [3193] = {.count = 1, .reusable = true}, SHIFT(1456), + [3195] = {.count = 1, .reusable = false}, SHIFT(1457), + [3197] = {.count = 1, .reusable = false}, SHIFT(1458), + [3199] = {.count = 1, .reusable = true}, SHIFT(1457), + [3201] = {.count = 1, .reusable = true}, SHIFT(1458), + [3203] = {.count = 1, .reusable = true}, SHIFT(1459), + [3205] = {.count = 1, .reusable = false}, SHIFT(1460), + [3207] = {.count = 1, .reusable = true}, SHIFT(1460), + [3209] = {.count = 1, .reusable = true}, SHIFT(1461), + [3211] = {.count = 1, .reusable = false}, SHIFT(1464), + [3213] = {.count = 1, .reusable = true}, SHIFT(1465), + [3215] = {.count = 1, .reusable = true}, SHIFT(1466), + [3217] = {.count = 1, .reusable = false}, SHIFT(1466), + [3219] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 1), + [3221] = {.count = 1, .reusable = true}, SHIFT(837), + [3223] = {.count = 1, .reusable = true}, SHIFT(1471), + [3225] = {.count = 1, .reusable = true}, SHIFT(1472), + [3227] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(354), + [3230] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(358), + [3233] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(358), + [3236] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(359), + [3239] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(359), + [3242] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(360), + [3245] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(362), + [3248] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(363), + [3251] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(67), + [3254] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(68), + [3257] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(364), + [3260] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(70), + [3263] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(71), + [3266] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(72), + [3269] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(73), + [3272] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(364), + [3275] = {.count = 1, .reusable = true}, SHIFT(1475), + [3277] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), + [3279] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), + [3281] = {.count = 1, .reusable = true}, SHIFT(1477), + [3283] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), + [3285] = {.count = 1, .reusable = false}, SHIFT(1478), + [3287] = {.count = 1, .reusable = false}, SHIFT(1479), + [3289] = {.count = 1, .reusable = false}, SHIFT(1480), + [3291] = {.count = 1, .reusable = false}, SHIFT(1481), + [3293] = {.count = 1, .reusable = true}, SHIFT(1482), + [3295] = {.count = 1, .reusable = false}, SHIFT(1483), + [3297] = {.count = 1, .reusable = true}, SHIFT(1484), + [3299] = {.count = 1, .reusable = true}, SHIFT(1485), + [3301] = {.count = 1, .reusable = true}, SHIFT(1486), + [3303] = {.count = 1, .reusable = true}, SHIFT(1487), + [3305] = {.count = 1, .reusable = true}, SHIFT(1488), + [3307] = {.count = 1, .reusable = false}, SHIFT(1489), + [3309] = {.count = 1, .reusable = true}, SHIFT(1498), + [3311] = {.count = 1, .reusable = true}, SHIFT(1499), + [3313] = {.count = 1, .reusable = true}, SHIFT(1500), + [3315] = {.count = 1, .reusable = false}, SHIFT(1501), + [3317] = {.count = 1, .reusable = true}, SHIFT(1502), + [3319] = {.count = 1, .reusable = true}, SHIFT(1503), + [3321] = {.count = 1, .reusable = true}, SHIFT(1504), + [3323] = {.count = 1, .reusable = true}, SHIFT(1505), + [3325] = {.count = 1, .reusable = true}, SHIFT(1506), + [3327] = {.count = 1, .reusable = false}, SHIFT(1508), + [3329] = {.count = 1, .reusable = false}, SHIFT(1502), + [3331] = {.count = 1, .reusable = true}, SHIFT(1509), + [3333] = {.count = 1, .reusable = true}, SHIFT(1510), + [3335] = {.count = 1, .reusable = false}, SHIFT(1511), + [3337] = {.count = 1, .reusable = true}, SHIFT(1512), + [3339] = {.count = 1, .reusable = true}, SHIFT(1513), + [3341] = {.count = 1, .reusable = true}, SHIFT(1514), + [3343] = {.count = 1, .reusable = true}, SHIFT(1515), + [3345] = {.count = 1, .reusable = true}, SHIFT(1516), + [3347] = {.count = 1, .reusable = false}, SHIFT(1517), + [3349] = {.count = 1, .reusable = false}, SHIFT(1512), + [3351] = {.count = 1, .reusable = true}, SHIFT(1518), + [3353] = {.count = 1, .reusable = false}, SHIFT(1520), + [3355] = {.count = 1, .reusable = false}, SHIFT(1521), + [3357] = {.count = 1, .reusable = true}, SHIFT(1523), + [3359] = {.count = 1, .reusable = true}, SHIFT(1524), + [3361] = {.count = 1, .reusable = false}, SHIFT(1525), + [3363] = {.count = 1, .reusable = true}, SHIFT(1525), + [3365] = {.count = 1, .reusable = true}, SHIFT(1526), + [3367] = {.count = 1, .reusable = true}, SHIFT(1527), + [3369] = {.count = 1, .reusable = true}, SHIFT(1528), + [3371] = {.count = 1, .reusable = false}, SHIFT(1529), + [3373] = {.count = 1, .reusable = true}, SHIFT(1529), + [3375] = {.count = 1, .reusable = true}, SHIFT(1533), + [3377] = {.count = 1, .reusable = true}, SHIFT(874), + [3379] = {.count = 1, .reusable = true}, SHIFT(875), + [3381] = {.count = 1, .reusable = true}, SHIFT(1536), + [3383] = {.count = 1, .reusable = false}, SHIFT(1537), + [3385] = {.count = 1, .reusable = false}, SHIFT(1538), + [3387] = {.count = 1, .reusable = true}, SHIFT(1537), + [3389] = {.count = 1, .reusable = true}, SHIFT(1538), + [3391] = {.count = 1, .reusable = true}, SHIFT(1539), + [3393] = {.count = 1, .reusable = false}, SHIFT(1540), + [3395] = {.count = 1, .reusable = true}, SHIFT(1540), + [3397] = {.count = 1, .reusable = true}, SHIFT(1541), + [3399] = {.count = 1, .reusable = false}, SHIFT(1544), + [3401] = {.count = 1, .reusable = true}, SHIFT(1545), + [3403] = {.count = 1, .reusable = true}, SHIFT(1546), + [3405] = {.count = 1, .reusable = false}, SHIFT(1546), + [3407] = {.count = 1, .reusable = true}, SHIFT(879), + [3409] = {.count = 1, .reusable = false}, SHIFT(1552), + [3411] = {.count = 1, .reusable = true}, SHIFT(1553), + [3413] = {.count = 1, .reusable = true}, SHIFT(1554), + [3415] = {.count = 1, .reusable = false}, SHIFT(1554), + [3417] = {.count = 1, .reusable = false}, SHIFT(1558), + [3419] = {.count = 1, .reusable = true}, SHIFT(1558), + [3421] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(368), + [3424] = {.count = 1, .reusable = false}, SHIFT(1559), + [3426] = {.count = 1, .reusable = false}, SHIFT(1560), + [3428] = {.count = 1, .reusable = false}, SHIFT(1563), + [3430] = {.count = 1, .reusable = true}, SHIFT(1563), + [3432] = {.count = 1, .reusable = true}, SHIFT(1564), + [3434] = {.count = 1, .reusable = false}, SHIFT(1565), + [3436] = {.count = 1, .reusable = true}, SHIFT(1566), + [3438] = {.count = 1, .reusable = true}, SHIFT(1568), + [3440] = {.count = 1, .reusable = true}, SHIFT(1569), + [3442] = {.count = 1, .reusable = false}, SHIFT(1571), + [3444] = {.count = 1, .reusable = true}, SHIFT(1571), + [3446] = {.count = 1, .reusable = true}, SHIFT(1570), + [3448] = {.count = 1, .reusable = false}, SHIFT(1573), + [3450] = {.count = 1, .reusable = true}, SHIFT(1573), + [3452] = {.count = 1, .reusable = true}, SHIFT(1572), + [3454] = {.count = 1, .reusable = true}, SHIFT(1574), + [3456] = {.count = 1, .reusable = true}, SHIFT(1575), + [3458] = {.count = 1, .reusable = false}, SHIFT(1576), + [3460] = {.count = 1, .reusable = true}, SHIFT(1576), + [3462] = {.count = 1, .reusable = true}, SHIFT(1577), + [3464] = {.count = 1, .reusable = true}, SHIFT(1580), + [3466] = {.count = 1, .reusable = true}, SHIFT(1581), + [3468] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(390), + [3471] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(391), + [3474] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(392), + [3477] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(923), + [3480] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(392), + [3483] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(395), + [3486] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(396), + [3489] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(925), + [3492] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(396), + [3495] = {.count = 1, .reusable = true}, SHIFT(1584), + [3497] = {.count = 1, .reusable = true}, SHIFT(1585), + [3499] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(400), + [3502] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(403), + [3505] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(403), + [3508] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(404), + [3511] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(406), + [3514] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(407), + [3517] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(408), + [3520] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(408), + [3523] = {.count = 1, .reusable = true}, SHIFT(1587), + [3525] = {.count = 1, .reusable = true}, SHIFT(1589), + [3527] = {.count = 1, .reusable = false}, SHIFT(1591), + [3529] = {.count = 1, .reusable = false}, SHIFT(1592), + [3531] = {.count = 1, .reusable = true}, SHIFT(1594), + [3533] = {.count = 1, .reusable = true}, SHIFT(1595), + [3535] = {.count = 1, .reusable = false}, SHIFT(1596), + [3537] = {.count = 1, .reusable = true}, SHIFT(1596), + [3539] = {.count = 1, .reusable = true}, SHIFT(1597), + [3541] = {.count = 1, .reusable = true}, SHIFT(1598), + [3543] = {.count = 1, .reusable = true}, SHIFT(1599), + [3545] = {.count = 1, .reusable = false}, SHIFT(1600), + [3547] = {.count = 1, .reusable = true}, SHIFT(1600), + [3549] = {.count = 1, .reusable = false}, SHIFT(1604), + [3551] = {.count = 1, .reusable = true}, SHIFT(1604), + [3553] = {.count = 1, .reusable = false}, SHIFT(1606), + [3555] = {.count = 1, .reusable = true}, SHIFT(1606), + [3557] = {.count = 1, .reusable = false}, SHIFT(1609), + [3559] = {.count = 1, .reusable = false}, SHIFT(1611), + [3561] = {.count = 1, .reusable = false}, SHIFT(1615), + [3563] = {.count = 1, .reusable = true}, SHIFT(1615), + [3565] = {.count = 1, .reusable = true}, SHIFT(1616), + [3567] = {.count = 1, .reusable = false}, SHIFT(1617), + [3569] = {.count = 1, .reusable = true}, SHIFT(1617), + [3571] = {.count = 1, .reusable = true}, SHIFT(1618), + [3573] = {.count = 1, .reusable = true}, SHIFT(1619), + [3575] = {.count = 1, .reusable = true}, SHIFT(1620), + [3577] = {.count = 1, .reusable = true}, SHIFT(1621), + [3579] = {.count = 1, .reusable = true}, SHIFT(1622), + [3581] = {.count = 1, .reusable = true}, SHIFT(1623), + [3583] = {.count = 1, .reusable = true}, SHIFT(1624), + [3585] = {.count = 1, .reusable = false}, SHIFT(1626), + [3587] = {.count = 1, .reusable = false}, SHIFT(1627), + [3589] = {.count = 1, .reusable = true}, SHIFT(1628), + [3591] = {.count = 1, .reusable = true}, SHIFT(1629), + [3593] = {.count = 1, .reusable = true}, SHIFT(1630), + [3595] = {.count = 1, .reusable = false}, SHIFT(1631), + [3597] = {.count = 1, .reusable = true}, SHIFT(1631), + [3599] = {.count = 1, .reusable = true}, SHIFT(1632), + [3601] = {.count = 1, .reusable = false}, SHIFT(1634), + [3603] = {.count = 1, .reusable = true}, SHIFT(1634), + [3605] = {.count = 1, .reusable = true}, SHIFT(1633), + [3607] = {.count = 1, .reusable = true}, SHIFT(1635), + [3609] = {.count = 1, .reusable = false}, SHIFT(1637), + [3611] = {.count = 1, .reusable = true}, SHIFT(1637), + [3613] = {.count = 1, .reusable = true}, SHIFT(1636), + [3615] = {.count = 1, .reusable = true}, SHIFT(1638), + [3617] = {.count = 1, .reusable = true}, SHIFT(1639), + [3619] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(429), + [3622] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(430), + [3625] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(431), + [3628] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(432), + [3631] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(433), + [3634] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(434), + [3637] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(435), + [3640] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(436), + [3643] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(437), + [3646] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(983), + [3649] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(433), + [3652] = {.count = 1, .reusable = true}, SHIFT(1640), + [3654] = {.count = 1, .reusable = false}, SHIFT(1642), + [3656] = {.count = 1, .reusable = false}, SHIFT(1643), + [3658] = {.count = 1, .reusable = true}, SHIFT(1644), + [3660] = {.count = 1, .reusable = true}, SHIFT(1645), + [3662] = {.count = 1, .reusable = true}, SHIFT(1646), + [3664] = {.count = 1, .reusable = false}, SHIFT(1647), + [3666] = {.count = 1, .reusable = true}, SHIFT(1647), + [3668] = {.count = 1, .reusable = true}, SHIFT(1648), + [3670] = {.count = 1, .reusable = false}, SHIFT(1650), + [3672] = {.count = 1, .reusable = true}, SHIFT(1650), + [3674] = {.count = 1, .reusable = true}, SHIFT(1649), + [3676] = {.count = 1, .reusable = true}, SHIFT(1651), + [3678] = {.count = 1, .reusable = false}, SHIFT(1653), + [3680] = {.count = 1, .reusable = true}, SHIFT(1653), + [3682] = {.count = 1, .reusable = true}, SHIFT(1652), + [3684] = {.count = 1, .reusable = true}, SHIFT(1654), + [3686] = {.count = 1, .reusable = true}, SHIFT(1655), + [3688] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(440), + [3691] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(441), + [3694] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(442), + [3697] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(443), + [3700] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(444), + [3703] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(445), + [3706] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(446), + [3709] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(447), + [3712] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(999), + [3715] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(443), + [3718] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(449), + [3721] = {.count = 1, .reusable = false}, SHIFT(1656), + [3723] = {.count = 1, .reusable = true}, SHIFT(1657), + [3725] = {.count = 1, .reusable = false}, SHIFT(1658), + [3727] = {.count = 1, .reusable = true}, SHIFT(1659), + [3729] = {.count = 1, .reusable = true}, SHIFT(1661), + [3731] = {.count = 1, .reusable = true}, SHIFT(1662), + [3733] = {.count = 1, .reusable = false}, SHIFT(1664), + [3735] = {.count = 1, .reusable = true}, SHIFT(1664), + [3737] = {.count = 1, .reusable = true}, SHIFT(1663), + [3739] = {.count = 1, .reusable = false}, SHIFT(1666), + [3741] = {.count = 1, .reusable = true}, SHIFT(1666), + [3743] = {.count = 1, .reusable = true}, SHIFT(1665), + [3745] = {.count = 1, .reusable = true}, SHIFT(1667), + [3747] = {.count = 1, .reusable = true}, SHIFT(1668), + [3749] = {.count = 1, .reusable = false}, SHIFT(1669), + [3751] = {.count = 1, .reusable = true}, SHIFT(1669), + [3753] = {.count = 1, .reusable = true}, SHIFT(1670), + [3755] = {.count = 1, .reusable = true}, SHIFT(1672), + [3757] = {.count = 1, .reusable = true}, SHIFT(1673), + [3759] = {.count = 1, .reusable = true}, SHIFT(1674), + [3761] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(468), + [3764] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(472), + [3767] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(472), + [3770] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(473), + [3773] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(473), + [3776] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(474), + [3779] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(477), + [3782] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(478), + [3785] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(123), + [3788] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(124), + [3791] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(479), + [3794] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(126), + [3797] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(127), + [3800] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(128), + [3803] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(129), + [3806] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(479), + [3809] = {.count = 1, .reusable = false}, SHIFT(1677), + [3811] = {.count = 1, .reusable = true}, SHIFT(1677), + [3813] = {.count = 1, .reusable = true}, SHIFT(1678), + [3815] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(487), + [3818] = {.count = 1, .reusable = false}, SHIFT(1680), + [3820] = {.count = 1, .reusable = true}, SHIFT(1681), + [3822] = {.count = 1, .reusable = false}, SHIFT(1682), + [3824] = {.count = 1, .reusable = true}, SHIFT(1683), + [3826] = {.count = 1, .reusable = true}, SHIFT(1685), + [3828] = {.count = 1, .reusable = true}, SHIFT(1686), + [3830] = {.count = 1, .reusable = false}, SHIFT(1688), + [3832] = {.count = 1, .reusable = true}, SHIFT(1688), + [3834] = {.count = 1, .reusable = true}, SHIFT(1687), + [3836] = {.count = 1, .reusable = false}, SHIFT(1690), + [3838] = {.count = 1, .reusable = true}, SHIFT(1690), + [3840] = {.count = 1, .reusable = true}, SHIFT(1689), + [3842] = {.count = 1, .reusable = true}, SHIFT(1691), + [3844] = {.count = 1, .reusable = true}, SHIFT(1692), + [3846] = {.count = 1, .reusable = false}, SHIFT(1693), + [3848] = {.count = 1, .reusable = true}, SHIFT(1693), + [3850] = {.count = 1, .reusable = true}, SHIFT(1694), + [3852] = {.count = 1, .reusable = true}, SHIFT(1695), + [3854] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(510), + [3857] = {.count = 1, .reusable = false}, SHIFT(1697), + [3859] = {.count = 1, .reusable = true}, SHIFT(1698), + [3861] = {.count = 1, .reusable = false}, SHIFT(1699), + [3863] = {.count = 1, .reusable = true}, SHIFT(1700), + [3865] = {.count = 1, .reusable = true}, SHIFT(1702), + [3867] = {.count = 1, .reusable = true}, SHIFT(1703), + [3869] = {.count = 1, .reusable = false}, SHIFT(1705), + [3871] = {.count = 1, .reusable = true}, SHIFT(1705), + [3873] = {.count = 1, .reusable = true}, SHIFT(1704), + [3875] = {.count = 1, .reusable = false}, SHIFT(1707), + [3877] = {.count = 1, .reusable = true}, SHIFT(1707), + [3879] = {.count = 1, .reusable = true}, SHIFT(1706), + [3881] = {.count = 1, .reusable = true}, SHIFT(1708), + [3883] = {.count = 1, .reusable = true}, SHIFT(1709), + [3885] = {.count = 1, .reusable = false}, SHIFT(1710), + [3887] = {.count = 1, .reusable = true}, SHIFT(1710), + [3889] = {.count = 1, .reusable = true}, SHIFT(1711), + [3891] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(526), + [3894] = {.count = 1, .reusable = false}, SHIFT(1712), + [3896] = {.count = 1, .reusable = true}, SHIFT(1713), + [3898] = {.count = 1, .reusable = false}, SHIFT(1714), + [3900] = {.count = 1, .reusable = true}, SHIFT(1715), + [3902] = {.count = 1, .reusable = true}, SHIFT(1717), + [3904] = {.count = 1, .reusable = true}, SHIFT(1718), + [3906] = {.count = 1, .reusable = false}, SHIFT(1720), + [3908] = {.count = 1, .reusable = true}, SHIFT(1720), + [3910] = {.count = 1, .reusable = true}, SHIFT(1719), + [3912] = {.count = 1, .reusable = false}, SHIFT(1722), + [3914] = {.count = 1, .reusable = true}, SHIFT(1722), + [3916] = {.count = 1, .reusable = true}, SHIFT(1721), + [3918] = {.count = 1, .reusable = true}, SHIFT(1723), + [3920] = {.count = 1, .reusable = true}, SHIFT(1724), + [3922] = {.count = 1, .reusable = false}, SHIFT(1725), + [3924] = {.count = 1, .reusable = true}, SHIFT(1725), + [3926] = {.count = 1, .reusable = true}, SHIFT(1726), + [3928] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(542), + [3931] = {.count = 1, .reusable = false}, SHIFT(1727), + [3933] = {.count = 1, .reusable = true}, SHIFT(1728), + [3935] = {.count = 1, .reusable = false}, SHIFT(1729), + [3937] = {.count = 1, .reusable = true}, SHIFT(1730), + [3939] = {.count = 1, .reusable = true}, SHIFT(1732), + [3941] = {.count = 1, .reusable = true}, SHIFT(1733), + [3943] = {.count = 1, .reusable = false}, SHIFT(1735), + [3945] = {.count = 1, .reusable = true}, SHIFT(1735), + [3947] = {.count = 1, .reusable = true}, SHIFT(1734), + [3949] = {.count = 1, .reusable = false}, SHIFT(1737), + [3951] = {.count = 1, .reusable = true}, SHIFT(1737), + [3953] = {.count = 1, .reusable = true}, SHIFT(1736), + [3955] = {.count = 1, .reusable = true}, SHIFT(1738), + [3957] = {.count = 1, .reusable = true}, SHIFT(1739), + [3959] = {.count = 1, .reusable = false}, SHIFT(1740), + [3961] = {.count = 1, .reusable = true}, SHIFT(1740), + [3963] = {.count = 1, .reusable = true}, SHIFT(1741), + [3965] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), + [3967] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 3), + [3969] = {.count = 1, .reusable = true}, SHIFT(1742), + [3971] = {.count = 1, .reusable = false}, SHIFT(1743), + [3973] = {.count = 1, .reusable = true}, SHIFT(1744), + [3975] = {.count = 1, .reusable = true}, SHIFT(1746), [3977] = {.count = 1, .reusable = true}, SHIFT(1747), [3979] = {.count = 1, .reusable = false}, SHIFT(1749), - [3981] = {.count = 1, .reusable = true}, SHIFT(1750), - [3983] = {.count = 1, .reusable = true}, SHIFT(1749), - [3985] = {.count = 1, .reusable = false}, SHIFT(1754), - [3987] = {.count = 1, .reusable = true}, SHIFT(1754), - [3989] = {.count = 1, .reusable = false}, SHIFT(1758), - [3991] = {.count = 1, .reusable = true}, SHIFT(1759), - [3993] = {.count = 1, .reusable = true}, SHIFT(1758), - [3995] = {.count = 1, .reusable = true}, SHIFT(1763), - [3997] = {.count = 1, .reusable = true}, SHIFT(1764), - [3999] = {.count = 1, .reusable = true}, SHIFT(1765), - [4001] = {.count = 1, .reusable = false}, SHIFT(1766), - [4003] = {.count = 1, .reusable = true}, SHIFT(1766), - [4005] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 5), - [4007] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 5), - [4009] = {.count = 1, .reusable = false}, SHIFT(1767), - [4011] = {.count = 1, .reusable = true}, SHIFT(1767), - [4013] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(918), - [4016] = {.count = 1, .reusable = false}, SHIFT(1768), - [4018] = {.count = 1, .reusable = true}, SHIFT(1769), - [4020] = {.count = 1, .reusable = false}, SHIFT(1770), - [4022] = {.count = 1, .reusable = true}, SHIFT(1771), - [4024] = {.count = 1, .reusable = true}, SHIFT(1773), - [4026] = {.count = 1, .reusable = true}, SHIFT(1774), - [4028] = {.count = 1, .reusable = false}, SHIFT(1776), - [4030] = {.count = 1, .reusable = true}, SHIFT(1776), - [4032] = {.count = 1, .reusable = true}, SHIFT(1775), - [4034] = {.count = 1, .reusable = false}, SHIFT(1778), - [4036] = {.count = 1, .reusable = true}, SHIFT(1778), - [4038] = {.count = 1, .reusable = true}, SHIFT(1777), - [4040] = {.count = 1, .reusable = true}, SHIFT(1779), - [4042] = {.count = 1, .reusable = true}, SHIFT(1780), - [4044] = {.count = 1, .reusable = false}, SHIFT(1781), - [4046] = {.count = 1, .reusable = true}, SHIFT(1781), - [4048] = {.count = 1, .reusable = true}, SHIFT(1782), - [4050] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 3), - [4052] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 3), - [4054] = {.count = 1, .reusable = true}, SHIFT(1783), - [4056] = {.count = 1, .reusable = true}, SHIFT(1784), - [4058] = {.count = 1, .reusable = false}, SHIFT(1785), - [4060] = {.count = 1, .reusable = true}, SHIFT(1785), - [4062] = {.count = 1, .reusable = false}, SHIFT(1786), - [4064] = {.count = 1, .reusable = true}, SHIFT(1786), - [4066] = {.count = 1, .reusable = false}, SHIFT(1788), - [4068] = {.count = 1, .reusable = true}, SHIFT(1788), - [4070] = {.count = 1, .reusable = false}, SHIFT(1789), - [4072] = {.count = 1, .reusable = true}, SHIFT(1789), - [4074] = {.count = 1, .reusable = true}, SHIFT(1791), - [4076] = {.count = 1, .reusable = false}, SHIFT(1792), - [4078] = {.count = 1, .reusable = true}, SHIFT(1792), - [4080] = {.count = 1, .reusable = false}, SHIFT(1793), - [4082] = {.count = 1, .reusable = true}, SHIFT(1793), - [4084] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 5), - [4086] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 5), - [4088] = {.count = 1, .reusable = true}, SHIFT(1795), - [4090] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 5), - [4092] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 5), - [4094] = {.count = 1, .reusable = true}, SHIFT(1797), - [4096] = {.count = 1, .reusable = true}, SHIFT(1798), - [4098] = {.count = 1, .reusable = false}, SHIFT(1799), - [4100] = {.count = 1, .reusable = true}, SHIFT(1800), - [4102] = {.count = 1, .reusable = true}, SHIFT(1802), - [4104] = {.count = 1, .reusable = true}, SHIFT(1803), - [4106] = {.count = 1, .reusable = false}, SHIFT(1805), - [4108] = {.count = 1, .reusable = true}, SHIFT(1805), - [4110] = {.count = 1, .reusable = true}, SHIFT(1804), - [4112] = {.count = 1, .reusable = false}, SHIFT(1807), - [4114] = {.count = 1, .reusable = true}, SHIFT(1807), - [4116] = {.count = 1, .reusable = true}, SHIFT(1806), - [4118] = {.count = 1, .reusable = true}, SHIFT(1808), - [4120] = {.count = 1, .reusable = true}, SHIFT(1809), - [4122] = {.count = 1, .reusable = false}, SHIFT(1810), - [4124] = {.count = 1, .reusable = true}, SHIFT(1810), - [4126] = {.count = 1, .reusable = true}, SHIFT(1811), - [4128] = {.count = 1, .reusable = true}, SHIFT(1812), - [4130] = {.count = 1, .reusable = false}, SHIFT(1813), - [4132] = {.count = 1, .reusable = true}, SHIFT(1813), - [4134] = {.count = 1, .reusable = false}, SHIFT(1814), - [4136] = {.count = 1, .reusable = true}, SHIFT(1814), - [4138] = {.count = 1, .reusable = false}, SHIFT(1816), - [4140] = {.count = 1, .reusable = true}, SHIFT(1816), - [4142] = {.count = 1, .reusable = false}, SHIFT(1817), - [4144] = {.count = 1, .reusable = true}, SHIFT(1817), - [4146] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 4), - [4148] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), - [4150] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(993), - [4153] = {.count = 1, .reusable = false}, SHIFT(1819), - [4155] = {.count = 1, .reusable = true}, SHIFT(1820), - [4157] = {.count = 1, .reusable = false}, SHIFT(1821), - [4159] = {.count = 1, .reusable = true}, SHIFT(1822), - [4161] = {.count = 1, .reusable = true}, SHIFT(1824), - [4163] = {.count = 1, .reusable = true}, SHIFT(1825), - [4165] = {.count = 1, .reusable = false}, SHIFT(1827), - [4167] = {.count = 1, .reusable = true}, SHIFT(1827), - [4169] = {.count = 1, .reusable = true}, SHIFT(1826), - [4171] = {.count = 1, .reusable = false}, SHIFT(1829), - [4173] = {.count = 1, .reusable = true}, SHIFT(1829), - [4175] = {.count = 1, .reusable = true}, SHIFT(1828), - [4177] = {.count = 1, .reusable = true}, SHIFT(1830), - [4179] = {.count = 1, .reusable = true}, SHIFT(1831), - [4181] = {.count = 1, .reusable = false}, SHIFT(1832), - [4183] = {.count = 1, .reusable = true}, SHIFT(1832), - [4185] = {.count = 1, .reusable = true}, SHIFT(1833), - [4187] = {.count = 1, .reusable = true}, SHIFT(1834), - [4189] = {.count = 1, .reusable = false}, SHIFT(1835), - [4191] = {.count = 1, .reusable = true}, SHIFT(1835), - [4193] = {.count = 1, .reusable = false}, SHIFT(1836), - [4195] = {.count = 1, .reusable = true}, SHIFT(1836), - [4197] = {.count = 1, .reusable = false}, SHIFT(1838), - [4199] = {.count = 1, .reusable = true}, SHIFT(1838), - [4201] = {.count = 1, .reusable = false}, SHIFT(1839), - [4203] = {.count = 1, .reusable = true}, SHIFT(1839), - [4205] = {.count = 1, .reusable = true}, SHIFT(1841), - [4207] = {.count = 1, .reusable = false}, SHIFT(1842), - [4209] = {.count = 1, .reusable = true}, SHIFT(1842), - [4211] = {.count = 1, .reusable = false}, SHIFT(1843), - [4213] = {.count = 1, .reusable = true}, SHIFT(1843), - [4215] = {.count = 1, .reusable = true}, SHIFT(1845), - [4217] = {.count = 1, .reusable = true}, SHIFT(1846), - [4219] = {.count = 1, .reusable = false}, SHIFT(1847), - [4221] = {.count = 1, .reusable = true}, SHIFT(1848), - [4223] = {.count = 1, .reusable = true}, SHIFT(1850), - [4225] = {.count = 1, .reusable = true}, SHIFT(1851), - [4227] = {.count = 1, .reusable = false}, SHIFT(1852), - [4229] = {.count = 1, .reusable = true}, SHIFT(1852), - [4231] = {.count = 1, .reusable = true}, SHIFT(1853), - [4233] = {.count = 1, .reusable = false}, SHIFT(1854), - [4235] = {.count = 1, .reusable = true}, SHIFT(1854), - [4237] = {.count = 1, .reusable = true}, SHIFT(1855), - [4239] = {.count = 1, .reusable = false}, SHIFT(1856), - [4241] = {.count = 1, .reusable = true}, SHIFT(1856), - [4243] = {.count = 1, .reusable = true}, SHIFT(1857), - [4245] = {.count = 1, .reusable = false}, SHIFT(1858), - [4247] = {.count = 1, .reusable = true}, SHIFT(1858), - [4249] = {.count = 1, .reusable = false}, SHIFT(1859), - [4251] = {.count = 1, .reusable = true}, SHIFT(1859), - [4253] = {.count = 1, .reusable = true}, SHIFT(1860), - [4255] = {.count = 1, .reusable = false}, SHIFT(1861), - [4257] = {.count = 1, .reusable = true}, SHIFT(1861), - [4259] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 6), - [4261] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 6), - [4263] = {.count = 1, .reusable = true}, SHIFT(1863), - [4265] = {.count = 1, .reusable = true}, SHIFT(1864), - [4267] = {.count = 1, .reusable = true}, SHIFT(1865), - [4269] = {.count = 1, .reusable = true}, SHIFT(1866), - [4271] = {.count = 1, .reusable = false}, SHIFT(1867), - [4273] = {.count = 1, .reusable = true}, SHIFT(1868), - [4275] = {.count = 1, .reusable = true}, SHIFT(1870), - [4277] = {.count = 1, .reusable = true}, SHIFT(1871), - [4279] = {.count = 1, .reusable = false}, SHIFT(1872), - [4281] = {.count = 1, .reusable = true}, SHIFT(1872), - [4283] = {.count = 1, .reusable = true}, SHIFT(1873), - [4285] = {.count = 1, .reusable = false}, SHIFT(1874), - [4287] = {.count = 1, .reusable = true}, SHIFT(1874), - [4289] = {.count = 1, .reusable = true}, SHIFT(1875), - [4291] = {.count = 1, .reusable = false}, SHIFT(1876), - [4293] = {.count = 1, .reusable = true}, SHIFT(1876), - [4295] = {.count = 1, .reusable = true}, SHIFT(1877), - [4297] = {.count = 1, .reusable = false}, SHIFT(1878), - [4299] = {.count = 1, .reusable = true}, SHIFT(1878), - [4301] = {.count = 1, .reusable = false}, SHIFT(1879), - [4303] = {.count = 1, .reusable = true}, SHIFT(1879), - [4305] = {.count = 1, .reusable = true}, SHIFT(1880), - [4307] = {.count = 1, .reusable = false}, SHIFT(1881), - [4309] = {.count = 1, .reusable = true}, SHIFT(1881), - [4311] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1079), - [4314] = {.count = 1, .reusable = false}, SHIFT(1883), - [4316] = {.count = 1, .reusable = true}, SHIFT(1884), - [4318] = {.count = 1, .reusable = false}, SHIFT(1885), - [4320] = {.count = 1, .reusable = true}, SHIFT(1886), - [4322] = {.count = 1, .reusable = true}, SHIFT(1888), - [4324] = {.count = 1, .reusable = true}, SHIFT(1889), - [4326] = {.count = 1, .reusable = false}, SHIFT(1891), - [4328] = {.count = 1, .reusable = true}, SHIFT(1891), - [4330] = {.count = 1, .reusable = true}, SHIFT(1890), - [4332] = {.count = 1, .reusable = false}, SHIFT(1893), - [4334] = {.count = 1, .reusable = true}, SHIFT(1893), - [4336] = {.count = 1, .reusable = true}, SHIFT(1892), - [4338] = {.count = 1, .reusable = true}, SHIFT(1894), - [4340] = {.count = 1, .reusable = true}, SHIFT(1895), - [4342] = {.count = 1, .reusable = false}, SHIFT(1896), - [4344] = {.count = 1, .reusable = true}, SHIFT(1896), - [4346] = {.count = 1, .reusable = true}, SHIFT(1897), - [4348] = {.count = 1, .reusable = true}, SHIFT(1898), - [4350] = {.count = 1, .reusable = false}, SHIFT(1899), - [4352] = {.count = 1, .reusable = true}, SHIFT(1899), - [4354] = {.count = 1, .reusable = false}, SHIFT(1900), - [4356] = {.count = 1, .reusable = true}, SHIFT(1900), - [4358] = {.count = 1, .reusable = false}, SHIFT(1902), - [4360] = {.count = 1, .reusable = true}, SHIFT(1902), - [4362] = {.count = 1, .reusable = false}, SHIFT(1903), - [4364] = {.count = 1, .reusable = true}, SHIFT(1903), - [4366] = {.count = 1, .reusable = true}, SHIFT(1905), - [4368] = {.count = 1, .reusable = false}, SHIFT(1906), - [4370] = {.count = 1, .reusable = true}, SHIFT(1906), - [4372] = {.count = 1, .reusable = false}, SHIFT(1907), - [4374] = {.count = 1, .reusable = true}, SHIFT(1907), - [4376] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [4378] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [4380] = {.count = 1, .reusable = true}, SHIFT(1909), - [4382] = {.count = 1, .reusable = true}, SHIFT(1910), - [4384] = {.count = 1, .reusable = false}, SHIFT(1911), - [4386] = {.count = 1, .reusable = true}, SHIFT(1912), - [4388] = {.count = 1, .reusable = true}, SHIFT(1914), - [4390] = {.count = 1, .reusable = true}, SHIFT(1915), - [4392] = {.count = 1, .reusable = false}, SHIFT(1916), - [4394] = {.count = 1, .reusable = true}, SHIFT(1916), - [4396] = {.count = 1, .reusable = true}, SHIFT(1917), - [4398] = {.count = 1, .reusable = false}, SHIFT(1918), - [4400] = {.count = 1, .reusable = true}, SHIFT(1918), - [4402] = {.count = 1, .reusable = true}, SHIFT(1919), - [4404] = {.count = 1, .reusable = false}, SHIFT(1920), - [4406] = {.count = 1, .reusable = true}, SHIFT(1920), - [4408] = {.count = 1, .reusable = true}, SHIFT(1921), - [4410] = {.count = 1, .reusable = false}, SHIFT(1922), - [4412] = {.count = 1, .reusable = true}, SHIFT(1922), - [4414] = {.count = 1, .reusable = false}, SHIFT(1923), - [4416] = {.count = 1, .reusable = true}, SHIFT(1923), - [4418] = {.count = 1, .reusable = true}, SHIFT(1924), - [4420] = {.count = 1, .reusable = false}, SHIFT(1925), - [4422] = {.count = 1, .reusable = true}, SHIFT(1925), - [4424] = {.count = 1, .reusable = true}, SHIFT(1926), - [4426] = {.count = 1, .reusable = true}, SHIFT(1927), - [4428] = {.count = 1, .reusable = true}, SHIFT(1928), - [4430] = {.count = 1, .reusable = false}, SHIFT(1929), - [4432] = {.count = 1, .reusable = true}, SHIFT(1929), - [4434] = {.count = 1, .reusable = false}, SHIFT(1930), - [4436] = {.count = 1, .reusable = true}, SHIFT(1930), - [4438] = {.count = 1, .reusable = true}, SHIFT(1931), - [4440] = {.count = 1, .reusable = true}, SHIFT(1932), - [4442] = {.count = 1, .reusable = true}, SHIFT(1933), - [4444] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), - [4446] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), - [4448] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), - [4450] = {.count = 1, .reusable = true}, SHIFT(1935), - [4452] = {.count = 1, .reusable = true}, SHIFT(1936), - [4454] = {.count = 1, .reusable = true}, SHIFT(1937), - [4456] = {.count = 1, .reusable = true}, SHIFT(1939), - [4458] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), - [4460] = {.count = 1, .reusable = true}, SHIFT(1940), - [4462] = {.count = 1, .reusable = false}, SHIFT(1941), - [4464] = {.count = 1, .reusable = false}, SHIFT(1942), - [4466] = {.count = 1, .reusable = false}, SHIFT(1943), - [4468] = {.count = 1, .reusable = false}, SHIFT(1944), - [4470] = {.count = 1, .reusable = true}, SHIFT(1945), - [4472] = {.count = 1, .reusable = false}, SHIFT(1946), - [4474] = {.count = 1, .reusable = true}, SHIFT(1947), - [4476] = {.count = 1, .reusable = true}, SHIFT(1948), - [4478] = {.count = 1, .reusable = true}, SHIFT(1949), - [4480] = {.count = 1, .reusable = true}, SHIFT(1950), - [4482] = {.count = 1, .reusable = true}, SHIFT(1951), - [4484] = {.count = 1, .reusable = false}, SHIFT(1952), - [4486] = {.count = 1, .reusable = true}, SHIFT(1960), - [4488] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), - [4490] = {.count = 1, .reusable = true}, SHIFT(1963), - [4492] = {.count = 1, .reusable = true}, SHIFT(1967), - [4494] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 2), - [4496] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 2), - [4498] = {.count = 1, .reusable = true}, SHIFT(1968), - [4500] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1969), - [4503] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(223), - [4506] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(224), - [4509] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1970), - [4512] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(226), - [4515] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(227), - [4518] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(228), - [4521] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(229), - [4524] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), - [4526] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), - [4528] = {.count = 1, .reusable = true}, SHIFT(1973), - [4530] = {.count = 1, .reusable = true}, SHIFT(1975), - [4532] = {.count = 1, .reusable = true}, SHIFT(1976), - [4534] = {.count = 1, .reusable = true}, SHIFT(1977), - [4536] = {.count = 1, .reusable = false}, SHIFT(1978), - [4538] = {.count = 1, .reusable = true}, SHIFT(1978), - [4540] = {.count = 1, .reusable = false}, SHIFT(1979), - [4542] = {.count = 1, .reusable = true}, SHIFT(1979), - [4544] = {.count = 1, .reusable = true}, SHIFT(1980), - [4546] = {.count = 1, .reusable = true}, SHIFT(1981), - [4548] = {.count = 1, .reusable = true}, SHIFT(1982), - [4550] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 6), - [4552] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 6), - [4554] = {.count = 1, .reusable = true}, SHIFT(1983), - [4556] = {.count = 1, .reusable = true}, SHIFT(1984), - [4558] = {.count = 1, .reusable = true}, SHIFT(1985), - [4560] = {.count = 1, .reusable = false}, SHIFT(1986), - [4562] = {.count = 1, .reusable = true}, SHIFT(1986), - [4564] = {.count = 1, .reusable = false}, SHIFT(1987), - [4566] = {.count = 1, .reusable = true}, SHIFT(1987), - [4568] = {.count = 1, .reusable = true}, SHIFT(1988), - [4570] = {.count = 1, .reusable = true}, SHIFT(1989), - [4572] = {.count = 1, .reusable = true}, SHIFT(1990), - [4574] = {.count = 1, .reusable = true}, SHIFT(1991), - [4576] = {.count = 1, .reusable = true}, SHIFT(1992), - [4578] = {.count = 1, .reusable = true}, SHIFT(1993), - [4580] = {.count = 1, .reusable = false}, SHIFT(1994), - [4582] = {.count = 1, .reusable = true}, SHIFT(1994), - [4584] = {.count = 1, .reusable = false}, SHIFT(1995), - [4586] = {.count = 1, .reusable = true}, SHIFT(1995), - [4588] = {.count = 1, .reusable = true}, SHIFT(1996), - [4590] = {.count = 1, .reusable = true}, SHIFT(1997), - [4592] = {.count = 1, .reusable = true}, SHIFT(1998), - [4594] = {.count = 1, .reusable = true}, SHIFT(1999), - [4596] = {.count = 1, .reusable = true}, SHIFT(2000), - [4598] = {.count = 1, .reusable = true}, SHIFT(2001), - [4600] = {.count = 1, .reusable = false}, SHIFT(2002), - [4602] = {.count = 1, .reusable = true}, SHIFT(2002), - [4604] = {.count = 1, .reusable = false}, SHIFT(2003), - [4606] = {.count = 1, .reusable = true}, SHIFT(2003), - [4608] = {.count = 1, .reusable = true}, SHIFT(2004), - [4610] = {.count = 1, .reusable = true}, SHIFT(2005), - [4612] = {.count = 1, .reusable = true}, SHIFT(2006), - [4614] = {.count = 1, .reusable = true}, SHIFT(2007), - [4616] = {.count = 1, .reusable = true}, SHIFT(2008), - [4618] = {.count = 1, .reusable = true}, SHIFT(2009), - [4620] = {.count = 1, .reusable = false}, SHIFT(2010), - [4622] = {.count = 1, .reusable = true}, SHIFT(2010), - [4624] = {.count = 1, .reusable = false}, SHIFT(2011), - [4626] = {.count = 1, .reusable = true}, SHIFT(2011), - [4628] = {.count = 1, .reusable = true}, SHIFT(2012), - [4630] = {.count = 1, .reusable = true}, SHIFT(2013), - [4632] = {.count = 1, .reusable = true}, SHIFT(2014), - [4634] = {.count = 1, .reusable = true}, SHIFT(2015), - [4636] = {.count = 1, .reusable = true}, SHIFT(2016), - [4638] = {.count = 1, .reusable = true}, SHIFT(2017), - [4640] = {.count = 1, .reusable = false}, SHIFT(2018), - [4642] = {.count = 1, .reusable = true}, SHIFT(2018), - [4644] = {.count = 1, .reusable = false}, SHIFT(2019), - [4646] = {.count = 1, .reusable = true}, SHIFT(2019), - [4648] = {.count = 1, .reusable = true}, SHIFT(2020), - [4650] = {.count = 1, .reusable = true}, SHIFT(2021), - [4652] = {.count = 1, .reusable = true}, SHIFT(2022), - [4654] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 4), - [4656] = {.count = 1, .reusable = true}, SHIFT(2023), - [4658] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), - [4660] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1358), - [4663] = {.count = 1, .reusable = false}, SHIFT(2024), - [4665] = {.count = 1, .reusable = true}, SHIFT(2025), - [4667] = {.count = 1, .reusable = false}, SHIFT(2026), - [4669] = {.count = 1, .reusable = true}, SHIFT(2027), - [4671] = {.count = 1, .reusable = true}, SHIFT(2029), - [4673] = {.count = 1, .reusable = true}, SHIFT(2030), - [4675] = {.count = 1, .reusable = false}, SHIFT(2032), - [4677] = {.count = 1, .reusable = true}, SHIFT(2032), - [4679] = {.count = 1, .reusable = true}, SHIFT(2031), - [4681] = {.count = 1, .reusable = false}, SHIFT(2034), - [4683] = {.count = 1, .reusable = true}, SHIFT(2034), - [4685] = {.count = 1, .reusable = true}, SHIFT(2033), - [4687] = {.count = 1, .reusable = true}, SHIFT(2035), - [4689] = {.count = 1, .reusable = true}, SHIFT(2036), - [4691] = {.count = 1, .reusable = false}, SHIFT(2037), - [4693] = {.count = 1, .reusable = true}, SHIFT(2037), - [4695] = {.count = 1, .reusable = true}, SHIFT(2038), - [4697] = {.count = 1, .reusable = true}, SHIFT(2039), - [4699] = {.count = 1, .reusable = false}, SHIFT(2040), - [4701] = {.count = 1, .reusable = true}, SHIFT(2040), - [4703] = {.count = 1, .reusable = false}, SHIFT(2041), - [4705] = {.count = 1, .reusable = true}, SHIFT(2041), - [4707] = {.count = 1, .reusable = false}, SHIFT(2043), - [4709] = {.count = 1, .reusable = true}, SHIFT(2043), - [4711] = {.count = 1, .reusable = false}, SHIFT(2044), - [4713] = {.count = 1, .reusable = true}, SHIFT(2044), - [4715] = {.count = 1, .reusable = true}, SHIFT(2046), - [4717] = {.count = 1, .reusable = false}, SHIFT(2047), - [4719] = {.count = 1, .reusable = true}, SHIFT(2047), - [4721] = {.count = 1, .reusable = false}, SHIFT(2048), - [4723] = {.count = 1, .reusable = true}, SHIFT(2048), - [4725] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), - [4727] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), - [4729] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), - [4731] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), - [4733] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 5), - [4735] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 5), - [4737] = {.count = 1, .reusable = true}, SHIFT(2050), - [4739] = {.count = 1, .reusable = true}, SHIFT(2051), - [4741] = {.count = 1, .reusable = true}, SHIFT(2052), - [4743] = {.count = 1, .reusable = true}, SHIFT(2053), - [4745] = {.count = 1, .reusable = false}, SHIFT(2054), - [4747] = {.count = 1, .reusable = true}, SHIFT(2055), - [4749] = {.count = 1, .reusable = true}, SHIFT(2057), - [4751] = {.count = 1, .reusable = true}, SHIFT(2058), - [4753] = {.count = 1, .reusable = false}, SHIFT(2059), - [4755] = {.count = 1, .reusable = true}, SHIFT(2059), - [4757] = {.count = 1, .reusable = true}, SHIFT(2060), - [4759] = {.count = 1, .reusable = false}, SHIFT(2061), - [4761] = {.count = 1, .reusable = true}, SHIFT(2061), - [4763] = {.count = 1, .reusable = true}, SHIFT(2062), - [4765] = {.count = 1, .reusable = false}, SHIFT(2063), - [4767] = {.count = 1, .reusable = true}, SHIFT(2063), - [4769] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 3), - [4771] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 3), - [4773] = {.count = 1, .reusable = true}, SHIFT(2064), - [4775] = {.count = 1, .reusable = false}, SHIFT(2065), - [4777] = {.count = 1, .reusable = true}, SHIFT(2065), - [4779] = {.count = 1, .reusable = false}, SHIFT(2066), - [4781] = {.count = 1, .reusable = true}, SHIFT(2066), - [4783] = {.count = 1, .reusable = true}, SHIFT(2067), - [4785] = {.count = 1, .reusable = false}, SHIFT(2068), - [4787] = {.count = 1, .reusable = true}, SHIFT(2068), - [4789] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 6), - [4791] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 6), - [4793] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 6), - [4795] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 6), - [4797] = {.count = 1, .reusable = true}, SHIFT(2069), - [4799] = {.count = 1, .reusable = true}, SHIFT(2070), - [4801] = {.count = 1, .reusable = false}, SHIFT(2071), - [4803] = {.count = 1, .reusable = true}, SHIFT(2072), - [4805] = {.count = 1, .reusable = true}, SHIFT(2074), - [4807] = {.count = 1, .reusable = true}, SHIFT(2075), - [4809] = {.count = 1, .reusable = false}, SHIFT(2076), - [4811] = {.count = 1, .reusable = true}, SHIFT(2076), - [4813] = {.count = 1, .reusable = true}, SHIFT(2077), - [4815] = {.count = 1, .reusable = false}, SHIFT(2078), - [4817] = {.count = 1, .reusable = true}, SHIFT(2078), - [4819] = {.count = 1, .reusable = true}, SHIFT(2079), - [4821] = {.count = 1, .reusable = false}, SHIFT(2080), - [4823] = {.count = 1, .reusable = true}, SHIFT(2080), - [4825] = {.count = 1, .reusable = true}, SHIFT(2081), - [4827] = {.count = 1, .reusable = false}, SHIFT(2082), - [4829] = {.count = 1, .reusable = true}, SHIFT(2082), - [4831] = {.count = 1, .reusable = false}, SHIFT(2083), - [4833] = {.count = 1, .reusable = true}, SHIFT(2083), - [4835] = {.count = 1, .reusable = true}, SHIFT(2084), - [4837] = {.count = 1, .reusable = true}, SHIFT(2085), - [4839] = {.count = 1, .reusable = false}, SHIFT(2086), - [4841] = {.count = 1, .reusable = true}, SHIFT(2087), - [4843] = {.count = 1, .reusable = true}, SHIFT(2089), - [4845] = {.count = 1, .reusable = true}, SHIFT(2090), - [4847] = {.count = 1, .reusable = false}, SHIFT(2091), - [4849] = {.count = 1, .reusable = true}, SHIFT(2091), - [4851] = {.count = 1, .reusable = true}, SHIFT(2092), - [4853] = {.count = 1, .reusable = false}, SHIFT(2093), - [4855] = {.count = 1, .reusable = true}, SHIFT(2093), - [4857] = {.count = 1, .reusable = true}, SHIFT(2094), - [4859] = {.count = 1, .reusable = false}, SHIFT(2095), - [4861] = {.count = 1, .reusable = true}, SHIFT(2095), - [4863] = {.count = 1, .reusable = true}, SHIFT(2096), - [4865] = {.count = 1, .reusable = false}, SHIFT(2097), - [4867] = {.count = 1, .reusable = true}, SHIFT(2097), - [4869] = {.count = 1, .reusable = false}, SHIFT(2098), - [4871] = {.count = 1, .reusable = true}, SHIFT(2098), - [4873] = {.count = 1, .reusable = true}, SHIFT(2099), - [4875] = {.count = 1, .reusable = false}, SHIFT(2100), - [4877] = {.count = 1, .reusable = true}, SHIFT(2100), - [4879] = {.count = 1, .reusable = true}, SHIFT(2101), - [4881] = {.count = 1, .reusable = true}, SHIFT(2102), - [4883] = {.count = 1, .reusable = true}, SHIFT(2103), - [4885] = {.count = 1, .reusable = false}, SHIFT(2104), - [4887] = {.count = 1, .reusable = true}, SHIFT(2104), - [4889] = {.count = 1, .reusable = false}, SHIFT(2105), - [4891] = {.count = 1, .reusable = true}, SHIFT(2105), - [4893] = {.count = 1, .reusable = true}, SHIFT(2106), - [4895] = {.count = 1, .reusable = true}, SHIFT(2107), - [4897] = {.count = 1, .reusable = true}, SHIFT(2108), - [4899] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 7), - [4901] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 7), - [4903] = {.count = 1, .reusable = true}, SHIFT(2110), - [4905] = {.count = 1, .reusable = true}, SHIFT(2111), - [4907] = {.count = 1, .reusable = true}, SHIFT(2112), - [4909] = {.count = 1, .reusable = true}, SHIFT(2113), - [4911] = {.count = 1, .reusable = false}, SHIFT(2114), - [4913] = {.count = 1, .reusable = true}, SHIFT(2114), - [4915] = {.count = 1, .reusable = false}, SHIFT(2115), - [4917] = {.count = 1, .reusable = true}, SHIFT(2115), - [4919] = {.count = 1, .reusable = true}, SHIFT(2116), - [4921] = {.count = 1, .reusable = true}, SHIFT(2117), - [4923] = {.count = 1, .reusable = true}, SHIFT(2118), - [4925] = {.count = 1, .reusable = true}, SHIFT(2119), - [4927] = {.count = 1, .reusable = true}, SHIFT(2120), - [4929] = {.count = 1, .reusable = true}, SHIFT(2121), - [4931] = {.count = 1, .reusable = false}, SHIFT(2122), - [4933] = {.count = 1, .reusable = true}, SHIFT(2123), - [4935] = {.count = 1, .reusable = true}, SHIFT(2125), - [4937] = {.count = 1, .reusable = true}, SHIFT(2126), - [4939] = {.count = 1, .reusable = false}, SHIFT(2127), - [4941] = {.count = 1, .reusable = true}, SHIFT(2127), - [4943] = {.count = 1, .reusable = true}, SHIFT(2128), - [4945] = {.count = 1, .reusable = false}, SHIFT(2129), - [4947] = {.count = 1, .reusable = true}, SHIFT(2129), - [4949] = {.count = 1, .reusable = true}, SHIFT(2130), - [4951] = {.count = 1, .reusable = false}, SHIFT(2131), - [4953] = {.count = 1, .reusable = true}, SHIFT(2131), - [4955] = {.count = 1, .reusable = true}, SHIFT(2132), - [4957] = {.count = 1, .reusable = false}, SHIFT(2133), - [4959] = {.count = 1, .reusable = true}, SHIFT(2133), - [4961] = {.count = 1, .reusable = false}, SHIFT(2134), - [4963] = {.count = 1, .reusable = true}, SHIFT(2134), - [4965] = {.count = 1, .reusable = true}, SHIFT(2135), - [4967] = {.count = 1, .reusable = false}, SHIFT(2136), - [4969] = {.count = 1, .reusable = true}, SHIFT(2136), - [4971] = {.count = 1, .reusable = true}, SHIFT(2137), - [4973] = {.count = 1, .reusable = true}, SHIFT(2138), - [4975] = {.count = 1, .reusable = true}, SHIFT(2139), - [4977] = {.count = 1, .reusable = false}, SHIFT(2140), - [4979] = {.count = 1, .reusable = true}, SHIFT(2140), - [4981] = {.count = 1, .reusable = false}, SHIFT(2141), - [4983] = {.count = 1, .reusable = true}, SHIFT(2141), - [4985] = {.count = 1, .reusable = true}, SHIFT(2142), - [4987] = {.count = 1, .reusable = true}, SHIFT(2143), - [4989] = {.count = 1, .reusable = true}, SHIFT(2144), - [4991] = {.count = 1, .reusable = true}, SHIFT(2145), - [4993] = {.count = 1, .reusable = true}, SHIFT(2146), - [4995] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), - [4997] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), - [4999] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), - [5001] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 2), - [5003] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), - [5005] = {.count = 1, .reusable = true}, SHIFT(2147), - [5007] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), - [5009] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [5011] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [5013] = {.count = 1, .reusable = true}, SHIFT(2148), - [5015] = {.count = 1, .reusable = true}, SHIFT(2149), - [5017] = {.count = 1, .reusable = true}, SHIFT(2150), - [5019] = {.count = 1, .reusable = false}, SHIFT(2151), - [5021] = {.count = 1, .reusable = true}, SHIFT(2152), - [5023] = {.count = 1, .reusable = true}, SHIFT(2153), - [5025] = {.count = 1, .reusable = true}, SHIFT(2154), - [5027] = {.count = 1, .reusable = true}, SHIFT(2155), - [5029] = {.count = 1, .reusable = true}, SHIFT(2156), - [5031] = {.count = 1, .reusable = false}, SHIFT(2158), - [5033] = {.count = 1, .reusable = false}, SHIFT(2152), - [5035] = {.count = 1, .reusable = true}, SHIFT(2159), - [5037] = {.count = 1, .reusable = true}, SHIFT(2160), - [5039] = {.count = 1, .reusable = false}, SHIFT(2161), - [5041] = {.count = 1, .reusable = true}, SHIFT(2162), - [5043] = {.count = 1, .reusable = true}, SHIFT(2163), - [5045] = {.count = 1, .reusable = true}, SHIFT(2164), - [5047] = {.count = 1, .reusable = true}, SHIFT(2165), - [5049] = {.count = 1, .reusable = true}, SHIFT(2166), - [5051] = {.count = 1, .reusable = false}, SHIFT(2167), - [5053] = {.count = 1, .reusable = false}, SHIFT(2162), - [5055] = {.count = 1, .reusable = true}, SHIFT(2168), - [5057] = {.count = 1, .reusable = false}, SHIFT(2170), - [5059] = {.count = 1, .reusable = false}, SHIFT(2171), - [5061] = {.count = 1, .reusable = true}, SHIFT(2173), - [5063] = {.count = 1, .reusable = true}, SHIFT(2174), - [5065] = {.count = 1, .reusable = false}, SHIFT(2175), - [5067] = {.count = 1, .reusable = true}, SHIFT(2175), - [5069] = {.count = 1, .reusable = true}, SHIFT(2176), - [5071] = {.count = 1, .reusable = true}, SHIFT(2177), - [5073] = {.count = 1, .reusable = true}, SHIFT(2178), - [5075] = {.count = 1, .reusable = false}, SHIFT(2179), - [5077] = {.count = 1, .reusable = true}, SHIFT(2179), - [5079] = {.count = 1, .reusable = true}, SHIFT(2189), - [5081] = {.count = 1, .reusable = false}, SHIFT(2190), - [5083] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), - [5085] = {.count = 1, .reusable = false}, SHIFT(2191), - [5087] = {.count = 1, .reusable = true}, SHIFT(2192), - [5089] = {.count = 1, .reusable = true}, SHIFT(2191), - [5091] = {.count = 1, .reusable = true}, SHIFT(2193), - [5093] = {.count = 1, .reusable = false}, SHIFT(2194), - [5095] = {.count = 1, .reusable = true}, SHIFT(2194), - [5097] = {.count = 1, .reusable = true}, SHIFT(2195), - [5099] = {.count = 1, .reusable = true}, SHIFT(2190), - [5101] = {.count = 1, .reusable = false}, SHIFT(2198), - [5103] = {.count = 1, .reusable = true}, SHIFT(2199), - [5105] = {.count = 1, .reusable = true}, SHIFT(2200), - [5107] = {.count = 1, .reusable = false}, SHIFT(2200), - [5109] = {.count = 1, .reusable = true}, SHIFT(2202), - [5111] = {.count = 1, .reusable = true}, SHIFT(1944), - [5113] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1613), - [5116] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), - [5118] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), - [5120] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), - [5122] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3), - [5124] = {.count = 1, .reusable = true}, SHIFT(2208), - [5126] = {.count = 1, .reusable = true}, SHIFT(2209), - [5128] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 2), - [5130] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 2), - [5132] = {.count = 1, .reusable = true}, SHIFT(2213), - [5134] = {.count = 1, .reusable = true}, SHIFT(2215), - [5136] = {.count = 1, .reusable = true}, SHIFT(2217), - [5138] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7), - [5140] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7), - [5142] = {.count = 1, .reusable = true}, SHIFT(2218), - [5144] = {.count = 1, .reusable = true}, SHIFT(2219), - [5146] = {.count = 1, .reusable = true}, SHIFT(2220), - [5148] = {.count = 1, .reusable = true}, SHIFT(2221), - [5150] = {.count = 1, .reusable = true}, SHIFT(2222), - [5152] = {.count = 1, .reusable = true}, SHIFT(2223), - [5154] = {.count = 1, .reusable = true}, SHIFT(2224), - [5156] = {.count = 1, .reusable = true}, SHIFT(2225), - [5158] = {.count = 1, .reusable = true}, SHIFT(2226), - [5160] = {.count = 1, .reusable = true}, SHIFT(2227), - [5162] = {.count = 1, .reusable = true}, SHIFT(2228), - [5164] = {.count = 1, .reusable = true}, SHIFT(2229), - [5166] = {.count = 1, .reusable = true}, SHIFT(2230), - [5168] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 4), - [5170] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), - [5172] = {.count = 1, .reusable = true}, SHIFT(2231), - [5174] = {.count = 1, .reusable = true}, SHIFT(2232), - [5176] = {.count = 1, .reusable = false}, SHIFT(2233), - [5178] = {.count = 1, .reusable = true}, SHIFT(2234), - [5180] = {.count = 1, .reusable = true}, SHIFT(2236), - [5182] = {.count = 1, .reusable = true}, SHIFT(2237), - [5184] = {.count = 1, .reusable = false}, SHIFT(2238), - [5186] = {.count = 1, .reusable = true}, SHIFT(2238), - [5188] = {.count = 1, .reusable = true}, SHIFT(2239), - [5190] = {.count = 1, .reusable = false}, SHIFT(2240), - [5192] = {.count = 1, .reusable = true}, SHIFT(2240), - [5194] = {.count = 1, .reusable = true}, SHIFT(2241), - [5196] = {.count = 1, .reusable = false}, SHIFT(2242), - [5198] = {.count = 1, .reusable = true}, SHIFT(2242), - [5200] = {.count = 1, .reusable = true}, SHIFT(2243), - [5202] = {.count = 1, .reusable = false}, SHIFT(2244), - [5204] = {.count = 1, .reusable = true}, SHIFT(2244), - [5206] = {.count = 1, .reusable = false}, SHIFT(2245), - [5208] = {.count = 1, .reusable = true}, SHIFT(2245), - [5210] = {.count = 1, .reusable = true}, SHIFT(2246), - [5212] = {.count = 1, .reusable = false}, SHIFT(2247), - [5214] = {.count = 1, .reusable = true}, SHIFT(2247), - [5216] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 5), - [5218] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 5), - [5220] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7), - [5222] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7), - [5224] = {.count = 1, .reusable = true}, SHIFT(2248), - [5226] = {.count = 1, .reusable = true}, SHIFT(2249), - [5228] = {.count = 1, .reusable = true}, SHIFT(2250), - [5230] = {.count = 1, .reusable = false}, SHIFT(2251), - [5232] = {.count = 1, .reusable = true}, SHIFT(2251), - [5234] = {.count = 1, .reusable = false}, SHIFT(2252), - [5236] = {.count = 1, .reusable = true}, SHIFT(2252), - [5238] = {.count = 1, .reusable = true}, SHIFT(2253), - [5240] = {.count = 1, .reusable = true}, SHIFT(2254), - [5242] = {.count = 1, .reusable = true}, SHIFT(2255), - [5244] = {.count = 1, .reusable = true}, SHIFT(2256), - [5246] = {.count = 1, .reusable = true}, SHIFT(2257), - [5248] = {.count = 1, .reusable = true}, SHIFT(2258), - [5250] = {.count = 1, .reusable = false}, SHIFT(2259), - [5252] = {.count = 1, .reusable = true}, SHIFT(2259), - [5254] = {.count = 1, .reusable = false}, SHIFT(2260), - [5256] = {.count = 1, .reusable = true}, SHIFT(2260), - [5258] = {.count = 1, .reusable = true}, SHIFT(2261), - [5260] = {.count = 1, .reusable = true}, SHIFT(2262), - [5262] = {.count = 1, .reusable = true}, SHIFT(2263), - [5264] = {.count = 1, .reusable = true}, SHIFT(2264), - [5266] = {.count = 1, .reusable = true}, SHIFT(2265), - [5268] = {.count = 1, .reusable = false}, SHIFT(2266), - [5270] = {.count = 1, .reusable = true}, SHIFT(2266), - [5272] = {.count = 1, .reusable = false}, SHIFT(2267), - [5274] = {.count = 1, .reusable = true}, SHIFT(2267), - [5276] = {.count = 1, .reusable = true}, SHIFT(2268), - [5278] = {.count = 1, .reusable = true}, SHIFT(2269), - [5280] = {.count = 1, .reusable = true}, SHIFT(2270), - [5282] = {.count = 1, .reusable = true}, SHIFT(2271), - [5284] = {.count = 1, .reusable = true}, SHIFT(2272), - [5286] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 8), - [5288] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 8), - [5290] = {.count = 1, .reusable = true}, SHIFT(2274), - [5292] = {.count = 1, .reusable = true}, SHIFT(2275), - [5294] = {.count = 1, .reusable = true}, SHIFT(2276), - [5296] = {.count = 1, .reusable = true}, SHIFT(2277), - [5298] = {.count = 1, .reusable = true}, SHIFT(2278), - [5300] = {.count = 1, .reusable = true}, SHIFT(2279), - [5302] = {.count = 1, .reusable = false}, SHIFT(2280), - [5304] = {.count = 1, .reusable = true}, SHIFT(2280), - [5306] = {.count = 1, .reusable = false}, SHIFT(2281), - [5308] = {.count = 1, .reusable = true}, SHIFT(2281), - [5310] = {.count = 1, .reusable = true}, SHIFT(2282), - [5312] = {.count = 1, .reusable = true}, SHIFT(2283), - [5314] = {.count = 1, .reusable = true}, SHIFT(2284), - [5316] = {.count = 1, .reusable = true}, SHIFT(2285), - [5318] = {.count = 1, .reusable = true}, SHIFT(2286), - [5320] = {.count = 1, .reusable = true}, SHIFT(2287), - [5322] = {.count = 1, .reusable = true}, SHIFT(2288), - [5324] = {.count = 1, .reusable = true}, SHIFT(2289), - [5326] = {.count = 1, .reusable = true}, SHIFT(2290), - [5328] = {.count = 1, .reusable = false}, SHIFT(2291), - [5330] = {.count = 1, .reusable = true}, SHIFT(2292), - [5332] = {.count = 1, .reusable = true}, SHIFT(2293), - [5334] = {.count = 1, .reusable = true}, SHIFT(2294), - [5336] = {.count = 1, .reusable = true}, SHIFT(2295), - [5338] = {.count = 1, .reusable = true}, SHIFT(2296), - [5340] = {.count = 1, .reusable = true}, SHIFT(2297), - [5342] = {.count = 1, .reusable = true}, SHIFT(2298), - [5344] = {.count = 1, .reusable = false}, SHIFT(2300), - [5346] = {.count = 1, .reusable = false}, SHIFT(2301), - [5348] = {.count = 1, .reusable = true}, SHIFT(2303), - [5350] = {.count = 1, .reusable = true}, SHIFT(2304), - [5352] = {.count = 1, .reusable = false}, SHIFT(2305), - [5354] = {.count = 1, .reusable = true}, SHIFT(2305), - [5356] = {.count = 1, .reusable = true}, SHIFT(2306), - [5358] = {.count = 1, .reusable = true}, SHIFT(2307), - [5360] = {.count = 1, .reusable = true}, SHIFT(2308), - [5362] = {.count = 1, .reusable = false}, SHIFT(2309), - [5364] = {.count = 1, .reusable = true}, SHIFT(2309), - [5366] = {.count = 1, .reusable = false}, SHIFT(2319), - [5368] = {.count = 1, .reusable = true}, SHIFT(2320), - [5370] = {.count = 1, .reusable = false}, SHIFT(2322), - [5372] = {.count = 1, .reusable = false}, SHIFT(2323), - [5374] = {.count = 1, .reusable = true}, SHIFT(2325), - [5376] = {.count = 1, .reusable = true}, SHIFT(2326), - [5378] = {.count = 1, .reusable = false}, SHIFT(2327), - [5380] = {.count = 1, .reusable = true}, SHIFT(2327), - [5382] = {.count = 1, .reusable = true}, SHIFT(2328), - [5384] = {.count = 1, .reusable = true}, SHIFT(2329), - [5386] = {.count = 1, .reusable = true}, SHIFT(2330), - [5388] = {.count = 1, .reusable = false}, SHIFT(2331), - [5390] = {.count = 1, .reusable = true}, SHIFT(2331), - [5392] = {.count = 1, .reusable = false}, SHIFT(2341), - [5394] = {.count = 1, .reusable = true}, SHIFT(2342), - [5396] = {.count = 1, .reusable = false}, SHIFT(2344), - [5398] = {.count = 1, .reusable = false}, SHIFT(2345), - [5400] = {.count = 1, .reusable = true}, SHIFT(2346), - [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(2349), - [5410] = {.count = 1, .reusable = true}, SHIFT(2350), - [5412] = {.count = 1, .reusable = false}, SHIFT(2352), - [5414] = {.count = 1, .reusable = true}, SHIFT(2352), - [5416] = {.count = 1, .reusable = true}, SHIFT(2351), - [5418] = {.count = 1, .reusable = true}, SHIFT(2353), - [5420] = {.count = 1, .reusable = false}, SHIFT(2355), - [5422] = {.count = 1, .reusable = true}, SHIFT(2355), - [5424] = {.count = 1, .reusable = true}, SHIFT(2354), - [5426] = {.count = 1, .reusable = false}, SHIFT(2356), - [5428] = {.count = 1, .reusable = true}, SHIFT(2357), - [5430] = {.count = 1, .reusable = true}, SHIFT(2356), - [5432] = {.count = 1, .reusable = false}, SHIFT(2361), - [5434] = {.count = 1, .reusable = true}, SHIFT(2361), - [5436] = {.count = 1, .reusable = false}, SHIFT(2365), - [5438] = {.count = 1, .reusable = true}, SHIFT(2366), - [5440] = {.count = 1, .reusable = true}, SHIFT(2365), - [5442] = {.count = 1, .reusable = false}, SHIFT(2370), - [5444] = {.count = 1, .reusable = true}, SHIFT(2370), - [5446] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), - [5448] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [5450] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [5452] = {.count = 1, .reusable = true}, SHIFT(2375), - [5454] = {.count = 1, .reusable = true}, SHIFT(2376), - [5456] = {.count = 1, .reusable = false}, SHIFT(2377), - [5458] = {.count = 1, .reusable = true}, SHIFT(2378), - [5460] = {.count = 1, .reusable = true}, SHIFT(2379), - [5462] = {.count = 1, .reusable = true}, SHIFT(2380), - [5464] = {.count = 1, .reusable = true}, SHIFT(2381), - [5466] = {.count = 1, .reusable = true}, SHIFT(2382), - [5468] = {.count = 1, .reusable = true}, SHIFT(2383), - [5470] = {.count = 1, .reusable = true}, SHIFT(2384), - [5472] = {.count = 1, .reusable = false}, SHIFT(2385), - [5474] = {.count = 1, .reusable = true}, SHIFT(2385), - [5476] = {.count = 1, .reusable = true}, SHIFT(2387), - [5478] = {.count = 1, .reusable = true}, SHIFT(2388), - [5480] = {.count = 1, .reusable = true}, SHIFT(2389), - [5482] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), - [5484] = {.count = 1, .reusable = true}, SHIFT(2391), - [5486] = {.count = 1, .reusable = true}, SHIFT(2395), - [5488] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), - [5490] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), - [5492] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), - [5494] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4), - [5496] = {.count = 1, .reusable = true}, SHIFT(2398), - [5498] = {.count = 1, .reusable = true}, SHIFT(2399), - [5500] = {.count = 1, .reusable = true}, SHIFT(2402), - [5502] = {.count = 1, .reusable = true}, SHIFT(2406), - [5504] = {.count = 1, .reusable = true}, SHIFT(2407), - [5506] = {.count = 1, .reusable = true}, SHIFT(2411), - [5508] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 2), - [5510] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 2), - [5512] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8), - [5514] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8), - [5516] = {.count = 1, .reusable = true}, SHIFT(2412), - [5518] = {.count = 1, .reusable = true}, SHIFT(2413), - [5520] = {.count = 1, .reusable = true}, SHIFT(2414), - [5522] = {.count = 1, .reusable = false}, SHIFT(2415), - [5524] = {.count = 1, .reusable = true}, SHIFT(2415), - [5526] = {.count = 1, .reusable = false}, SHIFT(2416), - [5528] = {.count = 1, .reusable = true}, SHIFT(2416), - [5530] = {.count = 1, .reusable = true}, SHIFT(2417), - [5532] = {.count = 1, .reusable = true}, SHIFT(2418), - [5534] = {.count = 1, .reusable = true}, SHIFT(2419), - [5536] = {.count = 1, .reusable = true}, SHIFT(2420), - [5538] = {.count = 1, .reusable = true}, SHIFT(2421), - [5540] = {.count = 1, .reusable = true}, SHIFT(2422), - [5542] = {.count = 1, .reusable = true}, SHIFT(2423), - [5544] = {.count = 1, .reusable = true}, SHIFT(2424), - [5546] = {.count = 1, .reusable = true}, SHIFT(2425), - [5548] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 9), - [5550] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 9), - [5552] = {.count = 1, .reusable = true}, SHIFT(2427), - [5554] = {.count = 1, .reusable = true}, SHIFT(2428), - [5556] = {.count = 1, .reusable = true}, SHIFT(2429), - [5558] = {.count = 1, .reusable = true}, SHIFT(2431), - [5560] = {.count = 1, .reusable = false}, SHIFT(2433), - [5562] = {.count = 1, .reusable = false}, SHIFT(2434), - [5564] = {.count = 1, .reusable = true}, SHIFT(2436), - [5566] = {.count = 1, .reusable = true}, SHIFT(2437), - [5568] = {.count = 1, .reusable = false}, SHIFT(2438), - [5570] = {.count = 1, .reusable = true}, SHIFT(2438), - [5572] = {.count = 1, .reusable = true}, SHIFT(2439), - [5574] = {.count = 1, .reusable = true}, SHIFT(2440), - [5576] = {.count = 1, .reusable = true}, SHIFT(2441), - [5578] = {.count = 1, .reusable = false}, SHIFT(2442), - [5580] = {.count = 1, .reusable = true}, SHIFT(2442), - [5582] = {.count = 1, .reusable = true}, SHIFT(2452), - [5584] = {.count = 1, .reusable = true}, SHIFT(2453), - [5586] = {.count = 1, .reusable = true}, SHIFT(2454), - [5588] = {.count = 1, .reusable = true}, SHIFT(2455), - [5590] = {.count = 1, .reusable = true}, SHIFT(2456), - [5592] = {.count = 1, .reusable = false}, SHIFT(2458), - [5594] = {.count = 1, .reusable = false}, SHIFT(2459), - [5596] = {.count = 1, .reusable = true}, SHIFT(2460), - [5598] = {.count = 1, .reusable = true}, SHIFT(2461), - [5600] = {.count = 1, .reusable = true}, SHIFT(2462), - [5602] = {.count = 1, .reusable = false}, SHIFT(2463), - [5604] = {.count = 1, .reusable = true}, SHIFT(2463), - [5606] = {.count = 1, .reusable = true}, SHIFT(2464), - [5608] = {.count = 1, .reusable = false}, SHIFT(2466), - [5610] = {.count = 1, .reusable = true}, SHIFT(2466), - [5612] = {.count = 1, .reusable = true}, SHIFT(2465), - [5614] = {.count = 1, .reusable = true}, SHIFT(2467), - [5616] = {.count = 1, .reusable = false}, SHIFT(2469), - [5618] = {.count = 1, .reusable = true}, SHIFT(2469), - [5620] = {.count = 1, .reusable = true}, SHIFT(2468), - [5622] = {.count = 1, .reusable = false}, SHIFT(2470), - [5624] = {.count = 1, .reusable = true}, SHIFT(2471), - [5626] = {.count = 1, .reusable = true}, SHIFT(2470), - [5628] = {.count = 1, .reusable = false}, SHIFT(2475), - [5630] = {.count = 1, .reusable = true}, SHIFT(2475), - [5632] = {.count = 1, .reusable = false}, SHIFT(2479), - [5634] = {.count = 1, .reusable = true}, SHIFT(2480), - [5636] = {.count = 1, .reusable = true}, SHIFT(2479), - [5638] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2148), - [5641] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2149), - [5644] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2150), - [5647] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2151), - [5650] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2152), - [5653] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2153), - [5656] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2154), - [5659] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2155), - [5662] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2156), - [5665] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2319), - [5668] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2152), - [5671] = {.count = 1, .reusable = true}, SHIFT(2484), - [5673] = {.count = 1, .reusable = false}, SHIFT(2486), - [5675] = {.count = 1, .reusable = false}, SHIFT(2487), - [5677] = {.count = 1, .reusable = true}, SHIFT(2488), - [5679] = {.count = 1, .reusable = true}, SHIFT(2489), - [5681] = {.count = 1, .reusable = true}, SHIFT(2490), - [5683] = {.count = 1, .reusable = false}, SHIFT(2491), - [5685] = {.count = 1, .reusable = true}, SHIFT(2491), - [5687] = {.count = 1, .reusable = true}, SHIFT(2492), - [5689] = {.count = 1, .reusable = false}, SHIFT(2494), - [5691] = {.count = 1, .reusable = true}, SHIFT(2494), - [5693] = {.count = 1, .reusable = true}, SHIFT(2493), - [5695] = {.count = 1, .reusable = true}, SHIFT(2495), - [5697] = {.count = 1, .reusable = false}, SHIFT(2497), - [5699] = {.count = 1, .reusable = true}, SHIFT(2497), - [5701] = {.count = 1, .reusable = true}, SHIFT(2496), - [5703] = {.count = 1, .reusable = false}, SHIFT(2498), - [5705] = {.count = 1, .reusable = true}, SHIFT(2499), - [5707] = {.count = 1, .reusable = true}, SHIFT(2498), - [5709] = {.count = 1, .reusable = false}, SHIFT(2503), - [5711] = {.count = 1, .reusable = true}, SHIFT(2503), - [5713] = {.count = 1, .reusable = false}, SHIFT(2507), - [5715] = {.count = 1, .reusable = true}, SHIFT(2508), - [5717] = {.count = 1, .reusable = true}, SHIFT(2507), - [5719] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2159), - [5722] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2160), - [5725] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2161), - [5728] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2162), - [5731] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2163), - [5734] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2164), - [5737] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2165), - [5740] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2166), - [5743] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2341), - [5746] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2162), - [5749] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2168), - [5752] = {.count = 1, .reusable = false}, SHIFT(2512), - [5754] = {.count = 1, .reusable = true}, SHIFT(2513), - [5756] = {.count = 1, .reusable = false}, SHIFT(2514), - [5758] = {.count = 1, .reusable = true}, SHIFT(2515), - [5760] = {.count = 1, .reusable = true}, SHIFT(2517), - [5762] = {.count = 1, .reusable = true}, SHIFT(2518), - [5764] = {.count = 1, .reusable = false}, SHIFT(2520), - [5766] = {.count = 1, .reusable = true}, SHIFT(2520), - [5768] = {.count = 1, .reusable = true}, SHIFT(2519), - [5770] = {.count = 1, .reusable = false}, SHIFT(2522), - [5772] = {.count = 1, .reusable = true}, SHIFT(2522), - [5774] = {.count = 1, .reusable = true}, SHIFT(2521), - [5776] = {.count = 1, .reusable = true}, SHIFT(2523), - [5778] = {.count = 1, .reusable = true}, SHIFT(2524), - [5780] = {.count = 1, .reusable = false}, SHIFT(2525), - [5782] = {.count = 1, .reusable = true}, SHIFT(2525), - [5784] = {.count = 1, .reusable = true}, SHIFT(2526), - [5786] = {.count = 1, .reusable = true}, SHIFT(2527), - [5788] = {.count = 1, .reusable = false}, SHIFT(2528), - [5790] = {.count = 1, .reusable = true}, SHIFT(2528), - [5792] = {.count = 1, .reusable = false}, SHIFT(2529), - [5794] = {.count = 1, .reusable = true}, SHIFT(2529), - [5796] = {.count = 1, .reusable = false}, SHIFT(2531), - [5798] = {.count = 1, .reusable = true}, SHIFT(2531), - [5800] = {.count = 1, .reusable = false}, SHIFT(2532), - [5802] = {.count = 1, .reusable = true}, SHIFT(2532), - [5804] = {.count = 1, .reusable = true}, SHIFT(2534), - [5806] = {.count = 1, .reusable = false}, SHIFT(2535), - [5808] = {.count = 1, .reusable = true}, SHIFT(2535), - [5810] = {.count = 1, .reusable = false}, SHIFT(2536), - [5812] = {.count = 1, .reusable = true}, SHIFT(2536), - [5814] = {.count = 1, .reusable = true}, SHIFT(2538), - [5816] = {.count = 1, .reusable = true}, SHIFT(2539), - [5818] = {.count = 1, .reusable = true}, SHIFT(2540), - [5820] = {.count = 1, .reusable = false}, SHIFT(2542), - [5822] = {.count = 1, .reusable = false}, SHIFT(2543), - [5824] = {.count = 1, .reusable = true}, SHIFT(2545), - [5826] = {.count = 1, .reusable = true}, SHIFT(2546), - [5828] = {.count = 1, .reusable = false}, SHIFT(2547), - [5830] = {.count = 1, .reusable = true}, SHIFT(2547), - [5832] = {.count = 1, .reusable = true}, SHIFT(2548), - [5834] = {.count = 1, .reusable = true}, SHIFT(2549), - [5836] = {.count = 1, .reusable = true}, SHIFT(2550), - [5838] = {.count = 1, .reusable = false}, SHIFT(2551), - [5840] = {.count = 1, .reusable = true}, SHIFT(2551), - [5842] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2189), - [5845] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2194), - [5848] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2194), - [5851] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2195), - [5854] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2198), - [5857] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2199), - [5860] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1945), - [5863] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1946), - [5866] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2200), - [5869] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1948), - [5872] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1949), - [5875] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1950), - [5878] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1951), - [5881] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2200), - [5884] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), - [5886] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [5888] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [5890] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), - [5892] = {.count = 1, .reusable = true}, SHIFT(2561), - [5894] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), - [5896] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), - [5898] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), - [5900] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 5), - [5902] = {.count = 1, .reusable = true}, SHIFT(2562), - [5904] = {.count = 1, .reusable = true}, SHIFT(2563), - [5906] = {.count = 1, .reusable = true}, SHIFT(2564), - [5908] = {.count = 1, .reusable = true}, SHIFT(2569), - [5910] = {.count = 1, .reusable = true}, SHIFT(2570), - [5912] = {.count = 1, .reusable = true}, SHIFT(2574), - [5914] = {.count = 1, .reusable = true}, SHIFT(2575), - [5916] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 10), - [5918] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 10), - [5920] = {.count = 1, .reusable = true}, SHIFT(2576), - [5922] = {.count = 1, .reusable = true}, SHIFT(2577), - [5924] = {.count = 1, .reusable = false}, SHIFT(2579), - [5926] = {.count = 1, .reusable = false}, SHIFT(2580), - [5928] = {.count = 1, .reusable = true}, SHIFT(2581), - [5930] = {.count = 1, .reusable = true}, SHIFT(2582), - [5932] = {.count = 1, .reusable = true}, SHIFT(2583), - [5934] = {.count = 1, .reusable = false}, SHIFT(2584), - [5936] = {.count = 1, .reusable = true}, SHIFT(2584), - [5938] = {.count = 1, .reusable = true}, SHIFT(2585), - [5940] = {.count = 1, .reusable = false}, SHIFT(2587), - [5942] = {.count = 1, .reusable = true}, SHIFT(2587), - [5944] = {.count = 1, .reusable = true}, SHIFT(2586), - [5946] = {.count = 1, .reusable = true}, SHIFT(2588), - [5948] = {.count = 1, .reusable = false}, SHIFT(2590), - [5950] = {.count = 1, .reusable = true}, SHIFT(2590), - [5952] = {.count = 1, .reusable = true}, SHIFT(2589), - [5954] = {.count = 1, .reusable = false}, SHIFT(2591), - [5956] = {.count = 1, .reusable = true}, SHIFT(2592), - [5958] = {.count = 1, .reusable = true}, SHIFT(2591), - [5960] = {.count = 1, .reusable = false}, SHIFT(2596), - [5962] = {.count = 1, .reusable = true}, SHIFT(2596), - [5964] = {.count = 1, .reusable = false}, SHIFT(2600), - [5966] = {.count = 1, .reusable = true}, SHIFT(2601), - [5968] = {.count = 1, .reusable = true}, SHIFT(2600), - [5970] = {.count = 1, .reusable = true}, SHIFT(2605), - [5972] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2298), - [5975] = {.count = 1, .reusable = false}, SHIFT(2607), - [5977] = {.count = 1, .reusable = true}, SHIFT(2608), - [5979] = {.count = 1, .reusable = false}, SHIFT(2609), - [5981] = {.count = 1, .reusable = true}, SHIFT(2610), - [5983] = {.count = 1, .reusable = true}, SHIFT(2612), - [5985] = {.count = 1, .reusable = true}, SHIFT(2613), - [5987] = {.count = 1, .reusable = false}, SHIFT(2615), - [5989] = {.count = 1, .reusable = true}, SHIFT(2615), - [5991] = {.count = 1, .reusable = true}, SHIFT(2614), - [5993] = {.count = 1, .reusable = false}, SHIFT(2617), - [5995] = {.count = 1, .reusable = true}, SHIFT(2617), - [5997] = {.count = 1, .reusable = true}, SHIFT(2616), - [5999] = {.count = 1, .reusable = true}, SHIFT(2618), - [6001] = {.count = 1, .reusable = true}, SHIFT(2619), - [6003] = {.count = 1, .reusable = false}, SHIFT(2620), - [6005] = {.count = 1, .reusable = true}, SHIFT(2620), - [6007] = {.count = 1, .reusable = true}, SHIFT(2621), - [6009] = {.count = 1, .reusable = true}, SHIFT(2622), - [6011] = {.count = 1, .reusable = false}, SHIFT(2623), - [6013] = {.count = 1, .reusable = true}, SHIFT(2623), - [6015] = {.count = 1, .reusable = false}, SHIFT(2624), - [6017] = {.count = 1, .reusable = true}, SHIFT(2624), - [6019] = {.count = 1, .reusable = false}, SHIFT(2626), - [6021] = {.count = 1, .reusable = true}, SHIFT(2626), - [6023] = {.count = 1, .reusable = false}, SHIFT(2627), - [6025] = {.count = 1, .reusable = true}, SHIFT(2627), - [6027] = {.count = 1, .reusable = true}, SHIFT(2629), - [6029] = {.count = 1, .reusable = false}, SHIFT(2630), - [6031] = {.count = 1, .reusable = true}, SHIFT(2630), - [6033] = {.count = 1, .reusable = false}, SHIFT(2631), - [6035] = {.count = 1, .reusable = true}, SHIFT(2631), - [6037] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2320), - [6040] = {.count = 1, .reusable = false}, SHIFT(2633), - [6042] = {.count = 1, .reusable = true}, SHIFT(2634), - [6044] = {.count = 1, .reusable = false}, SHIFT(2635), - [6046] = {.count = 1, .reusable = true}, SHIFT(2636), - [6048] = {.count = 1, .reusable = true}, SHIFT(2638), - [6050] = {.count = 1, .reusable = true}, SHIFT(2639), - [6052] = {.count = 1, .reusable = false}, SHIFT(2641), - [6054] = {.count = 1, .reusable = true}, SHIFT(2641), - [6056] = {.count = 1, .reusable = true}, SHIFT(2640), - [6058] = {.count = 1, .reusable = false}, SHIFT(2643), - [6060] = {.count = 1, .reusable = true}, SHIFT(2643), - [6062] = {.count = 1, .reusable = true}, SHIFT(2642), - [6064] = {.count = 1, .reusable = true}, SHIFT(2644), - [6066] = {.count = 1, .reusable = true}, SHIFT(2645), - [6068] = {.count = 1, .reusable = false}, SHIFT(2646), - [6070] = {.count = 1, .reusable = true}, SHIFT(2646), - [6072] = {.count = 1, .reusable = true}, SHIFT(2647), - [6074] = {.count = 1, .reusable = true}, SHIFT(2648), - [6076] = {.count = 1, .reusable = false}, SHIFT(2649), - [6078] = {.count = 1, .reusable = true}, SHIFT(2649), - [6080] = {.count = 1, .reusable = false}, SHIFT(2650), - [6082] = {.count = 1, .reusable = true}, SHIFT(2650), - [6084] = {.count = 1, .reusable = false}, SHIFT(2652), - [6086] = {.count = 1, .reusable = true}, SHIFT(2652), - [6088] = {.count = 1, .reusable = false}, SHIFT(2653), - [6090] = {.count = 1, .reusable = true}, SHIFT(2653), - [6092] = {.count = 1, .reusable = true}, SHIFT(2655), - [6094] = {.count = 1, .reusable = false}, SHIFT(2656), - [6096] = {.count = 1, .reusable = true}, SHIFT(2656), - [6098] = {.count = 1, .reusable = false}, SHIFT(2657), - [6100] = {.count = 1, .reusable = true}, SHIFT(2657), - [6102] = {.count = 1, .reusable = true}, SHIFT(2659), - [6104] = {.count = 1, .reusable = true}, SHIFT(2660), - [6106] = {.count = 1, .reusable = false}, SHIFT(2661), - [6108] = {.count = 1, .reusable = true}, SHIFT(2662), - [6110] = {.count = 1, .reusable = true}, SHIFT(2664), - [6112] = {.count = 1, .reusable = true}, SHIFT(2665), - [6114] = {.count = 1, .reusable = false}, SHIFT(2666), - [6116] = {.count = 1, .reusable = true}, SHIFT(2666), - [6118] = {.count = 1, .reusable = true}, SHIFT(2667), - [6120] = {.count = 1, .reusable = false}, SHIFT(2668), - [6122] = {.count = 1, .reusable = true}, SHIFT(2668), - [6124] = {.count = 1, .reusable = true}, SHIFT(2669), - [6126] = {.count = 1, .reusable = false}, SHIFT(2670), - [6128] = {.count = 1, .reusable = true}, SHIFT(2670), - [6130] = {.count = 1, .reusable = true}, SHIFT(2671), - [6132] = {.count = 1, .reusable = false}, SHIFT(2672), - [6134] = {.count = 1, .reusable = true}, SHIFT(2672), - [6136] = {.count = 1, .reusable = false}, SHIFT(2673), - [6138] = {.count = 1, .reusable = true}, SHIFT(2673), - [6140] = {.count = 1, .reusable = true}, SHIFT(2674), - [6142] = {.count = 1, .reusable = false}, SHIFT(2675), - [6144] = {.count = 1, .reusable = true}, SHIFT(2675), - [6146] = {.count = 1, .reusable = true}, SHIFT(2676), - [6148] = {.count = 1, .reusable = false}, SHIFT(2678), - [6150] = {.count = 1, .reusable = false}, SHIFT(2679), - [6152] = {.count = 1, .reusable = true}, SHIFT(2680), - [6154] = {.count = 1, .reusable = true}, SHIFT(2681), - [6156] = {.count = 1, .reusable = true}, SHIFT(2682), - [6158] = {.count = 1, .reusable = false}, SHIFT(2683), - [6160] = {.count = 1, .reusable = true}, SHIFT(2683), - [6162] = {.count = 1, .reusable = true}, SHIFT(2684), - [6164] = {.count = 1, .reusable = false}, SHIFT(2686), - [6166] = {.count = 1, .reusable = true}, SHIFT(2686), - [6168] = {.count = 1, .reusable = true}, SHIFT(2685), - [6170] = {.count = 1, .reusable = true}, SHIFT(2687), - [6172] = {.count = 1, .reusable = false}, SHIFT(2689), - [6174] = {.count = 1, .reusable = true}, SHIFT(2689), - [6176] = {.count = 1, .reusable = true}, SHIFT(2688), - [6178] = {.count = 1, .reusable = false}, SHIFT(2690), - [6180] = {.count = 1, .reusable = true}, SHIFT(2691), - [6182] = {.count = 1, .reusable = true}, SHIFT(2690), - [6184] = {.count = 1, .reusable = false}, SHIFT(2695), - [6186] = {.count = 1, .reusable = true}, SHIFT(2695), - [6188] = {.count = 1, .reusable = false}, SHIFT(2699), - [6190] = {.count = 1, .reusable = true}, SHIFT(2700), - [6192] = {.count = 1, .reusable = true}, SHIFT(2699), - [6194] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6, .alias_sequence_id = 1), - [6196] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [6198] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [6200] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6), - [6202] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6), - [6204] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6), - [6206] = {.count = 1, .reusable = true}, SHIFT(2704), - [6208] = {.count = 1, .reusable = true}, SHIFT(2705), - [6210] = {.count = 1, .reusable = true}, SHIFT(2708), - [6212] = {.count = 1, .reusable = true}, SHIFT(2709), - [6214] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2431), - [6217] = {.count = 1, .reusable = false}, SHIFT(2712), - [6219] = {.count = 1, .reusable = true}, SHIFT(2713), - [6221] = {.count = 1, .reusable = false}, SHIFT(2714), - [6223] = {.count = 1, .reusable = true}, SHIFT(2715), - [6225] = {.count = 1, .reusable = true}, SHIFT(2717), - [6227] = {.count = 1, .reusable = true}, SHIFT(2718), - [6229] = {.count = 1, .reusable = false}, SHIFT(2720), - [6231] = {.count = 1, .reusable = true}, SHIFT(2720), - [6233] = {.count = 1, .reusable = true}, SHIFT(2719), - [6235] = {.count = 1, .reusable = false}, SHIFT(2722), - [6237] = {.count = 1, .reusable = true}, SHIFT(2722), - [6239] = {.count = 1, .reusable = true}, SHIFT(2721), - [6241] = {.count = 1, .reusable = true}, SHIFT(2723), - [6243] = {.count = 1, .reusable = true}, SHIFT(2724), - [6245] = {.count = 1, .reusable = false}, SHIFT(2725), - [6247] = {.count = 1, .reusable = true}, SHIFT(2725), - [6249] = {.count = 1, .reusable = true}, SHIFT(2726), - [6251] = {.count = 1, .reusable = true}, SHIFT(2727), - [6253] = {.count = 1, .reusable = false}, SHIFT(2728), - [6255] = {.count = 1, .reusable = true}, SHIFT(2728), - [6257] = {.count = 1, .reusable = false}, SHIFT(2729), - [6259] = {.count = 1, .reusable = true}, SHIFT(2729), - [6261] = {.count = 1, .reusable = false}, SHIFT(2731), - [6263] = {.count = 1, .reusable = true}, SHIFT(2731), - [6265] = {.count = 1, .reusable = false}, SHIFT(2732), - [6267] = {.count = 1, .reusable = true}, SHIFT(2732), - [6269] = {.count = 1, .reusable = true}, SHIFT(2734), - [6271] = {.count = 1, .reusable = false}, SHIFT(2735), - [6273] = {.count = 1, .reusable = true}, SHIFT(2735), - [6275] = {.count = 1, .reusable = false}, SHIFT(2736), - [6277] = {.count = 1, .reusable = true}, SHIFT(2736), - [6279] = {.count = 1, .reusable = true}, SHIFT(2738), - [6281] = {.count = 1, .reusable = true}, SHIFT(2739), - [6283] = {.count = 1, .reusable = true}, SHIFT(2740), - [6285] = {.count = 1, .reusable = false}, SHIFT(2741), - [6287] = {.count = 1, .reusable = true}, SHIFT(2742), - [6289] = {.count = 1, .reusable = true}, SHIFT(2744), - [6291] = {.count = 1, .reusable = true}, SHIFT(2745), - [6293] = {.count = 1, .reusable = false}, SHIFT(2746), - [6295] = {.count = 1, .reusable = true}, SHIFT(2746), - [6297] = {.count = 1, .reusable = true}, SHIFT(2747), - [6299] = {.count = 1, .reusable = false}, SHIFT(2748), - [6301] = {.count = 1, .reusable = true}, SHIFT(2748), - [6303] = {.count = 1, .reusable = true}, SHIFT(2749), - [6305] = {.count = 1, .reusable = false}, SHIFT(2750), - [6307] = {.count = 1, .reusable = true}, SHIFT(2750), - [6309] = {.count = 1, .reusable = true}, SHIFT(2751), - [6311] = {.count = 1, .reusable = false}, SHIFT(2752), - [6313] = {.count = 1, .reusable = true}, SHIFT(2752), - [6315] = {.count = 1, .reusable = false}, SHIFT(2753), - [6317] = {.count = 1, .reusable = true}, SHIFT(2753), - [6319] = {.count = 1, .reusable = true}, SHIFT(2754), - [6321] = {.count = 1, .reusable = false}, SHIFT(2755), - [6323] = {.count = 1, .reusable = true}, SHIFT(2755), - [6325] = {.count = 1, .reusable = true}, SHIFT(2756), - [6327] = {.count = 1, .reusable = true}, SHIFT(2757), - [6329] = {.count = 1, .reusable = false}, SHIFT(2758), - [6331] = {.count = 1, .reusable = true}, SHIFT(2759), - [6333] = {.count = 1, .reusable = true}, SHIFT(2761), - [6335] = {.count = 1, .reusable = true}, SHIFT(2762), - [6337] = {.count = 1, .reusable = false}, SHIFT(2763), - [6339] = {.count = 1, .reusable = true}, SHIFT(2763), - [6341] = {.count = 1, .reusable = true}, SHIFT(2764), - [6343] = {.count = 1, .reusable = false}, SHIFT(2765), - [6345] = {.count = 1, .reusable = true}, SHIFT(2765), - [6347] = {.count = 1, .reusable = true}, SHIFT(2766), - [6349] = {.count = 1, .reusable = false}, SHIFT(2767), - [6351] = {.count = 1, .reusable = true}, SHIFT(2767), - [6353] = {.count = 1, .reusable = true}, SHIFT(2768), - [6355] = {.count = 1, .reusable = false}, SHIFT(2769), - [6357] = {.count = 1, .reusable = true}, SHIFT(2769), - [6359] = {.count = 1, .reusable = false}, SHIFT(2770), - [6361] = {.count = 1, .reusable = true}, SHIFT(2770), - [6363] = {.count = 1, .reusable = true}, SHIFT(2771), - [6365] = {.count = 1, .reusable = false}, SHIFT(2772), - [6367] = {.count = 1, .reusable = true}, SHIFT(2772), - [6369] = {.count = 1, .reusable = true}, SHIFT(2773), - [6371] = {.count = 1, .reusable = true}, SHIFT(2774), - [6373] = {.count = 1, .reusable = true}, SHIFT(2775), - [6375] = {.count = 1, .reusable = false}, SHIFT(2776), - [6377] = {.count = 1, .reusable = true}, SHIFT(2776), - [6379] = {.count = 1, .reusable = false}, SHIFT(2777), - [6381] = {.count = 1, .reusable = true}, SHIFT(2777), - [6383] = {.count = 1, .reusable = true}, SHIFT(2778), - [6385] = {.count = 1, .reusable = true}, SHIFT(2779), - [6387] = {.count = 1, .reusable = true}, SHIFT(2780), - [6389] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2540), - [6392] = {.count = 1, .reusable = false}, SHIFT(2781), - [6394] = {.count = 1, .reusable = true}, SHIFT(2782), - [6396] = {.count = 1, .reusable = false}, SHIFT(2783), - [6398] = {.count = 1, .reusable = true}, SHIFT(2784), - [6400] = {.count = 1, .reusable = true}, SHIFT(2786), - [6402] = {.count = 1, .reusable = true}, SHIFT(2787), - [6404] = {.count = 1, .reusable = false}, SHIFT(2789), - [6406] = {.count = 1, .reusable = true}, SHIFT(2789), - [6408] = {.count = 1, .reusable = true}, SHIFT(2788), - [6410] = {.count = 1, .reusable = false}, SHIFT(2791), - [6412] = {.count = 1, .reusable = true}, SHIFT(2791), - [6414] = {.count = 1, .reusable = true}, SHIFT(2790), - [6416] = {.count = 1, .reusable = true}, SHIFT(2792), - [6418] = {.count = 1, .reusable = true}, SHIFT(2793), - [6420] = {.count = 1, .reusable = false}, SHIFT(2794), - [6422] = {.count = 1, .reusable = true}, SHIFT(2794), - [6424] = {.count = 1, .reusable = true}, SHIFT(2795), - [6426] = {.count = 1, .reusable = true}, SHIFT(2796), - [6428] = {.count = 1, .reusable = false}, SHIFT(2797), - [6430] = {.count = 1, .reusable = true}, SHIFT(2797), - [6432] = {.count = 1, .reusable = false}, SHIFT(2798), - [6434] = {.count = 1, .reusable = true}, SHIFT(2798), - [6436] = {.count = 1, .reusable = false}, SHIFT(2800), - [6438] = {.count = 1, .reusable = true}, SHIFT(2800), - [6440] = {.count = 1, .reusable = false}, SHIFT(2801), - [6442] = {.count = 1, .reusable = true}, SHIFT(2801), - [6444] = {.count = 1, .reusable = true}, SHIFT(2803), - [6446] = {.count = 1, .reusable = false}, SHIFT(2804), - [6448] = {.count = 1, .reusable = true}, SHIFT(2804), - [6450] = {.count = 1, .reusable = false}, SHIFT(2805), - [6452] = {.count = 1, .reusable = true}, SHIFT(2805), - [6454] = {.count = 1, .reusable = true}, SHIFT(2807), - [6456] = {.count = 1, .reusable = true}, SHIFT(2808), - [6458] = {.count = 1, .reusable = true}, SHIFT(2809), - [6460] = {.count = 1, .reusable = true}, SHIFT(2810), - [6462] = {.count = 1, .reusable = false}, SHIFT(2811), - [6464] = {.count = 1, .reusable = true}, SHIFT(2812), - [6466] = {.count = 1, .reusable = true}, SHIFT(2814), - [6468] = {.count = 1, .reusable = true}, SHIFT(2815), - [6470] = {.count = 1, .reusable = false}, SHIFT(2816), - [6472] = {.count = 1, .reusable = true}, SHIFT(2816), - [6474] = {.count = 1, .reusable = true}, SHIFT(2817), - [6476] = {.count = 1, .reusable = false}, SHIFT(2818), - [6478] = {.count = 1, .reusable = true}, SHIFT(2818), - [6480] = {.count = 1, .reusable = true}, SHIFT(2819), - [6482] = {.count = 1, .reusable = false}, SHIFT(2820), - [6484] = {.count = 1, .reusable = true}, SHIFT(2820), - [6486] = {.count = 1, .reusable = true}, SHIFT(2821), - [6488] = {.count = 1, .reusable = false}, SHIFT(2822), - [6490] = {.count = 1, .reusable = true}, SHIFT(2822), - [6492] = {.count = 1, .reusable = false}, SHIFT(2823), - [6494] = {.count = 1, .reusable = true}, SHIFT(2823), - [6496] = {.count = 1, .reusable = true}, SHIFT(2824), - [6498] = {.count = 1, .reusable = false}, SHIFT(2825), - [6500] = {.count = 1, .reusable = true}, SHIFT(2825), - [6502] = {.count = 1, .reusable = true}, SHIFT(2826), - [6504] = {.count = 1, .reusable = true}, SHIFT(2827), - [6506] = {.count = 1, .reusable = true}, SHIFT(2828), - [6508] = {.count = 1, .reusable = false}, SHIFT(2829), - [6510] = {.count = 1, .reusable = true}, SHIFT(2829), - [6512] = {.count = 1, .reusable = false}, SHIFT(2830), - [6514] = {.count = 1, .reusable = true}, SHIFT(2830), - [6516] = {.count = 1, .reusable = true}, SHIFT(2831), - [6518] = {.count = 1, .reusable = true}, SHIFT(2832), - [6520] = {.count = 1, .reusable = true}, SHIFT(2833), - [6522] = {.count = 1, .reusable = true}, SHIFT(2834), - [6524] = {.count = 1, .reusable = true}, SHIFT(2835), - [6526] = {.count = 1, .reusable = true}, SHIFT(2836), - [6528] = {.count = 1, .reusable = false}, SHIFT(2837), - [6530] = {.count = 1, .reusable = true}, SHIFT(2837), - [6532] = {.count = 1, .reusable = false}, SHIFT(2838), - [6534] = {.count = 1, .reusable = true}, SHIFT(2838), - [6536] = {.count = 1, .reusable = true}, SHIFT(2839), - [6538] = {.count = 1, .reusable = true}, SHIFT(2840), - [6540] = {.count = 1, .reusable = true}, SHIFT(2841), - [6542] = {.count = 1, .reusable = true}, SHIFT(2842), - [6544] = {.count = 1, .reusable = true}, SHIFT(2843), - [6546] = {.count = 1, .reusable = true}, SHIFT(2844), - [6548] = {.count = 1, .reusable = true}, SHIFT(2845), - [6550] = {.count = 1, .reusable = false}, SHIFT(2846), - [6552] = {.count = 1, .reusable = true}, SHIFT(2847), - [6554] = {.count = 1, .reusable = true}, SHIFT(2849), - [6556] = {.count = 1, .reusable = true}, SHIFT(2850), - [6558] = {.count = 1, .reusable = false}, SHIFT(2851), - [6560] = {.count = 1, .reusable = true}, SHIFT(2851), - [6562] = {.count = 1, .reusable = true}, SHIFT(2852), - [6564] = {.count = 1, .reusable = false}, SHIFT(2853), - [6566] = {.count = 1, .reusable = true}, SHIFT(2853), - [6568] = {.count = 1, .reusable = true}, SHIFT(2854), - [6570] = {.count = 1, .reusable = false}, SHIFT(2855), - [6572] = {.count = 1, .reusable = true}, SHIFT(2855), - [6574] = {.count = 1, .reusable = true}, SHIFT(2856), - [6576] = {.count = 1, .reusable = false}, SHIFT(2857), - [6578] = {.count = 1, .reusable = true}, SHIFT(2857), - [6580] = {.count = 1, .reusable = false}, SHIFT(2858), - [6582] = {.count = 1, .reusable = true}, SHIFT(2858), - [6584] = {.count = 1, .reusable = true}, SHIFT(2859), - [6586] = {.count = 1, .reusable = false}, SHIFT(2860), - [6588] = {.count = 1, .reusable = true}, SHIFT(2860), - [6590] = {.count = 1, .reusable = true}, SHIFT(2861), - [6592] = {.count = 1, .reusable = true}, SHIFT(2862), - [6594] = {.count = 1, .reusable = true}, SHIFT(2863), - [6596] = {.count = 1, .reusable = false}, SHIFT(2864), - [6598] = {.count = 1, .reusable = true}, SHIFT(2864), - [6600] = {.count = 1, .reusable = false}, SHIFT(2865), - [6602] = {.count = 1, .reusable = true}, SHIFT(2865), - [6604] = {.count = 1, .reusable = true}, SHIFT(2866), - [6606] = {.count = 1, .reusable = true}, SHIFT(2867), - [6608] = {.count = 1, .reusable = true}, SHIFT(2868), - [6610] = {.count = 1, .reusable = true}, SHIFT(2869), - [6612] = {.count = 1, .reusable = true}, SHIFT(2870), - [6614] = {.count = 1, .reusable = true}, SHIFT(2871), - [6616] = {.count = 1, .reusable = true}, SHIFT(2872), - [6618] = {.count = 1, .reusable = true}, SHIFT(2873), - [6620] = {.count = 1, .reusable = true}, SHIFT(2874), - [6622] = {.count = 1, .reusable = true}, SHIFT(2875), - [6624] = {.count = 1, .reusable = false}, SHIFT(2876), - [6626] = {.count = 1, .reusable = true}, SHIFT(2876), - [6628] = {.count = 1, .reusable = false}, SHIFT(2877), - [6630] = {.count = 1, .reusable = true}, SHIFT(2877), - [6632] = {.count = 1, .reusable = true}, SHIFT(2878), - [6634] = {.count = 1, .reusable = true}, SHIFT(2879), - [6636] = {.count = 1, .reusable = true}, SHIFT(2880), - [6638] = {.count = 1, .reusable = true}, SHIFT(2881), - [6640] = {.count = 1, .reusable = true}, SHIFT(2882), - [6642] = {.count = 1, .reusable = true}, SHIFT(2883), - [6644] = {.count = 1, .reusable = true}, SHIFT(2884), + [3981] = {.count = 1, .reusable = true}, SHIFT(1749), + [3983] = {.count = 1, .reusable = true}, SHIFT(1748), + [3985] = {.count = 1, .reusable = false}, SHIFT(1751), + [3987] = {.count = 1, .reusable = true}, SHIFT(1751), + [3989] = {.count = 1, .reusable = true}, SHIFT(1750), + [3991] = {.count = 1, .reusable = true}, SHIFT(1752), + [3993] = {.count = 1, .reusable = true}, SHIFT(1753), + [3995] = {.count = 1, .reusable = false}, SHIFT(1754), + [3997] = {.count = 1, .reusable = true}, SHIFT(1754), + [3999] = {.count = 1, .reusable = true}, SHIFT(1755), + [4001] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), + [4003] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), + [4005] = {.count = 1, .reusable = true}, SHIFT(1756), + [4007] = {.count = 1, .reusable = true}, SHIFT(1757), + [4009] = {.count = 1, .reusable = true}, SHIFT(1758), + [4011] = {.count = 1, .reusable = true}, SHIFT(1759), + [4013] = {.count = 1, .reusable = true}, SHIFT(1760), + [4015] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), + [4017] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), + [4019] = {.count = 1, .reusable = true}, SHIFT(1761), + [4021] = {.count = 1, .reusable = true}, SHIFT(1762), + [4023] = {.count = 1, .reusable = false}, SHIFT(1764), + [4025] = {.count = 1, .reusable = false}, SHIFT(1765), + [4027] = {.count = 1, .reusable = true}, SHIFT(1767), + [4029] = {.count = 1, .reusable = true}, SHIFT(1768), + [4031] = {.count = 1, .reusable = false}, SHIFT(1769), + [4033] = {.count = 1, .reusable = true}, SHIFT(1769), + [4035] = {.count = 1, .reusable = true}, SHIFT(1770), + [4037] = {.count = 1, .reusable = true}, SHIFT(1771), + [4039] = {.count = 1, .reusable = true}, SHIFT(1772), + [4041] = {.count = 1, .reusable = true}, SHIFT(1773), + [4043] = {.count = 1, .reusable = false}, SHIFT(1774), + [4045] = {.count = 1, .reusable = true}, SHIFT(1774), + [4047] = {.count = 1, .reusable = false}, SHIFT(1778), + [4049] = {.count = 1, .reusable = true}, SHIFT(1779), + [4051] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [4053] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [4055] = {.count = 1, .reusable = true}, SHIFT(1781), + [4057] = {.count = 1, .reusable = true}, SHIFT(1782), + [4059] = {.count = 1, .reusable = false}, SHIFT(1783), + [4061] = {.count = 1, .reusable = true}, SHIFT(1783), + [4063] = {.count = 1, .reusable = true}, SHIFT(1784), + [4065] = {.count = 1, .reusable = false}, SHIFT(1785), + [4067] = {.count = 1, .reusable = true}, SHIFT(1785), + [4069] = {.count = 1, .reusable = true}, SHIFT(1786), + [4071] = {.count = 1, .reusable = false}, SHIFT(1788), + [4073] = {.count = 1, .reusable = false}, SHIFT(1789), + [4075] = {.count = 1, .reusable = true}, SHIFT(1790), + [4077] = {.count = 1, .reusable = true}, SHIFT(1791), + [4079] = {.count = 1, .reusable = true}, SHIFT(1792), + [4081] = {.count = 1, .reusable = false}, SHIFT(1793), + [4083] = {.count = 1, .reusable = true}, SHIFT(1793), + [4085] = {.count = 1, .reusable = true}, SHIFT(1794), + [4087] = {.count = 1, .reusable = false}, SHIFT(1796), + [4089] = {.count = 1, .reusable = true}, SHIFT(1796), + [4091] = {.count = 1, .reusable = true}, SHIFT(1795), + [4093] = {.count = 1, .reusable = true}, SHIFT(1797), + [4095] = {.count = 1, .reusable = false}, SHIFT(1799), + [4097] = {.count = 1, .reusable = true}, SHIFT(1799), + [4099] = {.count = 1, .reusable = true}, SHIFT(1798), + [4101] = {.count = 1, .reusable = true}, SHIFT(1800), + [4103] = {.count = 1, .reusable = false}, SHIFT(1801), + [4105] = {.count = 1, .reusable = true}, SHIFT(1801), + [4107] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 3), + [4109] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 3), + [4111] = {.count = 1, .reusable = true}, SHIFT(1802), + [4113] = {.count = 1, .reusable = true}, SHIFT(1803), + [4115] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), + [4117] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1167), + [4120] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(578), + [4123] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(579), + [4126] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(580), + [4129] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(581), + [4132] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1167), + [4135] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(582), + [4138] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(584), + [4141] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(585), + [4144] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(586), + [4147] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(581), + [4150] = {.count = 1, .reusable = true}, SHIFT(1805), + [4152] = {.count = 1, .reusable = true}, SHIFT(1806), + [4154] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(593), + [4157] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(594), + [4160] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(595), + [4163] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1173), + [4166] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(595), + [4169] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(598), + [4172] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(599), + [4175] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1175), + [4178] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(599), + [4181] = {.count = 1, .reusable = true}, SHIFT(1809), + [4183] = {.count = 1, .reusable = true}, SHIFT(1810), + [4185] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(602), + [4188] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(606), + [4191] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(606), + [4194] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(607), + [4197] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(610), + [4200] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(611), + [4203] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(612), + [4206] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(612), + [4209] = {.count = 1, .reusable = false}, SHIFT(1812), + [4211] = {.count = 1, .reusable = true}, SHIFT(1812), + [4213] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), + [4215] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), + [4217] = {.count = 1, .reusable = true}, SHIFT(1813), + [4219] = {.count = 1, .reusable = true}, SHIFT(1814), + [4221] = {.count = 1, .reusable = true}, SHIFT(1815), + [4223] = {.count = 1, .reusable = false}, SHIFT(1816), + [4225] = {.count = 1, .reusable = true}, SHIFT(1816), + [4227] = {.count = 1, .reusable = true}, SHIFT(1817), + [4229] = {.count = 1, .reusable = false}, SHIFT(1819), + [4231] = {.count = 1, .reusable = true}, SHIFT(1819), + [4233] = {.count = 1, .reusable = true}, SHIFT(1818), + [4235] = {.count = 1, .reusable = true}, SHIFT(1820), + [4237] = {.count = 1, .reusable = false}, SHIFT(1822), + [4239] = {.count = 1, .reusable = true}, SHIFT(1822), + [4241] = {.count = 1, .reusable = true}, SHIFT(1821), + [4243] = {.count = 1, .reusable = true}, SHIFT(1823), + [4245] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), + [4247] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), + [4249] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1204), + [4252] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [4254] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(620), + [4257] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(621), + [4260] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(622), + [4263] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(623), + [4266] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 4), + [4268] = {.count = 1, .reusable = false}, SHIFT(1825), + [4270] = {.count = 1, .reusable = true}, SHIFT(1825), + [4272] = {.count = 1, .reusable = false}, SHIFT(645), + [4274] = {.count = 1, .reusable = false}, SHIFT(646), + [4276] = {.count = 1, .reusable = false}, SHIFT(647), + [4278] = {.count = 1, .reusable = true}, SHIFT(1830), + [4280] = {.count = 1, .reusable = true}, SHIFT(1831), + [4282] = {.count = 1, .reusable = true}, SHIFT(1832), + [4284] = {.count = 1, .reusable = true}, SHIFT(1833), + [4286] = {.count = 1, .reusable = false}, SHIFT(1834), + [4288] = {.count = 1, .reusable = true}, SHIFT(1834), + [4290] = {.count = 1, .reusable = true}, SHIFT(1837), + [4292] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 4), + [4294] = {.count = 1, .reusable = true}, SHIFT(1838), + [4296] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), + [4298] = {.count = 1, .reusable = true}, SHIFT(1839), + [4300] = {.count = 1, .reusable = false}, SHIFT(1841), + [4302] = {.count = 1, .reusable = false}, SHIFT(1842), + [4304] = {.count = 1, .reusable = true}, SHIFT(1843), + [4306] = {.count = 1, .reusable = true}, SHIFT(1844), + [4308] = {.count = 1, .reusable = true}, SHIFT(1845), + [4310] = {.count = 1, .reusable = false}, SHIFT(1846), + [4312] = {.count = 1, .reusable = true}, SHIFT(1846), + [4314] = {.count = 1, .reusable = true}, SHIFT(1847), + [4316] = {.count = 1, .reusable = false}, SHIFT(1849), + [4318] = {.count = 1, .reusable = true}, SHIFT(1849), + [4320] = {.count = 1, .reusable = true}, SHIFT(1848), + [4322] = {.count = 1, .reusable = true}, SHIFT(1850), + [4324] = {.count = 1, .reusable = false}, SHIFT(1852), + [4326] = {.count = 1, .reusable = true}, SHIFT(1852), + [4328] = {.count = 1, .reusable = true}, SHIFT(1851), + [4330] = {.count = 1, .reusable = true}, SHIFT(1853), + [4332] = {.count = 1, .reusable = true}, SHIFT(1854), + [4334] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), + [4336] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), + [4338] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [4340] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(660), + [4343] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(661), + [4346] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(662), + [4349] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(663), + [4352] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(664), + [4355] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(665), + [4358] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(666), + [4361] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(667), + [4364] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(669), + [4367] = {.count = 1, .reusable = false}, SHIFT(1855), + [4369] = {.count = 1, .reusable = true}, SHIFT(1856), + [4371] = {.count = 1, .reusable = false}, SHIFT(1857), + [4373] = {.count = 1, .reusable = true}, SHIFT(1858), + [4375] = {.count = 1, .reusable = true}, SHIFT(1860), + [4377] = {.count = 1, .reusable = true}, SHIFT(1861), + [4379] = {.count = 1, .reusable = false}, SHIFT(1863), + [4381] = {.count = 1, .reusable = true}, SHIFT(1863), + [4383] = {.count = 1, .reusable = true}, SHIFT(1862), + [4385] = {.count = 1, .reusable = false}, SHIFT(1865), + [4387] = {.count = 1, .reusable = true}, SHIFT(1865), + [4389] = {.count = 1, .reusable = true}, SHIFT(1864), + [4391] = {.count = 1, .reusable = true}, SHIFT(1866), + [4393] = {.count = 1, .reusable = true}, SHIFT(1867), + [4395] = {.count = 1, .reusable = false}, SHIFT(1868), + [4397] = {.count = 1, .reusable = true}, SHIFT(1868), + [4399] = {.count = 1, .reusable = true}, SHIFT(1869), + [4401] = {.count = 1, .reusable = true}, SHIFT(1870), + [4403] = {.count = 1, .reusable = true}, SHIFT(1872), + [4405] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(688), + [4408] = {.count = 1, .reusable = false}, SHIFT(1874), + [4410] = {.count = 1, .reusable = true}, SHIFT(1875), + [4412] = {.count = 1, .reusable = false}, SHIFT(1876), + [4414] = {.count = 1, .reusable = true}, SHIFT(1877), + [4416] = {.count = 1, .reusable = true}, SHIFT(1879), + [4418] = {.count = 1, .reusable = true}, SHIFT(1880), + [4420] = {.count = 1, .reusable = false}, SHIFT(1882), + [4422] = {.count = 1, .reusable = true}, SHIFT(1882), + [4424] = {.count = 1, .reusable = true}, SHIFT(1881), + [4426] = {.count = 1, .reusable = false}, SHIFT(1884), + [4428] = {.count = 1, .reusable = true}, SHIFT(1884), + [4430] = {.count = 1, .reusable = true}, SHIFT(1883), + [4432] = {.count = 1, .reusable = true}, SHIFT(1885), + [4434] = {.count = 1, .reusable = true}, SHIFT(1886), + [4436] = {.count = 1, .reusable = false}, SHIFT(1887), + [4438] = {.count = 1, .reusable = true}, SHIFT(1887), + [4440] = {.count = 1, .reusable = true}, SHIFT(1888), + [4442] = {.count = 1, .reusable = false}, SHIFT(1889), + [4444] = {.count = 1, .reusable = true}, SHIFT(1889), + [4446] = {.count = 1, .reusable = true}, SHIFT(1890), + [4448] = {.count = 1, .reusable = false}, SHIFT(1892), + [4450] = {.count = 1, .reusable = false}, SHIFT(1893), + [4452] = {.count = 1, .reusable = true}, SHIFT(1894), + [4454] = {.count = 1, .reusable = true}, SHIFT(1895), + [4456] = {.count = 1, .reusable = true}, SHIFT(1896), + [4458] = {.count = 1, .reusable = false}, SHIFT(1897), + [4460] = {.count = 1, .reusable = true}, SHIFT(1897), + [4462] = {.count = 1, .reusable = true}, SHIFT(1898), + [4464] = {.count = 1, .reusable = false}, SHIFT(1900), + [4466] = {.count = 1, .reusable = true}, SHIFT(1900), + [4468] = {.count = 1, .reusable = true}, SHIFT(1899), + [4470] = {.count = 1, .reusable = true}, SHIFT(1901), + [4472] = {.count = 1, .reusable = false}, SHIFT(1903), + [4474] = {.count = 1, .reusable = true}, SHIFT(1903), + [4476] = {.count = 1, .reusable = true}, SHIFT(1902), + [4478] = {.count = 1, .reusable = true}, SHIFT(1904), + [4480] = {.count = 1, .reusable = true}, SHIFT(1905), + [4482] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [4484] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(707), + [4487] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(708), + [4490] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(709), + [4493] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(710), + [4496] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(711), + [4499] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(712), + [4502] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(713), + [4505] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(714), + [4508] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(710), + [4511] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(719), + [4514] = {.count = 1, .reusable = false}, SHIFT(1907), + [4516] = {.count = 1, .reusable = true}, SHIFT(1908), + [4518] = {.count = 1, .reusable = false}, SHIFT(1909), + [4520] = {.count = 1, .reusable = true}, SHIFT(1910), + [4522] = {.count = 1, .reusable = true}, SHIFT(1912), + [4524] = {.count = 1, .reusable = true}, SHIFT(1913), + [4526] = {.count = 1, .reusable = false}, SHIFT(1915), + [4528] = {.count = 1, .reusable = true}, SHIFT(1915), + [4530] = {.count = 1, .reusable = true}, SHIFT(1914), + [4532] = {.count = 1, .reusable = false}, SHIFT(1917), + [4534] = {.count = 1, .reusable = true}, SHIFT(1917), + [4536] = {.count = 1, .reusable = true}, SHIFT(1916), + [4538] = {.count = 1, .reusable = true}, SHIFT(1918), + [4540] = {.count = 1, .reusable = true}, SHIFT(1919), + [4542] = {.count = 1, .reusable = false}, SHIFT(1920), + [4544] = {.count = 1, .reusable = true}, SHIFT(1920), + [4546] = {.count = 1, .reusable = true}, SHIFT(1921), + [4548] = {.count = 1, .reusable = true}, SHIFT(1922), + [4550] = {.count = 1, .reusable = true}, SHIFT(1923), + [4552] = {.count = 1, .reusable = false}, SHIFT(1924), + [4554] = {.count = 1, .reusable = true}, SHIFT(1925), + [4556] = {.count = 1, .reusable = true}, SHIFT(1927), + [4558] = {.count = 1, .reusable = true}, SHIFT(1928), + [4560] = {.count = 1, .reusable = false}, SHIFT(1929), + [4562] = {.count = 1, .reusable = true}, SHIFT(1929), + [4564] = {.count = 1, .reusable = true}, SHIFT(1930), + [4566] = {.count = 1, .reusable = false}, SHIFT(1931), + [4568] = {.count = 1, .reusable = true}, SHIFT(1931), + [4570] = {.count = 1, .reusable = true}, SHIFT(1932), + [4572] = {.count = 1, .reusable = false}, SHIFT(1933), + [4574] = {.count = 1, .reusable = true}, SHIFT(1933), + [4576] = {.count = 1, .reusable = true}, SHIFT(1934), + [4578] = {.count = 1, .reusable = true}, SHIFT(1935), + [4580] = {.count = 1, .reusable = false}, SHIFT(1937), + [4582] = {.count = 1, .reusable = false}, SHIFT(1938), + [4584] = {.count = 1, .reusable = true}, SHIFT(1939), + [4586] = {.count = 1, .reusable = true}, SHIFT(1940), + [4588] = {.count = 1, .reusable = true}, SHIFT(1941), + [4590] = {.count = 1, .reusable = false}, SHIFT(1942), + [4592] = {.count = 1, .reusable = true}, SHIFT(1942), + [4594] = {.count = 1, .reusable = true}, SHIFT(1943), + [4596] = {.count = 1, .reusable = false}, SHIFT(1945), + [4598] = {.count = 1, .reusable = true}, SHIFT(1945), + [4600] = {.count = 1, .reusable = true}, SHIFT(1944), + [4602] = {.count = 1, .reusable = true}, SHIFT(1946), + [4604] = {.count = 1, .reusable = false}, SHIFT(1948), + [4606] = {.count = 1, .reusable = true}, SHIFT(1948), + [4608] = {.count = 1, .reusable = true}, SHIFT(1947), + [4610] = {.count = 1, .reusable = true}, SHIFT(1949), + [4612] = {.count = 1, .reusable = true}, SHIFT(1950), + [4614] = {.count = 1, .reusable = true}, SHIFT(1951), + [4616] = {.count = 1, .reusable = false}, SHIFT(1953), + [4618] = {.count = 1, .reusable = true}, SHIFT(1953), + [4620] = {.count = 1, .reusable = false}, SHIFT(1955), + [4622] = {.count = 1, .reusable = true}, SHIFT(1955), + [4624] = {.count = 1, .reusable = true}, SHIFT(1956), + [4626] = {.count = 1, .reusable = true}, SHIFT(1957), + [4628] = {.count = 1, .reusable = false}, SHIFT(1960), + [4630] = {.count = 1, .reusable = false}, SHIFT(1963), + [4632] = {.count = 1, .reusable = true}, SHIFT(1963), + [4634] = {.count = 1, .reusable = false}, SHIFT(1964), + [4636] = {.count = 1, .reusable = false}, SHIFT(1967), + [4638] = {.count = 1, .reusable = true}, SHIFT(1967), + [4640] = {.count = 1, .reusable = true}, SHIFT(1969), + [4642] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(783), + [4645] = {.count = 1, .reusable = false}, SHIFT(1971), + [4647] = {.count = 1, .reusable = true}, SHIFT(1972), + [4649] = {.count = 1, .reusable = false}, SHIFT(1973), + [4651] = {.count = 1, .reusable = true}, SHIFT(1974), + [4653] = {.count = 1, .reusable = true}, SHIFT(1976), + [4655] = {.count = 1, .reusable = true}, SHIFT(1977), + [4657] = {.count = 1, .reusable = false}, SHIFT(1979), + [4659] = {.count = 1, .reusable = true}, SHIFT(1979), + [4661] = {.count = 1, .reusable = true}, SHIFT(1978), + [4663] = {.count = 1, .reusable = false}, SHIFT(1981), + [4665] = {.count = 1, .reusable = true}, SHIFT(1981), + [4667] = {.count = 1, .reusable = true}, SHIFT(1980), + [4669] = {.count = 1, .reusable = true}, SHIFT(1982), + [4671] = {.count = 1, .reusable = true}, SHIFT(1983), + [4673] = {.count = 1, .reusable = false}, SHIFT(1984), + [4675] = {.count = 1, .reusable = true}, SHIFT(1984), + [4677] = {.count = 1, .reusable = true}, SHIFT(1985), + [4679] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(799), + [4682] = {.count = 1, .reusable = false}, SHIFT(1986), + [4684] = {.count = 1, .reusable = true}, SHIFT(1987), + [4686] = {.count = 1, .reusable = false}, SHIFT(1988), + [4688] = {.count = 1, .reusable = true}, SHIFT(1989), + [4690] = {.count = 1, .reusable = true}, SHIFT(1991), + [4692] = {.count = 1, .reusable = true}, SHIFT(1992), + [4694] = {.count = 1, .reusable = false}, SHIFT(1994), + [4696] = {.count = 1, .reusable = true}, SHIFT(1994), + [4698] = {.count = 1, .reusable = true}, SHIFT(1993), + [4700] = {.count = 1, .reusable = false}, SHIFT(1996), + [4702] = {.count = 1, .reusable = true}, SHIFT(1996), + [4704] = {.count = 1, .reusable = true}, SHIFT(1995), + [4706] = {.count = 1, .reusable = true}, SHIFT(1997), + [4708] = {.count = 1, .reusable = true}, SHIFT(1998), + [4710] = {.count = 1, .reusable = false}, SHIFT(1999), + [4712] = {.count = 1, .reusable = true}, SHIFT(1999), + [4714] = {.count = 1, .reusable = true}, SHIFT(2000), + [4716] = {.count = 1, .reusable = true}, SHIFT(2001), + [4718] = {.count = 1, .reusable = true}, SHIFT(2002), + [4720] = {.count = 1, .reusable = false}, SHIFT(2003), + [4722] = {.count = 1, .reusable = true}, SHIFT(2004), + [4724] = {.count = 1, .reusable = true}, SHIFT(2006), + [4726] = {.count = 1, .reusable = true}, SHIFT(2007), + [4728] = {.count = 1, .reusable = false}, SHIFT(2008), + [4730] = {.count = 1, .reusable = true}, SHIFT(2008), + [4732] = {.count = 1, .reusable = true}, SHIFT(2009), + [4734] = {.count = 1, .reusable = false}, SHIFT(2010), + [4736] = {.count = 1, .reusable = true}, SHIFT(2010), + [4738] = {.count = 1, .reusable = true}, SHIFT(2011), + [4740] = {.count = 1, .reusable = false}, SHIFT(2012), + [4742] = {.count = 1, .reusable = true}, SHIFT(2012), + [4744] = {.count = 1, .reusable = true}, SHIFT(2013), + [4746] = {.count = 1, .reusable = true}, SHIFT(2014), + [4748] = {.count = 1, .reusable = true}, SHIFT(2015), + [4750] = {.count = 1, .reusable = true}, SHIFT(2016), + [4752] = {.count = 1, .reusable = false}, SHIFT(2017), + [4754] = {.count = 1, .reusable = true}, SHIFT(2018), + [4756] = {.count = 1, .reusable = true}, SHIFT(2019), + [4758] = {.count = 1, .reusable = true}, SHIFT(2020), + [4760] = {.count = 1, .reusable = true}, SHIFT(2021), + [4762] = {.count = 1, .reusable = true}, SHIFT(2022), + [4764] = {.count = 1, .reusable = true}, SHIFT(2023), + [4766] = {.count = 1, .reusable = true}, SHIFT(2024), + [4768] = {.count = 1, .reusable = false}, SHIFT(2026), + [4770] = {.count = 1, .reusable = false}, SHIFT(2027), + [4772] = {.count = 1, .reusable = true}, SHIFT(2029), + [4774] = {.count = 1, .reusable = true}, SHIFT(2030), + [4776] = {.count = 1, .reusable = false}, SHIFT(2031), + [4778] = {.count = 1, .reusable = true}, SHIFT(2031), + [4780] = {.count = 1, .reusable = true}, SHIFT(2032), + [4782] = {.count = 1, .reusable = true}, SHIFT(2033), + [4784] = {.count = 1, .reusable = true}, SHIFT(2034), + [4786] = {.count = 1, .reusable = false}, SHIFT(2035), + [4788] = {.count = 1, .reusable = true}, SHIFT(2035), + [4790] = {.count = 1, .reusable = false}, SHIFT(2039), + [4792] = {.count = 1, .reusable = true}, SHIFT(2040), + [4794] = {.count = 1, .reusable = false}, SHIFT(2042), + [4796] = {.count = 1, .reusable = false}, SHIFT(2043), + [4798] = {.count = 1, .reusable = true}, SHIFT(2045), + [4800] = {.count = 1, .reusable = true}, SHIFT(2046), + [4802] = {.count = 1, .reusable = false}, SHIFT(2047), + [4804] = {.count = 1, .reusable = true}, SHIFT(2047), + [4806] = {.count = 1, .reusable = true}, SHIFT(2048), + [4808] = {.count = 1, .reusable = true}, SHIFT(2049), + [4810] = {.count = 1, .reusable = true}, SHIFT(2050), + [4812] = {.count = 1, .reusable = false}, SHIFT(2051), + [4814] = {.count = 1, .reusable = true}, SHIFT(2051), + [4816] = {.count = 1, .reusable = false}, SHIFT(2055), + [4818] = {.count = 1, .reusable = true}, SHIFT(2056), + [4820] = {.count = 1, .reusable = false}, SHIFT(2058), + [4822] = {.count = 1, .reusable = false}, SHIFT(2059), + [4824] = {.count = 1, .reusable = true}, SHIFT(2060), + [4826] = {.count = 1, .reusable = true}, SHIFT(2061), + [4828] = {.count = 1, .reusable = true}, SHIFT(2062), + [4830] = {.count = 1, .reusable = false}, SHIFT(2063), + [4832] = {.count = 1, .reusable = true}, SHIFT(2063), + [4834] = {.count = 1, .reusable = true}, SHIFT(2064), + [4836] = {.count = 1, .reusable = false}, SHIFT(2066), + [4838] = {.count = 1, .reusable = true}, SHIFT(2066), + [4840] = {.count = 1, .reusable = true}, SHIFT(2065), + [4842] = {.count = 1, .reusable = true}, SHIFT(2067), + [4844] = {.count = 1, .reusable = false}, SHIFT(2069), + [4846] = {.count = 1, .reusable = true}, SHIFT(2069), + [4848] = {.count = 1, .reusable = true}, SHIFT(2068), + [4850] = {.count = 1, .reusable = true}, SHIFT(2070), + [4852] = {.count = 1, .reusable = true}, SHIFT(2071), + [4854] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), + [4856] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), + [4858] = {.count = 1, .reusable = false}, SHIFT(2072), + [4860] = {.count = 1, .reusable = true}, SHIFT(2072), + [4862] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 2), + [4864] = {.count = 1, .reusable = true}, SHIFT(2077), + [4866] = {.count = 1, .reusable = true}, SHIFT(2078), + [4868] = {.count = 1, .reusable = false}, SHIFT(2079), + [4870] = {.count = 1, .reusable = true}, SHIFT(2080), + [4872] = {.count = 1, .reusable = true}, SHIFT(2081), + [4874] = {.count = 1, .reusable = true}, SHIFT(2082), + [4876] = {.count = 1, .reusable = true}, SHIFT(2083), + [4878] = {.count = 1, .reusable = true}, SHIFT(2084), + [4880] = {.count = 1, .reusable = true}, SHIFT(2085), + [4882] = {.count = 1, .reusable = true}, SHIFT(2086), + [4884] = {.count = 1, .reusable = false}, SHIFT(2087), + [4886] = {.count = 1, .reusable = true}, SHIFT(2087), + [4888] = {.count = 1, .reusable = true}, SHIFT(2089), + [4890] = {.count = 1, .reusable = true}, SHIFT(2090), + [4892] = {.count = 1, .reusable = true}, SHIFT(2091), + [4894] = {.count = 1, .reusable = false}, SHIFT(2093), + [4896] = {.count = 1, .reusable = true}, SHIFT(2093), + [4898] = {.count = 1, .reusable = true}, SHIFT(2097), + [4900] = {.count = 1, .reusable = true}, SHIFT(2098), + [4902] = {.count = 1, .reusable = true}, SHIFT(2099), + [4904] = {.count = 1, .reusable = true}, SHIFT(2100), + [4906] = {.count = 1, .reusable = false}, SHIFT(2101), + [4908] = {.count = 1, .reusable = true}, SHIFT(2102), + [4910] = {.count = 1, .reusable = true}, SHIFT(2103), + [4912] = {.count = 1, .reusable = true}, SHIFT(2104), + [4914] = {.count = 1, .reusable = true}, SHIFT(2105), + [4916] = {.count = 1, .reusable = true}, SHIFT(2106), + [4918] = {.count = 1, .reusable = true}, SHIFT(2107), + [4920] = {.count = 1, .reusable = true}, SHIFT(2108), + [4922] = {.count = 1, .reusable = true}, SHIFT(2109), + [4924] = {.count = 1, .reusable = true}, SHIFT(2110), + [4926] = {.count = 1, .reusable = true}, SHIFT(2111), + [4928] = {.count = 1, .reusable = false}, SHIFT(2112), + [4930] = {.count = 1, .reusable = true}, SHIFT(2113), + [4932] = {.count = 1, .reusable = true}, SHIFT(2114), + [4934] = {.count = 1, .reusable = true}, SHIFT(2115), + [4936] = {.count = 1, .reusable = true}, SHIFT(2116), + [4938] = {.count = 1, .reusable = true}, SHIFT(2117), + [4940] = {.count = 1, .reusable = false}, SHIFT(2119), + [4942] = {.count = 1, .reusable = false}, SHIFT(2113), + [4944] = {.count = 1, .reusable = true}, SHIFT(2120), + [4946] = {.count = 1, .reusable = true}, SHIFT(2121), + [4948] = {.count = 1, .reusable = false}, SHIFT(2122), + [4950] = {.count = 1, .reusable = true}, SHIFT(2123), + [4952] = {.count = 1, .reusable = true}, SHIFT(2124), + [4954] = {.count = 1, .reusable = true}, SHIFT(2125), + [4956] = {.count = 1, .reusable = true}, SHIFT(2126), + [4958] = {.count = 1, .reusable = true}, SHIFT(2127), + [4960] = {.count = 1, .reusable = false}, SHIFT(2128), + [4962] = {.count = 1, .reusable = false}, SHIFT(2123), + [4964] = {.count = 1, .reusable = true}, SHIFT(2129), + [4966] = {.count = 1, .reusable = false}, SHIFT(2131), + [4968] = {.count = 1, .reusable = false}, SHIFT(2132), + [4970] = {.count = 1, .reusable = true}, SHIFT(2134), + [4972] = {.count = 1, .reusable = true}, SHIFT(2135), + [4974] = {.count = 1, .reusable = false}, SHIFT(2136), + [4976] = {.count = 1, .reusable = true}, SHIFT(2136), + [4978] = {.count = 1, .reusable = true}, SHIFT(2137), + [4980] = {.count = 1, .reusable = true}, SHIFT(2138), + [4982] = {.count = 1, .reusable = true}, SHIFT(2139), + [4984] = {.count = 1, .reusable = false}, SHIFT(2140), + [4986] = {.count = 1, .reusable = true}, SHIFT(2140), + [4988] = {.count = 1, .reusable = true}, REDUCE(sym_else_clause, 2), + [4990] = {.count = 1, .reusable = true}, SHIFT(2144), + [4992] = {.count = 1, .reusable = false}, SHIFT(2145), + [4994] = {.count = 1, .reusable = false}, SHIFT(2146), + [4996] = {.count = 1, .reusable = true}, SHIFT(2145), + [4998] = {.count = 1, .reusable = true}, SHIFT(2146), + [5000] = {.count = 1, .reusable = true}, SHIFT(2147), + [5002] = {.count = 1, .reusable = false}, SHIFT(2148), + [5004] = {.count = 1, .reusable = true}, SHIFT(2148), + [5006] = {.count = 1, .reusable = true}, SHIFT(2149), + [5008] = {.count = 1, .reusable = false}, SHIFT(2152), + [5010] = {.count = 1, .reusable = true}, SHIFT(2153), + [5012] = {.count = 1, .reusable = true}, SHIFT(2154), + [5014] = {.count = 1, .reusable = false}, SHIFT(2154), + [5016] = {.count = 1, .reusable = true}, SHIFT(1481), + [5018] = {.count = 1, .reusable = true}, SHIFT(2159), + [5020] = {.count = 1, .reusable = true}, SHIFT(2160), + [5022] = {.count = 1, .reusable = false}, SHIFT(2162), + [5024] = {.count = 1, .reusable = false}, SHIFT(2163), + [5026] = {.count = 1, .reusable = true}, SHIFT(2165), + [5028] = {.count = 1, .reusable = true}, SHIFT(2166), + [5030] = {.count = 1, .reusable = false}, SHIFT(2167), + [5032] = {.count = 1, .reusable = true}, SHIFT(2167), + [5034] = {.count = 1, .reusable = true}, SHIFT(2168), + [5036] = {.count = 1, .reusable = true}, SHIFT(2169), + [5038] = {.count = 1, .reusable = true}, SHIFT(2170), + [5040] = {.count = 1, .reusable = false}, SHIFT(2171), + [5042] = {.count = 1, .reusable = true}, SHIFT(2171), + [5044] = {.count = 1, .reusable = false}, SHIFT(2175), + [5046] = {.count = 1, .reusable = true}, SHIFT(2176), + [5048] = {.count = 1, .reusable = false}, SHIFT(2178), + [5050] = {.count = 1, .reusable = false}, SHIFT(2179), + [5052] = {.count = 1, .reusable = true}, SHIFT(2181), + [5054] = {.count = 1, .reusable = true}, SHIFT(2182), + [5056] = {.count = 1, .reusable = false}, SHIFT(2183), + [5058] = {.count = 1, .reusable = true}, SHIFT(2183), + [5060] = {.count = 1, .reusable = true}, SHIFT(2184), + [5062] = {.count = 1, .reusable = true}, SHIFT(2185), + [5064] = {.count = 1, .reusable = true}, SHIFT(2186), + [5066] = {.count = 1, .reusable = false}, SHIFT(2187), + [5068] = {.count = 1, .reusable = true}, SHIFT(2187), + [5070] = {.count = 1, .reusable = false}, SHIFT(2191), + [5072] = {.count = 1, .reusable = true}, SHIFT(2192), + [5074] = {.count = 1, .reusable = false}, SHIFT(2194), + [5076] = {.count = 1, .reusable = false}, SHIFT(2195), + [5078] = {.count = 1, .reusable = true}, SHIFT(2196), + [5080] = {.count = 1, .reusable = true}, SHIFT(2197), + [5082] = {.count = 1, .reusable = true}, SHIFT(2198), + [5084] = {.count = 1, .reusable = false}, SHIFT(2199), + [5086] = {.count = 1, .reusable = true}, SHIFT(2199), + [5088] = {.count = 1, .reusable = true}, SHIFT(2200), + [5090] = {.count = 1, .reusable = false}, SHIFT(2202), + [5092] = {.count = 1, .reusable = true}, SHIFT(2202), + [5094] = {.count = 1, .reusable = true}, SHIFT(2201), + [5096] = {.count = 1, .reusable = true}, SHIFT(2203), + [5098] = {.count = 1, .reusable = false}, SHIFT(2205), + [5100] = {.count = 1, .reusable = true}, SHIFT(2205), + [5102] = {.count = 1, .reusable = true}, SHIFT(2204), + [5104] = {.count = 1, .reusable = true}, SHIFT(2206), + [5106] = {.count = 1, .reusable = true}, SHIFT(2207), + [5108] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [5110] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [5112] = {.count = 1, .reusable = true}, SHIFT(2208), + [5114] = {.count = 1, .reusable = false}, SHIFT(2210), + [5116] = {.count = 1, .reusable = true}, SHIFT(2210), + [5118] = {.count = 1, .reusable = true}, SHIFT(2215), + [5120] = {.count = 1, .reusable = true}, SHIFT(2216), + [5122] = {.count = 1, .reusable = true}, SHIFT(2217), + [5124] = {.count = 1, .reusable = true}, SHIFT(2218), + [5126] = {.count = 1, .reusable = false}, SHIFT(2219), + [5128] = {.count = 1, .reusable = true}, SHIFT(2219), + [5130] = {.count = 1, .reusable = true}, SHIFT(2221), + [5132] = {.count = 1, .reusable = true}, SHIFT(2222), + [5134] = {.count = 1, .reusable = true}, SHIFT(2223), + [5136] = {.count = 1, .reusable = false}, SHIFT(2225), + [5138] = {.count = 1, .reusable = true}, SHIFT(2225), + [5140] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), + [5142] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(874), + [5145] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 2), + [5147] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 2), + [5149] = {.count = 1, .reusable = true}, SHIFT(2228), + [5151] = {.count = 1, .reusable = true}, SHIFT(2229), + [5153] = {.count = 1, .reusable = true}, SHIFT(2232), + [5155] = {.count = 1, .reusable = true}, SHIFT(2234), + [5157] = {.count = 1, .reusable = false}, SHIFT(2234), + [5159] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), + [5161] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), + [5163] = {.count = 1, .reusable = true}, SHIFT(2238), + [5165] = {.count = 1, .reusable = false}, SHIFT(2238), + [5167] = {.count = 1, .reusable = true}, SHIFT(2241), + [5169] = {.count = 1, .reusable = true}, SHIFT(2242), + [5171] = {.count = 1, .reusable = false}, SHIFT(2243), + [5173] = {.count = 1, .reusable = true}, SHIFT(2244), + [5175] = {.count = 1, .reusable = true}, SHIFT(2246), + [5177] = {.count = 1, .reusable = true}, SHIFT(2247), + [5179] = {.count = 1, .reusable = false}, SHIFT(2248), + [5181] = {.count = 1, .reusable = true}, SHIFT(2248), + [5183] = {.count = 1, .reusable = true}, SHIFT(2249), + [5185] = {.count = 1, .reusable = false}, SHIFT(2250), + [5187] = {.count = 1, .reusable = true}, SHIFT(2250), + [5189] = {.count = 1, .reusable = true}, SHIFT(2251), + [5191] = {.count = 1, .reusable = false}, SHIFT(2252), + [5193] = {.count = 1, .reusable = true}, SHIFT(2252), + [5195] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), + [5197] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), + [5199] = {.count = 1, .reusable = true}, SHIFT(2255), + [5201] = {.count = 1, .reusable = true}, SHIFT(2256), + [5203] = {.count = 1, .reusable = false}, SHIFT(2258), + [5205] = {.count = 1, .reusable = false}, SHIFT(2259), + [5207] = {.count = 1, .reusable = true}, SHIFT(2260), + [5209] = {.count = 1, .reusable = true}, SHIFT(2261), + [5211] = {.count = 1, .reusable = true}, SHIFT(2262), + [5213] = {.count = 1, .reusable = false}, SHIFT(2263), + [5215] = {.count = 1, .reusable = true}, SHIFT(2263), + [5217] = {.count = 1, .reusable = true}, SHIFT(2264), + [5219] = {.count = 1, .reusable = false}, SHIFT(2266), + [5221] = {.count = 1, .reusable = true}, SHIFT(2266), + [5223] = {.count = 1, .reusable = true}, SHIFT(2265), + [5225] = {.count = 1, .reusable = true}, SHIFT(2267), + [5227] = {.count = 1, .reusable = false}, SHIFT(2269), + [5229] = {.count = 1, .reusable = true}, SHIFT(2269), + [5231] = {.count = 1, .reusable = true}, SHIFT(2268), + [5233] = {.count = 1, .reusable = true}, SHIFT(2270), + [5235] = {.count = 1, .reusable = true}, SHIFT(2271), + [5237] = {.count = 1, .reusable = true}, SHIFT(2272), + [5239] = {.count = 1, .reusable = false}, SHIFT(2274), + [5241] = {.count = 1, .reusable = true}, SHIFT(2274), + [5243] = {.count = 1, .reusable = false}, SHIFT(2276), + [5245] = {.count = 1, .reusable = true}, SHIFT(2276), + [5247] = {.count = 1, .reusable = true}, SHIFT(2277), + [5249] = {.count = 1, .reusable = true}, SHIFT(2278), + [5251] = {.count = 1, .reusable = false}, SHIFT(2281), + [5253] = {.count = 1, .reusable = false}, SHIFT(2284), + [5255] = {.count = 1, .reusable = true}, SHIFT(2284), + [5257] = {.count = 1, .reusable = false}, SHIFT(2285), + [5259] = {.count = 1, .reusable = false}, SHIFT(2288), + [5261] = {.count = 1, .reusable = true}, SHIFT(2288), + [5263] = {.count = 1, .reusable = true}, SHIFT(2290), + [5265] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(968), + [5268] = {.count = 1, .reusable = false}, SHIFT(2292), + [5270] = {.count = 1, .reusable = true}, SHIFT(2293), + [5272] = {.count = 1, .reusable = false}, SHIFT(2294), + [5274] = {.count = 1, .reusable = true}, SHIFT(2295), + [5276] = {.count = 1, .reusable = true}, SHIFT(2297), + [5278] = {.count = 1, .reusable = true}, SHIFT(2298), + [5280] = {.count = 1, .reusable = false}, SHIFT(2300), + [5282] = {.count = 1, .reusable = true}, SHIFT(2300), + [5284] = {.count = 1, .reusable = true}, SHIFT(2299), + [5286] = {.count = 1, .reusable = false}, SHIFT(2302), + [5288] = {.count = 1, .reusable = true}, SHIFT(2302), + [5290] = {.count = 1, .reusable = true}, SHIFT(2301), + [5292] = {.count = 1, .reusable = true}, SHIFT(2303), + [5294] = {.count = 1, .reusable = true}, SHIFT(2304), + [5296] = {.count = 1, .reusable = false}, SHIFT(2305), + [5298] = {.count = 1, .reusable = true}, SHIFT(2305), + [5300] = {.count = 1, .reusable = true}, SHIFT(2306), + [5302] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(984), + [5305] = {.count = 1, .reusable = false}, SHIFT(2307), + [5307] = {.count = 1, .reusable = true}, SHIFT(2308), + [5309] = {.count = 1, .reusable = false}, SHIFT(2309), + [5311] = {.count = 1, .reusable = true}, SHIFT(2310), + [5313] = {.count = 1, .reusable = true}, SHIFT(2312), + [5315] = {.count = 1, .reusable = true}, SHIFT(2313), + [5317] = {.count = 1, .reusable = false}, SHIFT(2315), + [5319] = {.count = 1, .reusable = true}, SHIFT(2315), + [5321] = {.count = 1, .reusable = true}, SHIFT(2314), + [5323] = {.count = 1, .reusable = false}, SHIFT(2317), + [5325] = {.count = 1, .reusable = true}, SHIFT(2317), + [5327] = {.count = 1, .reusable = true}, SHIFT(2316), + [5329] = {.count = 1, .reusable = true}, SHIFT(2318), + [5331] = {.count = 1, .reusable = true}, SHIFT(2319), + [5333] = {.count = 1, .reusable = false}, SHIFT(2320), + [5335] = {.count = 1, .reusable = true}, SHIFT(2320), + [5337] = {.count = 1, .reusable = true}, SHIFT(2321), + [5339] = {.count = 1, .reusable = true}, SHIFT(2322), + [5341] = {.count = 1, .reusable = true}, SHIFT(2323), + [5343] = {.count = 1, .reusable = false}, SHIFT(2324), + [5345] = {.count = 1, .reusable = true}, SHIFT(2325), + [5347] = {.count = 1, .reusable = true}, SHIFT(2327), + [5349] = {.count = 1, .reusable = true}, SHIFT(2328), + [5351] = {.count = 1, .reusable = false}, SHIFT(2329), + [5353] = {.count = 1, .reusable = true}, SHIFT(2329), + [5355] = {.count = 1, .reusable = true}, SHIFT(2330), + [5357] = {.count = 1, .reusable = false}, SHIFT(2331), + [5359] = {.count = 1, .reusable = true}, SHIFT(2331), + [5361] = {.count = 1, .reusable = true}, SHIFT(2332), + [5363] = {.count = 1, .reusable = false}, SHIFT(2333), + [5365] = {.count = 1, .reusable = true}, SHIFT(2333), + [5367] = {.count = 1, .reusable = true}, SHIFT(2335), + [5369] = {.count = 1, .reusable = true}, SHIFT(2336), + [5371] = {.count = 1, .reusable = true}, SHIFT(2337), + [5373] = {.count = 1, .reusable = false}, SHIFT(2338), + [5375] = {.count = 1, .reusable = true}, SHIFT(2339), + [5377] = {.count = 1, .reusable = true}, SHIFT(2341), + [5379] = {.count = 1, .reusable = true}, SHIFT(2342), + [5381] = {.count = 1, .reusable = false}, SHIFT(2343), + [5383] = {.count = 1, .reusable = true}, SHIFT(2343), + [5385] = {.count = 1, .reusable = true}, SHIFT(2344), + [5387] = {.count = 1, .reusable = false}, SHIFT(2345), + [5389] = {.count = 1, .reusable = true}, SHIFT(2345), + [5391] = {.count = 1, .reusable = true}, SHIFT(2346), + [5393] = {.count = 1, .reusable = false}, SHIFT(2347), + [5395] = {.count = 1, .reusable = true}, SHIFT(2347), + [5397] = {.count = 1, .reusable = true}, SHIFT(2348), + [5399] = {.count = 1, .reusable = true}, SHIFT(2349), + [5401] = {.count = 1, .reusable = true}, SHIFT(2350), + [5403] = {.count = 1, .reusable = false}, SHIFT(2351), + [5405] = {.count = 1, .reusable = true}, SHIFT(2352), + [5407] = {.count = 1, .reusable = true}, SHIFT(2354), + [5409] = {.count = 1, .reusable = true}, SHIFT(2355), + [5411] = {.count = 1, .reusable = false}, SHIFT(2356), + [5413] = {.count = 1, .reusable = true}, SHIFT(2356), + [5415] = {.count = 1, .reusable = true}, SHIFT(2357), + [5417] = {.count = 1, .reusable = false}, SHIFT(2358), + [5419] = {.count = 1, .reusable = true}, SHIFT(2358), + [5421] = {.count = 1, .reusable = true}, SHIFT(2359), + [5423] = {.count = 1, .reusable = false}, SHIFT(2360), + [5425] = {.count = 1, .reusable = true}, SHIFT(2360), + [5427] = {.count = 1, .reusable = true}, SHIFT(2361), + [5429] = {.count = 1, .reusable = true}, SHIFT(2362), + [5431] = {.count = 1, .reusable = false}, SHIFT(2363), + [5433] = {.count = 1, .reusable = true}, SHIFT(2364), + [5435] = {.count = 1, .reusable = true}, SHIFT(2366), + [5437] = {.count = 1, .reusable = true}, SHIFT(2367), + [5439] = {.count = 1, .reusable = false}, SHIFT(2368), + [5441] = {.count = 1, .reusable = true}, SHIFT(2368), + [5443] = {.count = 1, .reusable = true}, SHIFT(2369), + [5445] = {.count = 1, .reusable = false}, SHIFT(2370), + [5447] = {.count = 1, .reusable = true}, SHIFT(2370), + [5449] = {.count = 1, .reusable = true}, SHIFT(2371), + [5451] = {.count = 1, .reusable = false}, SHIFT(2372), + [5453] = {.count = 1, .reusable = true}, SHIFT(2372), + [5455] = {.count = 1, .reusable = true}, SHIFT(2373), + [5457] = {.count = 1, .reusable = true}, SHIFT(2374), + [5459] = {.count = 1, .reusable = false}, SHIFT(2375), + [5461] = {.count = 1, .reusable = true}, SHIFT(2376), + [5463] = {.count = 1, .reusable = true}, SHIFT(2378), + [5465] = {.count = 1, .reusable = true}, SHIFT(2379), + [5467] = {.count = 1, .reusable = false}, SHIFT(2380), + [5469] = {.count = 1, .reusable = true}, SHIFT(2380), + [5471] = {.count = 1, .reusable = true}, SHIFT(2381), + [5473] = {.count = 1, .reusable = false}, SHIFT(2382), + [5475] = {.count = 1, .reusable = true}, SHIFT(2382), + [5477] = {.count = 1, .reusable = true}, SHIFT(2383), + [5479] = {.count = 1, .reusable = false}, SHIFT(2384), + [5481] = {.count = 1, .reusable = true}, SHIFT(2384), + [5483] = {.count = 1, .reusable = true}, SHIFT(2385), + [5485] = {.count = 1, .reusable = true}, SHIFT(2386), + [5487] = {.count = 1, .reusable = false}, SHIFT(2387), + [5489] = {.count = 1, .reusable = true}, SHIFT(2388), + [5491] = {.count = 1, .reusable = true}, SHIFT(2390), + [5493] = {.count = 1, .reusable = true}, SHIFT(2391), + [5495] = {.count = 1, .reusable = false}, SHIFT(2392), + [5497] = {.count = 1, .reusable = true}, SHIFT(2392), + [5499] = {.count = 1, .reusable = true}, SHIFT(2393), + [5501] = {.count = 1, .reusable = false}, SHIFT(2394), + [5503] = {.count = 1, .reusable = true}, SHIFT(2394), + [5505] = {.count = 1, .reusable = true}, SHIFT(2395), + [5507] = {.count = 1, .reusable = false}, SHIFT(2396), + [5509] = {.count = 1, .reusable = true}, SHIFT(2396), + [5511] = {.count = 1, .reusable = true}, SHIFT(2397), + [5513] = {.count = 1, .reusable = true}, SHIFT(2398), + [5515] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 4), + [5517] = {.count = 1, .reusable = true}, SHIFT(2399), + [5519] = {.count = 1, .reusable = true}, SHIFT(2400), + [5521] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), + [5523] = {.count = 1, .reusable = true}, SHIFT(2401), + [5525] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 6), + [5527] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 6), + [5529] = {.count = 1, .reusable = false}, SHIFT(2403), + [5531] = {.count = 1, .reusable = false}, SHIFT(2404), + [5533] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), + [5535] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), + [5537] = {.count = 1, .reusable = true}, SHIFT(2405), + [5539] = {.count = 1, .reusable = true}, SHIFT(2406), + [5541] = {.count = 1, .reusable = true}, SHIFT(2407), + [5543] = {.count = 1, .reusable = false}, SHIFT(2408), + [5545] = {.count = 1, .reusable = true}, SHIFT(2408), + [5547] = {.count = 1, .reusable = true}, SHIFT(2409), + [5549] = {.count = 1, .reusable = false}, SHIFT(2411), + [5551] = {.count = 1, .reusable = true}, SHIFT(2411), + [5553] = {.count = 1, .reusable = true}, SHIFT(2410), + [5555] = {.count = 1, .reusable = true}, SHIFT(2412), + [5557] = {.count = 1, .reusable = false}, SHIFT(2414), + [5559] = {.count = 1, .reusable = true}, SHIFT(2414), + [5561] = {.count = 1, .reusable = true}, SHIFT(2413), + [5563] = {.count = 1, .reusable = true}, SHIFT(2415), + [5565] = {.count = 1, .reusable = true}, SHIFT(2416), + [5567] = {.count = 1, .reusable = true}, SHIFT(2417), + [5569] = {.count = 1, .reusable = true}, SHIFT(2418), + [5571] = {.count = 1, .reusable = true}, SHIFT(2419), + [5573] = {.count = 1, .reusable = false}, SHIFT(2420), + [5575] = {.count = 1, .reusable = true}, SHIFT(2420), + [5577] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 5), + [5579] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 5), + [5581] = {.count = 1, .reusable = false}, SHIFT(2421), + [5583] = {.count = 1, .reusable = true}, SHIFT(2421), + [5585] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1149), + [5588] = {.count = 1, .reusable = false}, SHIFT(2422), + [5590] = {.count = 1, .reusable = true}, SHIFT(2423), + [5592] = {.count = 1, .reusable = false}, SHIFT(2424), + [5594] = {.count = 1, .reusable = true}, SHIFT(2425), + [5596] = {.count = 1, .reusable = true}, SHIFT(2427), + [5598] = {.count = 1, .reusable = true}, SHIFT(2428), + [5600] = {.count = 1, .reusable = false}, SHIFT(2430), + [5602] = {.count = 1, .reusable = true}, SHIFT(2430), + [5604] = {.count = 1, .reusable = true}, SHIFT(2429), + [5606] = {.count = 1, .reusable = false}, SHIFT(2432), + [5608] = {.count = 1, .reusable = true}, SHIFT(2432), + [5610] = {.count = 1, .reusable = true}, SHIFT(2431), + [5612] = {.count = 1, .reusable = true}, SHIFT(2433), + [5614] = {.count = 1, .reusable = true}, SHIFT(2434), + [5616] = {.count = 1, .reusable = false}, SHIFT(2435), + [5618] = {.count = 1, .reusable = true}, SHIFT(2435), + [5620] = {.count = 1, .reusable = true}, SHIFT(2436), + [5622] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 3), + [5624] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 3), + [5626] = {.count = 1, .reusable = true}, SHIFT(2437), + [5628] = {.count = 1, .reusable = true}, SHIFT(2440), + [5630] = {.count = 1, .reusable = false}, SHIFT(2441), + [5632] = {.count = 1, .reusable = true}, SHIFT(2442), + [5634] = {.count = 1, .reusable = true}, SHIFT(2444), + [5636] = {.count = 1, .reusable = true}, SHIFT(2445), + [5638] = {.count = 1, .reusable = false}, SHIFT(2447), + [5640] = {.count = 1, .reusable = true}, SHIFT(2447), + [5642] = {.count = 1, .reusable = true}, SHIFT(2446), + [5644] = {.count = 1, .reusable = false}, SHIFT(2449), + [5646] = {.count = 1, .reusable = true}, SHIFT(2449), + [5648] = {.count = 1, .reusable = true}, SHIFT(2448), + [5650] = {.count = 1, .reusable = true}, SHIFT(2450), + [5652] = {.count = 1, .reusable = true}, SHIFT(2451), + [5654] = {.count = 1, .reusable = false}, SHIFT(2452), + [5656] = {.count = 1, .reusable = true}, SHIFT(2452), + [5658] = {.count = 1, .reusable = true}, SHIFT(2453), + [5660] = {.count = 1, .reusable = true}, SHIFT(2454), + [5662] = {.count = 1, .reusable = true}, SHIFT(2455), + [5664] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1212), + [5667] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1216), + [5670] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1216), + [5673] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1217), + [5676] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 4), + [5678] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), + [5680] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1227), + [5683] = {.count = 1, .reusable = false}, SHIFT(2457), + [5685] = {.count = 1, .reusable = true}, SHIFT(2458), + [5687] = {.count = 1, .reusable = false}, SHIFT(2459), + [5689] = {.count = 1, .reusable = true}, SHIFT(2460), + [5691] = {.count = 1, .reusable = true}, SHIFT(2462), + [5693] = {.count = 1, .reusable = true}, SHIFT(2463), + [5695] = {.count = 1, .reusable = false}, SHIFT(2465), + [5697] = {.count = 1, .reusable = true}, SHIFT(2465), + [5699] = {.count = 1, .reusable = true}, SHIFT(2464), + [5701] = {.count = 1, .reusable = false}, SHIFT(2467), + [5703] = {.count = 1, .reusable = true}, SHIFT(2467), + [5705] = {.count = 1, .reusable = true}, SHIFT(2466), + [5707] = {.count = 1, .reusable = true}, SHIFT(2468), + [5709] = {.count = 1, .reusable = true}, SHIFT(2469), + [5711] = {.count = 1, .reusable = false}, SHIFT(2470), + [5713] = {.count = 1, .reusable = true}, SHIFT(2470), + [5715] = {.count = 1, .reusable = true}, SHIFT(2471), + [5717] = {.count = 1, .reusable = true}, SHIFT(2472), + [5719] = {.count = 1, .reusable = true}, SHIFT(2473), + [5721] = {.count = 1, .reusable = false}, SHIFT(2474), + [5723] = {.count = 1, .reusable = true}, SHIFT(2475), + [5725] = {.count = 1, .reusable = true}, SHIFT(2477), + [5727] = {.count = 1, .reusable = true}, SHIFT(2478), + [5729] = {.count = 1, .reusable = false}, SHIFT(2479), + [5731] = {.count = 1, .reusable = true}, SHIFT(2479), + [5733] = {.count = 1, .reusable = true}, SHIFT(2480), + [5735] = {.count = 1, .reusable = false}, SHIFT(2481), + [5737] = {.count = 1, .reusable = true}, SHIFT(2481), + [5739] = {.count = 1, .reusable = true}, SHIFT(2482), + [5741] = {.count = 1, .reusable = false}, SHIFT(2483), + [5743] = {.count = 1, .reusable = true}, SHIFT(2483), + [5745] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 6), + [5747] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 6), + [5749] = {.count = 1, .reusable = true}, SHIFT(2485), + [5751] = {.count = 1, .reusable = true}, SHIFT(2486), + [5753] = {.count = 1, .reusable = true}, SHIFT(2487), + [5755] = {.count = 1, .reusable = true}, SHIFT(2488), + [5757] = {.count = 1, .reusable = false}, SHIFT(2489), + [5759] = {.count = 1, .reusable = true}, SHIFT(2490), + [5761] = {.count = 1, .reusable = true}, SHIFT(2492), + [5763] = {.count = 1, .reusable = true}, SHIFT(2493), + [5765] = {.count = 1, .reusable = false}, SHIFT(2494), + [5767] = {.count = 1, .reusable = true}, SHIFT(2494), + [5769] = {.count = 1, .reusable = true}, SHIFT(2495), + [5771] = {.count = 1, .reusable = false}, SHIFT(2496), + [5773] = {.count = 1, .reusable = true}, SHIFT(2496), + [5775] = {.count = 1, .reusable = true}, SHIFT(2497), + [5777] = {.count = 1, .reusable = false}, SHIFT(2498), + [5779] = {.count = 1, .reusable = true}, SHIFT(2498), + [5781] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1283), + [5784] = {.count = 1, .reusable = false}, SHIFT(2500), + [5786] = {.count = 1, .reusable = true}, SHIFT(2501), + [5788] = {.count = 1, .reusable = false}, SHIFT(2502), + [5790] = {.count = 1, .reusable = true}, SHIFT(2503), + [5792] = {.count = 1, .reusable = true}, SHIFT(2505), + [5794] = {.count = 1, .reusable = true}, SHIFT(2506), + [5796] = {.count = 1, .reusable = false}, SHIFT(2508), + [5798] = {.count = 1, .reusable = true}, SHIFT(2508), + [5800] = {.count = 1, .reusable = true}, SHIFT(2507), + [5802] = {.count = 1, .reusable = false}, SHIFT(2510), + [5804] = {.count = 1, .reusable = true}, SHIFT(2510), + [5806] = {.count = 1, .reusable = true}, SHIFT(2509), + [5808] = {.count = 1, .reusable = true}, SHIFT(2511), + [5810] = {.count = 1, .reusable = true}, SHIFT(2512), + [5812] = {.count = 1, .reusable = false}, SHIFT(2513), + [5814] = {.count = 1, .reusable = true}, SHIFT(2513), + [5816] = {.count = 1, .reusable = true}, SHIFT(2514), + [5818] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [5820] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [5822] = {.count = 1, .reusable = true}, SHIFT(2515), + [5824] = {.count = 1, .reusable = true}, SHIFT(2516), + [5826] = {.count = 1, .reusable = false}, SHIFT(2517), + [5828] = {.count = 1, .reusable = true}, SHIFT(2518), + [5830] = {.count = 1, .reusable = true}, SHIFT(2520), + [5832] = {.count = 1, .reusable = true}, SHIFT(2521), + [5834] = {.count = 1, .reusable = false}, SHIFT(2522), + [5836] = {.count = 1, .reusable = true}, SHIFT(2522), + [5838] = {.count = 1, .reusable = true}, SHIFT(2523), + [5840] = {.count = 1, .reusable = false}, SHIFT(2524), + [5842] = {.count = 1, .reusable = true}, SHIFT(2524), + [5844] = {.count = 1, .reusable = true}, SHIFT(2525), + [5846] = {.count = 1, .reusable = false}, SHIFT(2526), + [5848] = {.count = 1, .reusable = true}, SHIFT(2526), + [5850] = {.count = 1, .reusable = true}, SHIFT(2527), + [5852] = {.count = 1, .reusable = true}, SHIFT(2528), + [5854] = {.count = 1, .reusable = true}, SHIFT(2529), + [5856] = {.count = 1, .reusable = false}, SHIFT(2530), + [5858] = {.count = 1, .reusable = true}, SHIFT(2530), + [5860] = {.count = 1, .reusable = false}, SHIFT(2531), + [5862] = {.count = 1, .reusable = true}, SHIFT(2531), + [5864] = {.count = 1, .reusable = true}, SHIFT(2532), + [5866] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1336), + [5869] = {.count = 1, .reusable = false}, SHIFT(2533), + [5871] = {.count = 1, .reusable = true}, SHIFT(2534), + [5873] = {.count = 1, .reusable = false}, SHIFT(2535), + [5875] = {.count = 1, .reusable = true}, SHIFT(2536), + [5877] = {.count = 1, .reusable = true}, SHIFT(2538), + [5879] = {.count = 1, .reusable = true}, SHIFT(2539), + [5881] = {.count = 1, .reusable = false}, SHIFT(2541), + [5883] = {.count = 1, .reusable = true}, SHIFT(2541), + [5885] = {.count = 1, .reusable = true}, SHIFT(2540), + [5887] = {.count = 1, .reusable = false}, SHIFT(2543), + [5889] = {.count = 1, .reusable = true}, SHIFT(2543), + [5891] = {.count = 1, .reusable = true}, SHIFT(2542), + [5893] = {.count = 1, .reusable = true}, SHIFT(2544), + [5895] = {.count = 1, .reusable = true}, SHIFT(2545), + [5897] = {.count = 1, .reusable = false}, SHIFT(2546), + [5899] = {.count = 1, .reusable = true}, SHIFT(2546), + [5901] = {.count = 1, .reusable = true}, SHIFT(2547), + [5903] = {.count = 1, .reusable = true}, SHIFT(2548), + [5905] = {.count = 1, .reusable = true}, SHIFT(2550), + [5907] = {.count = 1, .reusable = false}, SHIFT(2552), + [5909] = {.count = 1, .reusable = true}, SHIFT(2552), + [5911] = {.count = 1, .reusable = true}, SHIFT(2554), + [5913] = {.count = 1, .reusable = true}, SHIFT(2556), + [5915] = {.count = 1, .reusable = false}, SHIFT(2556), + [5917] = {.count = 1, .reusable = true}, SHIFT(2559), + [5919] = {.count = 1, .reusable = false}, SHIFT(2559), + [5921] = {.count = 1, .reusable = true}, SHIFT(2562), + [5923] = {.count = 1, .reusable = true}, SHIFT(2563), + [5925] = {.count = 1, .reusable = true}, SHIFT(2564), + [5927] = {.count = 1, .reusable = false}, SHIFT(2565), + [5929] = {.count = 1, .reusable = true}, SHIFT(2566), + [5931] = {.count = 1, .reusable = true}, SHIFT(2568), + [5933] = {.count = 1, .reusable = true}, SHIFT(2569), + [5935] = {.count = 1, .reusable = false}, SHIFT(2570), + [5937] = {.count = 1, .reusable = true}, SHIFT(2570), + [5939] = {.count = 1, .reusable = true}, SHIFT(2571), + [5941] = {.count = 1, .reusable = false}, SHIFT(2572), + [5943] = {.count = 1, .reusable = true}, SHIFT(2572), + [5945] = {.count = 1, .reusable = true}, SHIFT(2573), + [5947] = {.count = 1, .reusable = false}, SHIFT(2574), + [5949] = {.count = 1, .reusable = true}, SHIFT(2574), + [5951] = {.count = 1, .reusable = true}, SHIFT(2575), + [5953] = {.count = 1, .reusable = true}, SHIFT(2576), + [5955] = {.count = 1, .reusable = false}, SHIFT(2577), + [5957] = {.count = 1, .reusable = true}, SHIFT(2578), + [5959] = {.count = 1, .reusable = true}, SHIFT(2580), + [5961] = {.count = 1, .reusable = true}, SHIFT(2581), + [5963] = {.count = 1, .reusable = false}, SHIFT(2582), + [5965] = {.count = 1, .reusable = true}, SHIFT(2582), + [5967] = {.count = 1, .reusable = true}, SHIFT(2583), + [5969] = {.count = 1, .reusable = false}, SHIFT(2584), + [5971] = {.count = 1, .reusable = true}, SHIFT(2584), + [5973] = {.count = 1, .reusable = true}, SHIFT(2585), + [5975] = {.count = 1, .reusable = false}, SHIFT(2586), + [5977] = {.count = 1, .reusable = true}, SHIFT(2586), + [5979] = {.count = 1, .reusable = true}, SHIFT(2587), + [5981] = {.count = 1, .reusable = true}, SHIFT(2588), + [5983] = {.count = 1, .reusable = true}, SHIFT(2589), + [5985] = {.count = 1, .reusable = false}, SHIFT(2590), + [5987] = {.count = 1, .reusable = true}, SHIFT(2590), + [5989] = {.count = 1, .reusable = false}, SHIFT(2591), + [5991] = {.count = 1, .reusable = true}, SHIFT(2591), + [5993] = {.count = 1, .reusable = true}, SHIFT(2592), + [5995] = {.count = 1, .reusable = true}, SHIFT(2593), + [5997] = {.count = 1, .reusable = true}, SHIFT(2595), + [5999] = {.count = 1, .reusable = false}, SHIFT(2597), + [6001] = {.count = 1, .reusable = false}, SHIFT(2598), + [6003] = {.count = 1, .reusable = true}, SHIFT(2600), + [6005] = {.count = 1, .reusable = true}, SHIFT(2601), + [6007] = {.count = 1, .reusable = false}, SHIFT(2602), + [6009] = {.count = 1, .reusable = true}, SHIFT(2602), + [6011] = {.count = 1, .reusable = true}, SHIFT(2603), + [6013] = {.count = 1, .reusable = true}, SHIFT(2604), + [6015] = {.count = 1, .reusable = true}, SHIFT(2605), + [6017] = {.count = 1, .reusable = false}, SHIFT(2606), + [6019] = {.count = 1, .reusable = true}, SHIFT(2606), + [6021] = {.count = 1, .reusable = true}, SHIFT(2610), + [6023] = {.count = 1, .reusable = true}, SHIFT(2611), + [6025] = {.count = 1, .reusable = true}, SHIFT(2612), + [6027] = {.count = 1, .reusable = true}, SHIFT(2613), + [6029] = {.count = 1, .reusable = true}, SHIFT(2614), + [6031] = {.count = 1, .reusable = false}, SHIFT(2616), + [6033] = {.count = 1, .reusable = false}, SHIFT(2617), + [6035] = {.count = 1, .reusable = true}, SHIFT(2618), + [6037] = {.count = 1, .reusable = true}, SHIFT(2619), + [6039] = {.count = 1, .reusable = true}, SHIFT(2620), + [6041] = {.count = 1, .reusable = false}, SHIFT(2621), + [6043] = {.count = 1, .reusable = true}, SHIFT(2621), + [6045] = {.count = 1, .reusable = true}, SHIFT(2622), + [6047] = {.count = 1, .reusable = false}, SHIFT(2624), + [6049] = {.count = 1, .reusable = true}, SHIFT(2624), + [6051] = {.count = 1, .reusable = true}, SHIFT(2623), + [6053] = {.count = 1, .reusable = true}, SHIFT(2625), + [6055] = {.count = 1, .reusable = false}, SHIFT(2627), + [6057] = {.count = 1, .reusable = true}, SHIFT(2627), + [6059] = {.count = 1, .reusable = true}, SHIFT(2626), + [6061] = {.count = 1, .reusable = true}, SHIFT(2628), + [6063] = {.count = 1, .reusable = true}, SHIFT(2629), + [6065] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1420), + [6068] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1421), + [6071] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1422), + [6074] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1423), + [6077] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1424), + [6080] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1425), + [6083] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1426), + [6086] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1427), + [6089] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1428), + [6092] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2039), + [6095] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1424), + [6098] = {.count = 1, .reusable = true}, SHIFT(2630), + [6100] = {.count = 1, .reusable = false}, SHIFT(2632), + [6102] = {.count = 1, .reusable = false}, SHIFT(2633), + [6104] = {.count = 1, .reusable = true}, SHIFT(2634), + [6106] = {.count = 1, .reusable = true}, SHIFT(2635), + [6108] = {.count = 1, .reusable = true}, SHIFT(2636), + [6110] = {.count = 1, .reusable = false}, SHIFT(2637), + [6112] = {.count = 1, .reusable = true}, SHIFT(2637), + [6114] = {.count = 1, .reusable = true}, SHIFT(2638), + [6116] = {.count = 1, .reusable = false}, SHIFT(2640), + [6118] = {.count = 1, .reusable = true}, SHIFT(2640), + [6120] = {.count = 1, .reusable = true}, SHIFT(2639), + [6122] = {.count = 1, .reusable = true}, SHIFT(2641), + [6124] = {.count = 1, .reusable = false}, SHIFT(2643), + [6126] = {.count = 1, .reusable = true}, SHIFT(2643), + [6128] = {.count = 1, .reusable = true}, SHIFT(2642), + [6130] = {.count = 1, .reusable = true}, SHIFT(2644), + [6132] = {.count = 1, .reusable = true}, SHIFT(2645), + [6134] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1431), + [6137] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1432), + [6140] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1433), + [6143] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1434), + [6146] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1435), + [6149] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1436), + [6152] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1437), + [6155] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1438), + [6158] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2055), + [6161] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1434), + [6164] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1440), + [6167] = {.count = 1, .reusable = false}, SHIFT(2646), + [6169] = {.count = 1, .reusable = true}, SHIFT(2647), + [6171] = {.count = 1, .reusable = false}, SHIFT(2648), + [6173] = {.count = 1, .reusable = true}, SHIFT(2649), + [6175] = {.count = 1, .reusable = true}, SHIFT(2651), + [6177] = {.count = 1, .reusable = true}, SHIFT(2652), + [6179] = {.count = 1, .reusable = false}, SHIFT(2654), + [6181] = {.count = 1, .reusable = true}, SHIFT(2654), + [6183] = {.count = 1, .reusable = true}, SHIFT(2653), + [6185] = {.count = 1, .reusable = false}, SHIFT(2656), + [6187] = {.count = 1, .reusable = true}, SHIFT(2656), + [6189] = {.count = 1, .reusable = true}, SHIFT(2655), + [6191] = {.count = 1, .reusable = true}, SHIFT(2657), + [6193] = {.count = 1, .reusable = true}, SHIFT(2658), + [6195] = {.count = 1, .reusable = false}, SHIFT(2659), + [6197] = {.count = 1, .reusable = true}, SHIFT(2659), + [6199] = {.count = 1, .reusable = true}, SHIFT(2660), + [6201] = {.count = 1, .reusable = true}, SHIFT(2661), + [6203] = {.count = 1, .reusable = true}, SHIFT(2662), + [6205] = {.count = 1, .reusable = true}, SHIFT(2663), + [6207] = {.count = 1, .reusable = false}, SHIFT(2665), + [6209] = {.count = 1, .reusable = false}, SHIFT(2666), + [6211] = {.count = 1, .reusable = true}, SHIFT(2668), + [6213] = {.count = 1, .reusable = true}, SHIFT(2669), + [6215] = {.count = 1, .reusable = false}, SHIFT(2670), + [6217] = {.count = 1, .reusable = true}, SHIFT(2670), + [6219] = {.count = 1, .reusable = true}, SHIFT(2671), + [6221] = {.count = 1, .reusable = true}, SHIFT(2672), + [6223] = {.count = 1, .reusable = true}, SHIFT(2673), + [6225] = {.count = 1, .reusable = false}, SHIFT(2674), + [6227] = {.count = 1, .reusable = true}, SHIFT(2674), + [6229] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 3), + [6231] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1456), + [6234] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1460), + [6237] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1460), + [6240] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1461), + [6243] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1464), + [6246] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1465), + [6249] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(838), + [6252] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(839), + [6255] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1466), + [6258] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(841), + [6261] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(842), + [6264] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(843), + [6267] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(844), + [6270] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1466), + [6273] = {.count = 1, .reusable = false}, SHIFT(2678), + [6275] = {.count = 1, .reusable = true}, SHIFT(2678), + [6277] = {.count = 1, .reusable = true}, SHIFT(2679), + [6279] = {.count = 1, .reusable = true}, SHIFT(2681), + [6281] = {.count = 1, .reusable = false}, SHIFT(2683), + [6283] = {.count = 1, .reusable = false}, SHIFT(2684), + [6285] = {.count = 1, .reusable = true}, SHIFT(2686), + [6287] = {.count = 1, .reusable = true}, SHIFT(2687), + [6289] = {.count = 1, .reusable = false}, SHIFT(2688), + [6291] = {.count = 1, .reusable = true}, SHIFT(2688), + [6293] = {.count = 1, .reusable = true}, SHIFT(2689), + [6295] = {.count = 1, .reusable = true}, SHIFT(2690), + [6297] = {.count = 1, .reusable = true}, SHIFT(2691), + [6299] = {.count = 1, .reusable = false}, SHIFT(2692), + [6301] = {.count = 1, .reusable = true}, SHIFT(2692), + [6303] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), + [6305] = {.count = 1, .reusable = true}, SHIFT(2697), + [6307] = {.count = 1, .reusable = true}, SHIFT(2698), + [6309] = {.count = 1, .reusable = true}, SHIFT(2699), + [6311] = {.count = 1, .reusable = true}, SHIFT(2700), + [6313] = {.count = 1, .reusable = false}, SHIFT(2701), + [6315] = {.count = 1, .reusable = true}, SHIFT(2702), + [6317] = {.count = 1, .reusable = true}, SHIFT(2703), + [6319] = {.count = 1, .reusable = true}, SHIFT(2704), + [6321] = {.count = 1, .reusable = true}, SHIFT(2705), + [6323] = {.count = 1, .reusable = true}, SHIFT(2706), + [6325] = {.count = 1, .reusable = true}, SHIFT(2707), + [6327] = {.count = 1, .reusable = true}, SHIFT(2708), + [6329] = {.count = 1, .reusable = false}, SHIFT(2710), + [6331] = {.count = 1, .reusable = false}, SHIFT(2711), + [6333] = {.count = 1, .reusable = true}, SHIFT(2713), + [6335] = {.count = 1, .reusable = true}, SHIFT(2714), + [6337] = {.count = 1, .reusable = false}, SHIFT(2715), + [6339] = {.count = 1, .reusable = true}, SHIFT(2715), + [6341] = {.count = 1, .reusable = true}, SHIFT(2716), + [6343] = {.count = 1, .reusable = true}, SHIFT(2717), + [6345] = {.count = 1, .reusable = true}, SHIFT(2718), + [6347] = {.count = 1, .reusable = false}, SHIFT(2719), + [6349] = {.count = 1, .reusable = true}, SHIFT(2719), + [6351] = {.count = 1, .reusable = false}, SHIFT(2723), + [6353] = {.count = 1, .reusable = true}, SHIFT(2724), + [6355] = {.count = 1, .reusable = false}, SHIFT(2726), + [6357] = {.count = 1, .reusable = false}, SHIFT(2727), + [6359] = {.count = 1, .reusable = true}, SHIFT(2729), + [6361] = {.count = 1, .reusable = true}, SHIFT(2730), + [6363] = {.count = 1, .reusable = false}, SHIFT(2731), + [6365] = {.count = 1, .reusable = true}, SHIFT(2731), + [6367] = {.count = 1, .reusable = true}, SHIFT(2732), + [6369] = {.count = 1, .reusable = true}, SHIFT(2733), + [6371] = {.count = 1, .reusable = true}, SHIFT(2734), + [6373] = {.count = 1, .reusable = false}, SHIFT(2735), + [6375] = {.count = 1, .reusable = true}, SHIFT(2735), + [6377] = {.count = 1, .reusable = false}, SHIFT(2739), + [6379] = {.count = 1, .reusable = true}, SHIFT(2740), + [6381] = {.count = 1, .reusable = false}, SHIFT(2742), + [6383] = {.count = 1, .reusable = false}, SHIFT(2743), + [6385] = {.count = 1, .reusable = true}, SHIFT(2744), + [6387] = {.count = 1, .reusable = true}, SHIFT(2745), + [6389] = {.count = 1, .reusable = true}, SHIFT(2746), + [6391] = {.count = 1, .reusable = false}, SHIFT(2747), + [6393] = {.count = 1, .reusable = true}, SHIFT(2747), + [6395] = {.count = 1, .reusable = true}, SHIFT(2748), + [6397] = {.count = 1, .reusable = false}, SHIFT(2750), + [6399] = {.count = 1, .reusable = true}, SHIFT(2750), + [6401] = {.count = 1, .reusable = true}, SHIFT(2749), + [6403] = {.count = 1, .reusable = true}, SHIFT(2751), + [6405] = {.count = 1, .reusable = false}, SHIFT(2753), + [6407] = {.count = 1, .reusable = true}, SHIFT(2753), + [6409] = {.count = 1, .reusable = true}, SHIFT(2752), + [6411] = {.count = 1, .reusable = true}, SHIFT(2754), + [6413] = {.count = 1, .reusable = true}, SHIFT(2755), + [6415] = {.count = 1, .reusable = false}, SHIFT(2756), + [6417] = {.count = 1, .reusable = true}, SHIFT(2756), + [6419] = {.count = 1, .reusable = true}, SHIFT(2761), + [6421] = {.count = 1, .reusable = true}, SHIFT(2762), + [6423] = {.count = 1, .reusable = true}, SHIFT(2763), + [6425] = {.count = 1, .reusable = true}, SHIFT(2764), + [6427] = {.count = 1, .reusable = false}, SHIFT(2765), + [6429] = {.count = 1, .reusable = true}, SHIFT(2765), + [6431] = {.count = 1, .reusable = true}, SHIFT(2767), + [6433] = {.count = 1, .reusable = true}, SHIFT(2768), + [6435] = {.count = 1, .reusable = true}, SHIFT(2769), + [6437] = {.count = 1, .reusable = false}, SHIFT(2771), + [6439] = {.count = 1, .reusable = true}, SHIFT(2771), + [6441] = {.count = 1, .reusable = true}, SHIFT(2774), + [6443] = {.count = 1, .reusable = true}, SHIFT(2775), + [6445] = {.count = 1, .reusable = true}, SHIFT(2776), + [6447] = {.count = 1, .reusable = true}, SHIFT(2777), + [6449] = {.count = 1, .reusable = true}, SHIFT(2778), + [6451] = {.count = 1, .reusable = false}, SHIFT(2780), + [6453] = {.count = 1, .reusable = false}, SHIFT(2781), + [6455] = {.count = 1, .reusable = true}, SHIFT(2782), + [6457] = {.count = 1, .reusable = true}, SHIFT(2783), + [6459] = {.count = 1, .reusable = true}, SHIFT(2784), + [6461] = {.count = 1, .reusable = false}, SHIFT(2785), + [6463] = {.count = 1, .reusable = true}, SHIFT(2785), + [6465] = {.count = 1, .reusable = true}, SHIFT(2786), + [6467] = {.count = 1, .reusable = false}, SHIFT(2788), + [6469] = {.count = 1, .reusable = true}, SHIFT(2788), + [6471] = {.count = 1, .reusable = true}, SHIFT(2787), + [6473] = {.count = 1, .reusable = true}, SHIFT(2789), + [6475] = {.count = 1, .reusable = false}, SHIFT(2791), + [6477] = {.count = 1, .reusable = true}, SHIFT(2791), + [6479] = {.count = 1, .reusable = true}, SHIFT(2790), + [6481] = {.count = 1, .reusable = true}, SHIFT(2792), + [6483] = {.count = 1, .reusable = true}, SHIFT(2793), + [6485] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1498), + [6488] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1499), + [6491] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1500), + [6494] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1501), + [6497] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1502), + [6500] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1503), + [6503] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1504), + [6506] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1505), + [6509] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1506), + [6512] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2175), + [6515] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1502), + [6518] = {.count = 1, .reusable = true}, SHIFT(2794), + [6520] = {.count = 1, .reusable = false}, SHIFT(2796), + [6522] = {.count = 1, .reusable = false}, SHIFT(2797), + [6524] = {.count = 1, .reusable = true}, SHIFT(2798), + [6526] = {.count = 1, .reusable = true}, SHIFT(2799), + [6528] = {.count = 1, .reusable = true}, SHIFT(2800), + [6530] = {.count = 1, .reusable = false}, SHIFT(2801), + [6532] = {.count = 1, .reusable = true}, SHIFT(2801), + [6534] = {.count = 1, .reusable = true}, SHIFT(2802), + [6536] = {.count = 1, .reusable = false}, SHIFT(2804), + [6538] = {.count = 1, .reusable = true}, SHIFT(2804), + [6540] = {.count = 1, .reusable = true}, SHIFT(2803), + [6542] = {.count = 1, .reusable = true}, SHIFT(2805), + [6544] = {.count = 1, .reusable = false}, SHIFT(2807), + [6546] = {.count = 1, .reusable = true}, SHIFT(2807), + [6548] = {.count = 1, .reusable = true}, SHIFT(2806), + [6550] = {.count = 1, .reusable = true}, SHIFT(2808), + [6552] = {.count = 1, .reusable = true}, SHIFT(2809), + [6554] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1509), + [6557] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1510), + [6560] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1511), + [6563] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1512), + [6566] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1513), + [6569] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1514), + [6572] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1515), + [6575] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1516), + [6578] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2191), + [6581] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1512), + [6584] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1518), + [6587] = {.count = 1, .reusable = false}, SHIFT(2810), + [6589] = {.count = 1, .reusable = true}, SHIFT(2811), + [6591] = {.count = 1, .reusable = false}, SHIFT(2812), + [6593] = {.count = 1, .reusable = true}, SHIFT(2813), + [6595] = {.count = 1, .reusable = true}, SHIFT(2815), + [6597] = {.count = 1, .reusable = true}, SHIFT(2816), + [6599] = {.count = 1, .reusable = false}, SHIFT(2818), + [6601] = {.count = 1, .reusable = true}, SHIFT(2818), + [6603] = {.count = 1, .reusable = true}, SHIFT(2817), + [6605] = {.count = 1, .reusable = false}, SHIFT(2820), + [6607] = {.count = 1, .reusable = true}, SHIFT(2820), + [6609] = {.count = 1, .reusable = true}, SHIFT(2819), + [6611] = {.count = 1, .reusable = true}, SHIFT(2821), + [6613] = {.count = 1, .reusable = true}, SHIFT(2822), + [6615] = {.count = 1, .reusable = false}, SHIFT(2823), + [6617] = {.count = 1, .reusable = true}, SHIFT(2823), + [6619] = {.count = 1, .reusable = true}, SHIFT(2824), + [6621] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), + [6623] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), + [6625] = {.count = 1, .reusable = true}, SHIFT(2825), + [6627] = {.count = 1, .reusable = true}, SHIFT(2826), + [6629] = {.count = 1, .reusable = true}, SHIFT(2827), + [6631] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1536), + [6634] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1540), + [6637] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1540), + [6640] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1541), + [6643] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1544), + [6646] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1545), + [6649] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(880), + [6652] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(881), + [6655] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1546), + [6658] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(883), + [6661] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(884), + [6664] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(885), + [6667] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(886), + [6670] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1546), + [6673] = {.count = 1, .reusable = false}, SHIFT(2829), + [6675] = {.count = 1, .reusable = true}, SHIFT(2829), + [6677] = {.count = 1, .reusable = true}, SHIFT(2830), + [6679] = {.count = 1, .reusable = true}, SHIFT(2831), + [6681] = {.count = 1, .reusable = true}, SHIFT(2833), + [6683] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), + [6685] = {.count = 1, .reusable = true}, SHIFT(2834), + [6687] = {.count = 1, .reusable = false}, SHIFT(2835), + [6689] = {.count = 1, .reusable = false}, SHIFT(2836), + [6691] = {.count = 1, .reusable = false}, SHIFT(2837), + [6693] = {.count = 1, .reusable = false}, SHIFT(2838), + [6695] = {.count = 1, .reusable = true}, SHIFT(2839), + [6697] = {.count = 1, .reusable = false}, SHIFT(2840), + [6699] = {.count = 1, .reusable = true}, SHIFT(2841), + [6701] = {.count = 1, .reusable = true}, SHIFT(2842), + [6703] = {.count = 1, .reusable = true}, SHIFT(2843), + [6705] = {.count = 1, .reusable = true}, SHIFT(2844), + [6707] = {.count = 1, .reusable = true}, SHIFT(2845), + [6709] = {.count = 1, .reusable = false}, SHIFT(2846), + [6711] = {.count = 1, .reusable = true}, SHIFT(2855), + [6713] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), + [6715] = {.count = 1, .reusable = true}, SHIFT(2858), + [6717] = {.count = 1, .reusable = true}, SHIFT(2860), + [6719] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 2), + [6721] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 2), + [6723] = {.count = 1, .reusable = true}, SHIFT(2861), + [6725] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2862), + [6728] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(272), + [6731] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(273), + [6734] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2863), + [6737] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(275), + [6740] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(276), + [6743] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(277), + [6746] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(278), + [6749] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), + [6751] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), + [6753] = {.count = 1, .reusable = true}, SHIFT(2866), + [6755] = {.count = 1, .reusable = true}, SHIFT(2868), + [6757] = {.count = 1, .reusable = true}, SHIFT(2869), + [6759] = {.count = 1, .reusable = true}, SHIFT(2870), + [6761] = {.count = 1, .reusable = false}, SHIFT(2871), + [6763] = {.count = 1, .reusable = true}, SHIFT(2871), + [6765] = {.count = 1, .reusable = false}, SHIFT(2872), + [6767] = {.count = 1, .reusable = true}, SHIFT(2872), + [6769] = {.count = 1, .reusable = true}, SHIFT(2873), + [6771] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1589), + [6774] = {.count = 1, .reusable = false}, SHIFT(2874), + [6776] = {.count = 1, .reusable = true}, SHIFT(2875), + [6778] = {.count = 1, .reusable = false}, SHIFT(2876), + [6780] = {.count = 1, .reusable = true}, SHIFT(2877), + [6782] = {.count = 1, .reusable = true}, SHIFT(2879), + [6784] = {.count = 1, .reusable = true}, SHIFT(2880), + [6786] = {.count = 1, .reusable = false}, SHIFT(2882), + [6788] = {.count = 1, .reusable = true}, SHIFT(2882), + [6790] = {.count = 1, .reusable = true}, SHIFT(2881), + [6792] = {.count = 1, .reusable = false}, SHIFT(2884), + [6794] = {.count = 1, .reusable = true}, SHIFT(2884), + [6796] = {.count = 1, .reusable = true}, SHIFT(2883), + [6798] = {.count = 1, .reusable = true}, SHIFT(2885), + [6800] = {.count = 1, .reusable = true}, SHIFT(2886), + [6802] = {.count = 1, .reusable = false}, SHIFT(2887), + [6804] = {.count = 1, .reusable = true}, SHIFT(2887), + [6806] = {.count = 1, .reusable = true}, SHIFT(2888), + [6808] = {.count = 1, .reusable = true}, SHIFT(2889), + [6810] = {.count = 1, .reusable = true}, SHIFT(2891), + [6812] = {.count = 1, .reusable = false}, SHIFT(2893), + [6814] = {.count = 1, .reusable = true}, SHIFT(2893), + [6816] = {.count = 1, .reusable = true}, SHIFT(2895), + [6818] = {.count = 1, .reusable = true}, SHIFT(2897), + [6820] = {.count = 1, .reusable = false}, SHIFT(2897), + [6822] = {.count = 1, .reusable = true}, SHIFT(2900), + [6824] = {.count = 1, .reusable = false}, SHIFT(2900), + [6826] = {.count = 1, .reusable = true}, SHIFT(2903), + [6828] = {.count = 1, .reusable = true}, SHIFT(2904), + [6830] = {.count = 1, .reusable = true}, SHIFT(2905), + [6832] = {.count = 1, .reusable = false}, SHIFT(2906), + [6834] = {.count = 1, .reusable = true}, SHIFT(2907), + [6836] = {.count = 1, .reusable = true}, SHIFT(2909), + [6838] = {.count = 1, .reusable = true}, SHIFT(2910), + [6840] = {.count = 1, .reusable = false}, SHIFT(2911), + [6842] = {.count = 1, .reusable = true}, SHIFT(2911), + [6844] = {.count = 1, .reusable = true}, SHIFT(2912), + [6846] = {.count = 1, .reusable = false}, SHIFT(2913), + [6848] = {.count = 1, .reusable = true}, SHIFT(2913), + [6850] = {.count = 1, .reusable = true}, SHIFT(2914), + [6852] = {.count = 1, .reusable = false}, SHIFT(2915), + [6854] = {.count = 1, .reusable = true}, SHIFT(2915), + [6856] = {.count = 1, .reusable = true}, SHIFT(2916), + [6858] = {.count = 1, .reusable = true}, SHIFT(2917), + [6860] = {.count = 1, .reusable = false}, SHIFT(2918), + [6862] = {.count = 1, .reusable = true}, SHIFT(2919), + [6864] = {.count = 1, .reusable = true}, SHIFT(2921), + [6866] = {.count = 1, .reusable = true}, SHIFT(2922), + [6868] = {.count = 1, .reusable = false}, SHIFT(2923), + [6870] = {.count = 1, .reusable = true}, SHIFT(2923), + [6872] = {.count = 1, .reusable = true}, SHIFT(2924), + [6874] = {.count = 1, .reusable = false}, SHIFT(2925), + [6876] = {.count = 1, .reusable = true}, SHIFT(2925), + [6878] = {.count = 1, .reusable = true}, SHIFT(2926), + [6880] = {.count = 1, .reusable = false}, SHIFT(2927), + [6882] = {.count = 1, .reusable = true}, SHIFT(2927), + [6884] = {.count = 1, .reusable = true}, SHIFT(2928), + [6886] = {.count = 1, .reusable = true}, SHIFT(2929), + [6888] = {.count = 1, .reusable = true}, SHIFT(2930), + [6890] = {.count = 1, .reusable = false}, SHIFT(2931), + [6892] = {.count = 1, .reusable = true}, SHIFT(2931), + [6894] = {.count = 1, .reusable = false}, SHIFT(2932), + [6896] = {.count = 1, .reusable = true}, SHIFT(2932), + [6898] = {.count = 1, .reusable = true}, SHIFT(2933), + [6900] = {.count = 1, .reusable = true}, SHIFT(2934), + [6902] = {.count = 1, .reusable = true}, SHIFT(2935), + [6904] = {.count = 1, .reusable = true}, SHIFT(2936), + [6906] = {.count = 1, .reusable = false}, SHIFT(2937), + [6908] = {.count = 1, .reusable = true}, SHIFT(2937), + [6910] = {.count = 1, .reusable = false}, SHIFT(2938), + [6912] = {.count = 1, .reusable = true}, SHIFT(2938), + [6914] = {.count = 1, .reusable = true}, SHIFT(2939), + [6916] = {.count = 1, .reusable = true}, SHIFT(2940), + [6918] = {.count = 1, .reusable = true}, SHIFT(2941), + [6920] = {.count = 1, .reusable = true}, SHIFT(2942), + [6922] = {.count = 1, .reusable = false}, SHIFT(2943), + [6924] = {.count = 1, .reusable = true}, SHIFT(2943), + [6926] = {.count = 1, .reusable = false}, SHIFT(2944), + [6928] = {.count = 1, .reusable = true}, SHIFT(2944), + [6930] = {.count = 1, .reusable = true}, SHIFT(2945), + [6932] = {.count = 1, .reusable = true}, SHIFT(2946), + [6934] = {.count = 1, .reusable = true}, SHIFT(2947), + [6936] = {.count = 1, .reusable = true}, SHIFT(2948), + [6938] = {.count = 1, .reusable = false}, SHIFT(2949), + [6940] = {.count = 1, .reusable = true}, SHIFT(2949), + [6942] = {.count = 1, .reusable = false}, SHIFT(2950), + [6944] = {.count = 1, .reusable = true}, SHIFT(2950), + [6946] = {.count = 1, .reusable = true}, SHIFT(2951), + [6948] = {.count = 1, .reusable = true}, SHIFT(2952), + [6950] = {.count = 1, .reusable = true}, SHIFT(2953), + [6952] = {.count = 1, .reusable = true}, SHIFT(2954), + [6954] = {.count = 1, .reusable = false}, SHIFT(2955), + [6956] = {.count = 1, .reusable = true}, SHIFT(2955), + [6958] = {.count = 1, .reusable = false}, SHIFT(2956), + [6960] = {.count = 1, .reusable = true}, SHIFT(2956), + [6962] = {.count = 1, .reusable = true}, SHIFT(2957), + [6964] = {.count = 1, .reusable = true}, SHIFT(2958), + [6966] = {.count = 1, .reusable = true}, SHIFT(2959), + [6968] = {.count = 1, .reusable = true}, SHIFT(2960), + [6970] = {.count = 1, .reusable = false}, SHIFT(2961), + [6972] = {.count = 1, .reusable = true}, SHIFT(2961), + [6974] = {.count = 1, .reusable = false}, SHIFT(2962), + [6976] = {.count = 1, .reusable = true}, SHIFT(2962), + [6978] = {.count = 1, .reusable = true}, SHIFT(2963), + [6980] = {.count = 1, .reusable = true}, SHIFT(2964), + [6982] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 4), + [6984] = {.count = 1, .reusable = true}, SHIFT(2965), + [6986] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), + [6988] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1761), + [6991] = {.count = 1, .reusable = false}, SHIFT(2966), + [6993] = {.count = 1, .reusable = true}, SHIFT(2967), + [6995] = {.count = 1, .reusable = false}, SHIFT(2968), + [6997] = {.count = 1, .reusable = true}, SHIFT(2969), + [6999] = {.count = 1, .reusable = true}, SHIFT(2971), + [7001] = {.count = 1, .reusable = true}, SHIFT(2972), + [7003] = {.count = 1, .reusable = false}, SHIFT(2974), + [7005] = {.count = 1, .reusable = true}, SHIFT(2974), + [7007] = {.count = 1, .reusable = true}, SHIFT(2973), + [7009] = {.count = 1, .reusable = false}, SHIFT(2976), + [7011] = {.count = 1, .reusable = true}, SHIFT(2976), + [7013] = {.count = 1, .reusable = true}, SHIFT(2975), + [7015] = {.count = 1, .reusable = true}, SHIFT(2977), + [7017] = {.count = 1, .reusable = true}, SHIFT(2978), + [7019] = {.count = 1, .reusable = false}, SHIFT(2979), + [7021] = {.count = 1, .reusable = true}, SHIFT(2979), + [7023] = {.count = 1, .reusable = true}, SHIFT(2980), + [7025] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), + [7027] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), + [7029] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), + [7031] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), + [7033] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 5), + [7035] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 5), + [7037] = {.count = 1, .reusable = true}, SHIFT(2981), + [7039] = {.count = 1, .reusable = true}, SHIFT(2982), + [7041] = {.count = 1, .reusable = true}, SHIFT(2983), + [7043] = {.count = 1, .reusable = true}, SHIFT(2984), + [7045] = {.count = 1, .reusable = false}, SHIFT(2985), + [7047] = {.count = 1, .reusable = true}, SHIFT(2986), + [7049] = {.count = 1, .reusable = true}, SHIFT(2988), + [7051] = {.count = 1, .reusable = true}, SHIFT(2989), + [7053] = {.count = 1, .reusable = false}, SHIFT(2990), + [7055] = {.count = 1, .reusable = true}, SHIFT(2990), + [7057] = {.count = 1, .reusable = true}, SHIFT(2991), + [7059] = {.count = 1, .reusable = false}, SHIFT(2992), + [7061] = {.count = 1, .reusable = true}, SHIFT(2992), + [7063] = {.count = 1, .reusable = true}, SHIFT(2993), + [7065] = {.count = 1, .reusable = false}, SHIFT(2994), + [7067] = {.count = 1, .reusable = true}, SHIFT(2994), + [7069] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 3), + [7071] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 3), + [7073] = {.count = 1, .reusable = true}, SHIFT(2995), + [7075] = {.count = 1, .reusable = true}, SHIFT(2996), + [7077] = {.count = 1, .reusable = false}, SHIFT(2997), + [7079] = {.count = 1, .reusable = true}, SHIFT(2998), + [7081] = {.count = 1, .reusable = true}, SHIFT(3000), + [7083] = {.count = 1, .reusable = true}, SHIFT(3001), + [7085] = {.count = 1, .reusable = false}, SHIFT(3002), + [7087] = {.count = 1, .reusable = true}, SHIFT(3002), + [7089] = {.count = 1, .reusable = true}, SHIFT(3003), + [7091] = {.count = 1, .reusable = false}, SHIFT(3004), + [7093] = {.count = 1, .reusable = true}, SHIFT(3004), + [7095] = {.count = 1, .reusable = true}, SHIFT(3005), + [7097] = {.count = 1, .reusable = false}, SHIFT(3006), + [7099] = {.count = 1, .reusable = true}, SHIFT(3006), + [7101] = {.count = 1, .reusable = true}, SHIFT(3008), + [7103] = {.count = 1, .reusable = true}, SHIFT(3009), + [7105] = {.count = 1, .reusable = false}, SHIFT(3010), + [7107] = {.count = 1, .reusable = true}, SHIFT(3011), + [7109] = {.count = 1, .reusable = true}, SHIFT(3013), + [7111] = {.count = 1, .reusable = true}, SHIFT(3014), + [7113] = {.count = 1, .reusable = false}, SHIFT(3015), + [7115] = {.count = 1, .reusable = true}, SHIFT(3015), + [7117] = {.count = 1, .reusable = true}, SHIFT(3016), + [7119] = {.count = 1, .reusable = false}, SHIFT(3017), + [7121] = {.count = 1, .reusable = true}, SHIFT(3017), + [7123] = {.count = 1, .reusable = true}, SHIFT(3018), + [7125] = {.count = 1, .reusable = false}, SHIFT(3019), + [7127] = {.count = 1, .reusable = true}, SHIFT(3019), + [7129] = {.count = 1, .reusable = true}, SHIFT(3020), + [7131] = {.count = 1, .reusable = true}, SHIFT(3021), + [7133] = {.count = 1, .reusable = true}, SHIFT(3022), + [7135] = {.count = 1, .reusable = false}, SHIFT(3023), + [7137] = {.count = 1, .reusable = true}, SHIFT(3023), + [7139] = {.count = 1, .reusable = false}, SHIFT(3024), + [7141] = {.count = 1, .reusable = true}, SHIFT(3024), + [7143] = {.count = 1, .reusable = true}, SHIFT(3025), + [7145] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 7), + [7147] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 7), + [7149] = {.count = 1, .reusable = true}, SHIFT(3027), + [7151] = {.count = 1, .reusable = true}, SHIFT(3028), + [7153] = {.count = 1, .reusable = true}, SHIFT(3029), + [7155] = {.count = 1, .reusable = true}, SHIFT(3030), + [7157] = {.count = 1, .reusable = false}, SHIFT(3031), + [7159] = {.count = 1, .reusable = true}, SHIFT(3031), + [7161] = {.count = 1, .reusable = false}, SHIFT(3032), + [7163] = {.count = 1, .reusable = true}, SHIFT(3032), + [7165] = {.count = 1, .reusable = true}, SHIFT(3033), + [7167] = {.count = 1, .reusable = true}, SHIFT(3034), + [7169] = {.count = 1, .reusable = true}, SHIFT(3035), + [7171] = {.count = 1, .reusable = true}, SHIFT(3036), + [7173] = {.count = 1, .reusable = false}, SHIFT(3037), + [7175] = {.count = 1, .reusable = true}, SHIFT(3038), + [7177] = {.count = 1, .reusable = true}, SHIFT(3040), + [7179] = {.count = 1, .reusable = true}, SHIFT(3041), + [7181] = {.count = 1, .reusable = false}, SHIFT(3042), + [7183] = {.count = 1, .reusable = true}, SHIFT(3042), + [7185] = {.count = 1, .reusable = true}, SHIFT(3043), + [7187] = {.count = 1, .reusable = false}, SHIFT(3044), + [7189] = {.count = 1, .reusable = true}, SHIFT(3044), + [7191] = {.count = 1, .reusable = true}, SHIFT(3045), + [7193] = {.count = 1, .reusable = false}, SHIFT(3046), + [7195] = {.count = 1, .reusable = true}, SHIFT(3046), + [7197] = {.count = 1, .reusable = true}, SHIFT(3047), + [7199] = {.count = 1, .reusable = true}, SHIFT(3048), + [7201] = {.count = 1, .reusable = true}, SHIFT(3049), + [7203] = {.count = 1, .reusable = false}, SHIFT(3050), + [7205] = {.count = 1, .reusable = true}, SHIFT(3050), + [7207] = {.count = 1, .reusable = false}, SHIFT(3051), + [7209] = {.count = 1, .reusable = true}, SHIFT(3051), + [7211] = {.count = 1, .reusable = true}, SHIFT(3052), + [7213] = {.count = 1, .reusable = true}, SHIFT(3053), + [7215] = {.count = 1, .reusable = true}, SHIFT(3054), + [7217] = {.count = 1, .reusable = true}, SHIFT(3055), + [7219] = {.count = 1, .reusable = true}, SHIFT(3056), + [7221] = {.count = 1, .reusable = false}, SHIFT(3057), + [7223] = {.count = 1, .reusable = true}, SHIFT(3058), + [7225] = {.count = 1, .reusable = true}, SHIFT(3060), + [7227] = {.count = 1, .reusable = true}, SHIFT(3061), + [7229] = {.count = 1, .reusable = false}, SHIFT(3062), + [7231] = {.count = 1, .reusable = true}, SHIFT(3062), + [7233] = {.count = 1, .reusable = true}, SHIFT(3063), + [7235] = {.count = 1, .reusable = false}, SHIFT(3064), + [7237] = {.count = 1, .reusable = true}, SHIFT(3064), + [7239] = {.count = 1, .reusable = true}, SHIFT(3065), + [7241] = {.count = 1, .reusable = false}, SHIFT(3066), + [7243] = {.count = 1, .reusable = true}, SHIFT(3066), + [7245] = {.count = 1, .reusable = true}, SHIFT(3068), + [7247] = {.count = 1, .reusable = true}, SHIFT(3069), + [7249] = {.count = 1, .reusable = true}, SHIFT(3071), + [7251] = {.count = 1, .reusable = true}, SHIFT(3072), + [7253] = {.count = 1, .reusable = true}, SHIFT(3074), + [7255] = {.count = 1, .reusable = true}, SHIFT(3076), + [7257] = {.count = 1, .reusable = true}, SHIFT(3077), + [7259] = {.count = 1, .reusable = true}, SHIFT(3078), + [7261] = {.count = 1, .reusable = false}, SHIFT(3079), + [7263] = {.count = 1, .reusable = true}, SHIFT(3079), + [7265] = {.count = 1, .reusable = false}, SHIFT(3080), + [7267] = {.count = 1, .reusable = true}, SHIFT(3080), + [7269] = {.count = 1, .reusable = true}, SHIFT(3081), + [7271] = {.count = 1, .reusable = true}, SHIFT(3082), + [7273] = {.count = 1, .reusable = true}, SHIFT(3083), + [7275] = {.count = 1, .reusable = true}, SHIFT(3084), + [7277] = {.count = 1, .reusable = false}, SHIFT(3085), + [7279] = {.count = 1, .reusable = true}, SHIFT(3085), + [7281] = {.count = 1, .reusable = false}, SHIFT(3086), + [7283] = {.count = 1, .reusable = true}, SHIFT(3086), + [7285] = {.count = 1, .reusable = true}, SHIFT(3087), + [7287] = {.count = 1, .reusable = true}, SHIFT(3088), + [7289] = {.count = 1, .reusable = true}, SHIFT(3089), + [7291] = {.count = 1, .reusable = true}, SHIFT(3090), + [7293] = {.count = 1, .reusable = true}, SHIFT(3091), + [7295] = {.count = 1, .reusable = false}, SHIFT(3093), + [7297] = {.count = 1, .reusable = false}, SHIFT(3094), + [7299] = {.count = 1, .reusable = true}, SHIFT(3095), + [7301] = {.count = 1, .reusable = true}, SHIFT(3096), + [7303] = {.count = 1, .reusable = true}, SHIFT(3097), + [7305] = {.count = 1, .reusable = false}, SHIFT(3098), + [7307] = {.count = 1, .reusable = true}, SHIFT(3098), + [7309] = {.count = 1, .reusable = true}, SHIFT(3099), + [7311] = {.count = 1, .reusable = false}, SHIFT(3101), + [7313] = {.count = 1, .reusable = true}, SHIFT(3101), + [7315] = {.count = 1, .reusable = true}, SHIFT(3100), + [7317] = {.count = 1, .reusable = true}, SHIFT(3102), + [7319] = {.count = 1, .reusable = false}, SHIFT(3104), + [7321] = {.count = 1, .reusable = true}, SHIFT(3104), + [7323] = {.count = 1, .reusable = true}, SHIFT(3103), + [7325] = {.count = 1, .reusable = true}, SHIFT(3105), + [7327] = {.count = 1, .reusable = true}, SHIFT(3106), + [7329] = {.count = 1, .reusable = true}, SHIFT(3107), + [7331] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2024), + [7334] = {.count = 1, .reusable = false}, SHIFT(3109), + [7336] = {.count = 1, .reusable = true}, SHIFT(3110), + [7338] = {.count = 1, .reusable = false}, SHIFT(3111), + [7340] = {.count = 1, .reusable = true}, SHIFT(3112), + [7342] = {.count = 1, .reusable = true}, SHIFT(3114), + [7344] = {.count = 1, .reusable = true}, SHIFT(3115), + [7346] = {.count = 1, .reusable = false}, SHIFT(3117), + [7348] = {.count = 1, .reusable = true}, SHIFT(3117), + [7350] = {.count = 1, .reusable = true}, SHIFT(3116), + [7352] = {.count = 1, .reusable = false}, SHIFT(3119), + [7354] = {.count = 1, .reusable = true}, SHIFT(3119), + [7356] = {.count = 1, .reusable = true}, SHIFT(3118), + [7358] = {.count = 1, .reusable = true}, SHIFT(3120), + [7360] = {.count = 1, .reusable = true}, SHIFT(3121), + [7362] = {.count = 1, .reusable = false}, SHIFT(3122), + [7364] = {.count = 1, .reusable = true}, SHIFT(3122), + [7366] = {.count = 1, .reusable = true}, SHIFT(3123), + [7368] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2040), + [7371] = {.count = 1, .reusable = false}, SHIFT(3124), + [7373] = {.count = 1, .reusable = true}, SHIFT(3125), + [7375] = {.count = 1, .reusable = false}, SHIFT(3126), + [7377] = {.count = 1, .reusable = true}, SHIFT(3127), + [7379] = {.count = 1, .reusable = true}, SHIFT(3129), + [7381] = {.count = 1, .reusable = true}, SHIFT(3130), + [7383] = {.count = 1, .reusable = false}, SHIFT(3132), + [7385] = {.count = 1, .reusable = true}, SHIFT(3132), + [7387] = {.count = 1, .reusable = true}, SHIFT(3131), + [7389] = {.count = 1, .reusable = false}, SHIFT(3134), + [7391] = {.count = 1, .reusable = true}, SHIFT(3134), + [7393] = {.count = 1, .reusable = true}, SHIFT(3133), + [7395] = {.count = 1, .reusable = true}, SHIFT(3135), + [7397] = {.count = 1, .reusable = true}, SHIFT(3136), + [7399] = {.count = 1, .reusable = false}, SHIFT(3137), + [7401] = {.count = 1, .reusable = true}, SHIFT(3137), + [7403] = {.count = 1, .reusable = true}, SHIFT(3138), + [7405] = {.count = 1, .reusable = true}, SHIFT(3139), + [7407] = {.count = 1, .reusable = true}, SHIFT(3140), + [7409] = {.count = 1, .reusable = false}, SHIFT(3141), + [7411] = {.count = 1, .reusable = true}, SHIFT(3142), + [7413] = {.count = 1, .reusable = true}, SHIFT(3144), + [7415] = {.count = 1, .reusable = true}, SHIFT(3145), + [7417] = {.count = 1, .reusable = false}, SHIFT(3146), + [7419] = {.count = 1, .reusable = true}, SHIFT(3146), + [7421] = {.count = 1, .reusable = true}, SHIFT(3147), + [7423] = {.count = 1, .reusable = false}, SHIFT(3148), + [7425] = {.count = 1, .reusable = true}, SHIFT(3148), + [7427] = {.count = 1, .reusable = true}, SHIFT(3149), + [7429] = {.count = 1, .reusable = false}, SHIFT(3150), + [7431] = {.count = 1, .reusable = true}, SHIFT(3150), + [7433] = {.count = 1, .reusable = true}, SHIFT(3151), + [7435] = {.count = 1, .reusable = false}, SHIFT(3153), + [7437] = {.count = 1, .reusable = false}, SHIFT(3154), + [7439] = {.count = 1, .reusable = true}, SHIFT(3155), + [7441] = {.count = 1, .reusable = true}, SHIFT(3156), + [7443] = {.count = 1, .reusable = true}, SHIFT(3157), + [7445] = {.count = 1, .reusable = false}, SHIFT(3158), + [7447] = {.count = 1, .reusable = true}, SHIFT(3158), + [7449] = {.count = 1, .reusable = true}, SHIFT(3159), + [7451] = {.count = 1, .reusable = false}, SHIFT(3161), + [7453] = {.count = 1, .reusable = true}, SHIFT(3161), + [7455] = {.count = 1, .reusable = true}, SHIFT(3160), + [7457] = {.count = 1, .reusable = true}, SHIFT(3162), + [7459] = {.count = 1, .reusable = false}, SHIFT(3164), + [7461] = {.count = 1, .reusable = true}, SHIFT(3164), + [7463] = {.count = 1, .reusable = true}, SHIFT(3163), + [7465] = {.count = 1, .reusable = true}, SHIFT(3165), + [7467] = {.count = 1, .reusable = true}, SHIFT(3166), + [7469] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 4), + [7471] = {.count = 1, .reusable = true}, SHIFT(3167), + [7473] = {.count = 1, .reusable = true}, SHIFT(3168), + [7475] = {.count = 1, .reusable = false}, SHIFT(3170), + [7477] = {.count = 1, .reusable = false}, SHIFT(3171), + [7479] = {.count = 1, .reusable = true}, SHIFT(3172), + [7481] = {.count = 1, .reusable = true}, SHIFT(3173), + [7483] = {.count = 1, .reusable = true}, SHIFT(3174), + [7485] = {.count = 1, .reusable = false}, SHIFT(3175), + [7487] = {.count = 1, .reusable = true}, SHIFT(3175), + [7489] = {.count = 1, .reusable = true}, SHIFT(3176), + [7491] = {.count = 1, .reusable = false}, SHIFT(3178), + [7493] = {.count = 1, .reusable = true}, SHIFT(3178), + [7495] = {.count = 1, .reusable = true}, SHIFT(3177), + [7497] = {.count = 1, .reusable = true}, SHIFT(3179), + [7499] = {.count = 1, .reusable = false}, SHIFT(3181), + [7501] = {.count = 1, .reusable = true}, SHIFT(3181), + [7503] = {.count = 1, .reusable = true}, SHIFT(3180), + [7505] = {.count = 1, .reusable = true}, SHIFT(3182), + [7507] = {.count = 1, .reusable = true}, SHIFT(3183), + [7509] = {.count = 1, .reusable = true}, REDUCE(sym_elif_clause, 4), + [7511] = {.count = 1, .reusable = true}, SHIFT(3184), + [7513] = {.count = 1, .reusable = true}, SHIFT(3186), + [7515] = {.count = 1, .reusable = false}, SHIFT(3188), + [7517] = {.count = 1, .reusable = false}, SHIFT(3189), + [7519] = {.count = 1, .reusable = true}, SHIFT(3191), + [7521] = {.count = 1, .reusable = true}, SHIFT(3192), + [7523] = {.count = 1, .reusable = false}, SHIFT(3193), + [7525] = {.count = 1, .reusable = true}, SHIFT(3193), + [7527] = {.count = 1, .reusable = true}, SHIFT(3194), + [7529] = {.count = 1, .reusable = true}, SHIFT(3195), + [7531] = {.count = 1, .reusable = true}, SHIFT(3196), + [7533] = {.count = 1, .reusable = false}, SHIFT(3197), + [7535] = {.count = 1, .reusable = true}, SHIFT(3197), + [7537] = {.count = 1, .reusable = true}, SHIFT(3201), + [7539] = {.count = 1, .reusable = true}, SHIFT(3202), + [7541] = {.count = 1, .reusable = true}, SHIFT(3203), + [7543] = {.count = 1, .reusable = true}, SHIFT(3204), + [7545] = {.count = 1, .reusable = true}, SHIFT(3205), + [7547] = {.count = 1, .reusable = false}, SHIFT(3207), + [7549] = {.count = 1, .reusable = false}, SHIFT(3208), + [7551] = {.count = 1, .reusable = true}, SHIFT(3209), + [7553] = {.count = 1, .reusable = true}, SHIFT(3210), + [7555] = {.count = 1, .reusable = true}, SHIFT(3211), + [7557] = {.count = 1, .reusable = false}, SHIFT(3212), + [7559] = {.count = 1, .reusable = true}, SHIFT(3212), + [7561] = {.count = 1, .reusable = true}, SHIFT(3213), + [7563] = {.count = 1, .reusable = false}, SHIFT(3215), + [7565] = {.count = 1, .reusable = true}, SHIFT(3215), + [7567] = {.count = 1, .reusable = true}, SHIFT(3214), + [7569] = {.count = 1, .reusable = true}, SHIFT(3216), + [7571] = {.count = 1, .reusable = false}, SHIFT(3218), + [7573] = {.count = 1, .reusable = true}, SHIFT(3218), + [7575] = {.count = 1, .reusable = true}, SHIFT(3217), + [7577] = {.count = 1, .reusable = true}, SHIFT(3219), + [7579] = {.count = 1, .reusable = true}, SHIFT(3220), + [7581] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2109), + [7584] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2110), + [7587] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2111), + [7590] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2112), + [7593] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2113), + [7596] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2114), + [7599] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2115), + [7602] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2116), + [7605] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2117), + [7608] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2723), + [7611] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2113), + [7614] = {.count = 1, .reusable = true}, SHIFT(3221), + [7616] = {.count = 1, .reusable = false}, SHIFT(3223), + [7618] = {.count = 1, .reusable = false}, SHIFT(3224), + [7620] = {.count = 1, .reusable = true}, SHIFT(3225), + [7622] = {.count = 1, .reusable = true}, SHIFT(3226), + [7624] = {.count = 1, .reusable = true}, SHIFT(3227), + [7626] = {.count = 1, .reusable = false}, SHIFT(3228), + [7628] = {.count = 1, .reusable = true}, SHIFT(3228), + [7630] = {.count = 1, .reusable = true}, SHIFT(3229), + [7632] = {.count = 1, .reusable = false}, SHIFT(3231), + [7634] = {.count = 1, .reusable = true}, SHIFT(3231), + [7636] = {.count = 1, .reusable = true}, SHIFT(3230), + [7638] = {.count = 1, .reusable = true}, SHIFT(3232), + [7640] = {.count = 1, .reusable = false}, SHIFT(3234), + [7642] = {.count = 1, .reusable = true}, SHIFT(3234), + [7644] = {.count = 1, .reusable = true}, SHIFT(3233), + [7646] = {.count = 1, .reusable = true}, SHIFT(3235), + [7648] = {.count = 1, .reusable = true}, SHIFT(3236), + [7650] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2120), + [7653] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2121), + [7656] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2122), + [7659] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2123), + [7662] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2124), + [7665] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2125), + [7668] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2126), + [7671] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2127), + [7674] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2739), + [7677] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2123), + [7680] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2129), + [7683] = {.count = 1, .reusable = false}, SHIFT(3237), + [7685] = {.count = 1, .reusable = true}, SHIFT(3238), + [7687] = {.count = 1, .reusable = false}, SHIFT(3239), + [7689] = {.count = 1, .reusable = true}, SHIFT(3240), + [7691] = {.count = 1, .reusable = true}, SHIFT(3242), + [7693] = {.count = 1, .reusable = true}, SHIFT(3243), + [7695] = {.count = 1, .reusable = false}, SHIFT(3245), + [7697] = {.count = 1, .reusable = true}, SHIFT(3245), + [7699] = {.count = 1, .reusable = true}, SHIFT(3244), + [7701] = {.count = 1, .reusable = false}, SHIFT(3247), + [7703] = {.count = 1, .reusable = true}, SHIFT(3247), + [7705] = {.count = 1, .reusable = true}, SHIFT(3246), + [7707] = {.count = 1, .reusable = true}, SHIFT(3248), + [7709] = {.count = 1, .reusable = true}, SHIFT(3249), + [7711] = {.count = 1, .reusable = false}, SHIFT(3250), + [7713] = {.count = 1, .reusable = true}, SHIFT(3250), + [7715] = {.count = 1, .reusable = true}, SHIFT(3251), + [7717] = {.count = 1, .reusable = true}, SHIFT(3252), + [7719] = {.count = 1, .reusable = true}, SHIFT(3253), + [7721] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2144), + [7724] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2148), + [7727] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2148), + [7730] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2149), + [7733] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2152), + [7736] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2153), + [7739] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1482), + [7742] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1483), + [7745] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2154), + [7748] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1485), + [7751] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1486), + [7754] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1487), + [7757] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1488), + [7760] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2154), + [7763] = {.count = 1, .reusable = false}, SHIFT(3255), + [7765] = {.count = 1, .reusable = true}, SHIFT(3255), + [7767] = {.count = 1, .reusable = true}, SHIFT(3256), + [7769] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2160), + [7772] = {.count = 1, .reusable = false}, SHIFT(3258), + [7774] = {.count = 1, .reusable = true}, SHIFT(3259), + [7776] = {.count = 1, .reusable = false}, SHIFT(3260), + [7778] = {.count = 1, .reusable = true}, SHIFT(3261), + [7780] = {.count = 1, .reusable = true}, SHIFT(3263), + [7782] = {.count = 1, .reusable = true}, SHIFT(3264), + [7784] = {.count = 1, .reusable = false}, SHIFT(3266), + [7786] = {.count = 1, .reusable = true}, SHIFT(3266), + [7788] = {.count = 1, .reusable = true}, SHIFT(3265), + [7790] = {.count = 1, .reusable = false}, SHIFT(3268), + [7792] = {.count = 1, .reusable = true}, SHIFT(3268), + [7794] = {.count = 1, .reusable = true}, SHIFT(3267), + [7796] = {.count = 1, .reusable = true}, SHIFT(3269), + [7798] = {.count = 1, .reusable = true}, SHIFT(3270), + [7800] = {.count = 1, .reusable = false}, SHIFT(3271), + [7802] = {.count = 1, .reusable = true}, SHIFT(3271), + [7804] = {.count = 1, .reusable = true}, SHIFT(3272), + [7806] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2176), + [7809] = {.count = 1, .reusable = false}, SHIFT(3273), + [7811] = {.count = 1, .reusable = true}, SHIFT(3274), + [7813] = {.count = 1, .reusable = false}, SHIFT(3275), + [7815] = {.count = 1, .reusable = true}, SHIFT(3276), + [7817] = {.count = 1, .reusable = true}, SHIFT(3278), + [7819] = {.count = 1, .reusable = true}, SHIFT(3279), + [7821] = {.count = 1, .reusable = false}, SHIFT(3281), + [7823] = {.count = 1, .reusable = true}, SHIFT(3281), + [7825] = {.count = 1, .reusable = true}, SHIFT(3280), + [7827] = {.count = 1, .reusable = false}, SHIFT(3283), + [7829] = {.count = 1, .reusable = true}, SHIFT(3283), + [7831] = {.count = 1, .reusable = true}, SHIFT(3282), + [7833] = {.count = 1, .reusable = true}, SHIFT(3284), + [7835] = {.count = 1, .reusable = true}, SHIFT(3285), + [7837] = {.count = 1, .reusable = false}, SHIFT(3286), + [7839] = {.count = 1, .reusable = true}, SHIFT(3286), + [7841] = {.count = 1, .reusable = true}, SHIFT(3287), + [7843] = {.count = 1, .reusable = true}, SHIFT(3288), + [7845] = {.count = 1, .reusable = true}, SHIFT(3289), + [7847] = {.count = 1, .reusable = false}, SHIFT(3290), + [7849] = {.count = 1, .reusable = true}, SHIFT(3291), + [7851] = {.count = 1, .reusable = true}, SHIFT(3293), + [7853] = {.count = 1, .reusable = true}, SHIFT(3294), + [7855] = {.count = 1, .reusable = false}, SHIFT(3295), + [7857] = {.count = 1, .reusable = true}, SHIFT(3295), + [7859] = {.count = 1, .reusable = true}, SHIFT(3296), + [7861] = {.count = 1, .reusable = false}, SHIFT(3297), + [7863] = {.count = 1, .reusable = true}, SHIFT(3297), + [7865] = {.count = 1, .reusable = true}, SHIFT(3298), + [7867] = {.count = 1, .reusable = false}, SHIFT(3299), + [7869] = {.count = 1, .reusable = true}, SHIFT(3299), + [7871] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), + [7873] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), + [7875] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 2), + [7877] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), + [7879] = {.count = 1, .reusable = true}, SHIFT(3301), + [7881] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), + [7883] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [7885] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [7887] = {.count = 1, .reusable = true}, SHIFT(3302), + [7889] = {.count = 1, .reusable = true}, SHIFT(3303), + [7891] = {.count = 1, .reusable = true}, SHIFT(3304), + [7893] = {.count = 1, .reusable = false}, SHIFT(3305), + [7895] = {.count = 1, .reusable = true}, SHIFT(3306), + [7897] = {.count = 1, .reusable = true}, SHIFT(3307), + [7899] = {.count = 1, .reusable = true}, SHIFT(3308), + [7901] = {.count = 1, .reusable = true}, SHIFT(3309), + [7903] = {.count = 1, .reusable = true}, SHIFT(3310), + [7905] = {.count = 1, .reusable = false}, SHIFT(3312), + [7907] = {.count = 1, .reusable = false}, SHIFT(3306), + [7909] = {.count = 1, .reusable = true}, SHIFT(3313), + [7911] = {.count = 1, .reusable = true}, SHIFT(3314), + [7913] = {.count = 1, .reusable = false}, SHIFT(3315), + [7915] = {.count = 1, .reusable = true}, SHIFT(3316), + [7917] = {.count = 1, .reusable = true}, SHIFT(3317), + [7919] = {.count = 1, .reusable = true}, SHIFT(3318), + [7921] = {.count = 1, .reusable = true}, SHIFT(3319), + [7923] = {.count = 1, .reusable = true}, SHIFT(3320), + [7925] = {.count = 1, .reusable = false}, SHIFT(3321), + [7927] = {.count = 1, .reusable = false}, SHIFT(3316), + [7929] = {.count = 1, .reusable = true}, SHIFT(3322), + [7931] = {.count = 1, .reusable = false}, SHIFT(3324), + [7933] = {.count = 1, .reusable = false}, SHIFT(3325), + [7935] = {.count = 1, .reusable = true}, SHIFT(3327), + [7937] = {.count = 1, .reusable = true}, SHIFT(3328), + [7939] = {.count = 1, .reusable = false}, SHIFT(3329), + [7941] = {.count = 1, .reusable = true}, SHIFT(3329), + [7943] = {.count = 1, .reusable = true}, SHIFT(3330), + [7945] = {.count = 1, .reusable = true}, SHIFT(3331), + [7947] = {.count = 1, .reusable = true}, SHIFT(3332), + [7949] = {.count = 1, .reusable = false}, SHIFT(3333), + [7951] = {.count = 1, .reusable = true}, SHIFT(3333), + [7953] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), + [7955] = {.count = 1, .reusable = true}, SHIFT(3337), + [7957] = {.count = 1, .reusable = true}, SHIFT(3338), + [7959] = {.count = 1, .reusable = false}, SHIFT(3339), + [7961] = {.count = 1, .reusable = false}, SHIFT(3340), + [7963] = {.count = 1, .reusable = true}, SHIFT(3340), + [7965] = {.count = 1, .reusable = true}, SHIFT(3341), + [7967] = {.count = 1, .reusable = false}, SHIFT(3342), + [7969] = {.count = 1, .reusable = true}, SHIFT(3342), + [7971] = {.count = 1, .reusable = true}, SHIFT(3343), + [7973] = {.count = 1, .reusable = true}, SHIFT(3339), + [7975] = {.count = 1, .reusable = false}, SHIFT(3346), + [7977] = {.count = 1, .reusable = true}, SHIFT(3347), + [7979] = {.count = 1, .reusable = true}, SHIFT(3348), + [7981] = {.count = 1, .reusable = false}, SHIFT(3348), + [7983] = {.count = 1, .reusable = true}, SHIFT(2838), + [7985] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(2228), + [7988] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), + [7990] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), + [7992] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), + [7994] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3), + [7996] = {.count = 1, .reusable = true}, SHIFT(3354), + [7998] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 2), + [8000] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 2), + [8002] = {.count = 1, .reusable = true}, SHIFT(3356), + [8004] = {.count = 1, .reusable = true}, SHIFT(3358), + [8006] = {.count = 1, .reusable = true}, SHIFT(3360), + [8008] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7), + [8010] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7), + [8012] = {.count = 1, .reusable = true}, SHIFT(3361), + [8014] = {.count = 1, .reusable = true}, SHIFT(3362), + [8016] = {.count = 1, .reusable = true}, SHIFT(3363), + [8018] = {.count = 1, .reusable = true}, SHIFT(3364), + [8020] = {.count = 1, .reusable = true}, SHIFT(3365), + [8022] = {.count = 1, .reusable = false}, SHIFT(3366), + [8024] = {.count = 1, .reusable = true}, SHIFT(3367), + [8026] = {.count = 1, .reusable = true}, SHIFT(3369), + [8028] = {.count = 1, .reusable = true}, SHIFT(3370), + [8030] = {.count = 1, .reusable = false}, SHIFT(3371), + [8032] = {.count = 1, .reusable = true}, SHIFT(3371), + [8034] = {.count = 1, .reusable = true}, SHIFT(3372), + [8036] = {.count = 1, .reusable = false}, SHIFT(3373), + [8038] = {.count = 1, .reusable = true}, SHIFT(3373), + [8040] = {.count = 1, .reusable = true}, SHIFT(3374), + [8042] = {.count = 1, .reusable = false}, SHIFT(3375), + [8044] = {.count = 1, .reusable = true}, SHIFT(3375), + [8046] = {.count = 1, .reusable = true}, SHIFT(3377), + [8048] = {.count = 1, .reusable = true}, SHIFT(3378), + [8050] = {.count = 1, .reusable = true}, SHIFT(3380), + [8052] = {.count = 1, .reusable = true}, SHIFT(3381), + [8054] = {.count = 1, .reusable = true}, SHIFT(3383), + [8056] = {.count = 1, .reusable = true}, SHIFT(3385), + [8058] = {.count = 1, .reusable = true}, SHIFT(3386), + [8060] = {.count = 1, .reusable = true}, SHIFT(3387), + [8062] = {.count = 1, .reusable = false}, SHIFT(3388), + [8064] = {.count = 1, .reusable = true}, SHIFT(3388), + [8066] = {.count = 1, .reusable = false}, SHIFT(3389), + [8068] = {.count = 1, .reusable = true}, SHIFT(3389), + [8070] = {.count = 1, .reusable = true}, SHIFT(3390), + [8072] = {.count = 1, .reusable = true}, SHIFT(3391), + [8074] = {.count = 1, .reusable = true}, SHIFT(3392), + [8076] = {.count = 1, .reusable = true}, SHIFT(3393), + [8078] = {.count = 1, .reusable = false}, SHIFT(3394), + [8080] = {.count = 1, .reusable = true}, SHIFT(3394), + [8082] = {.count = 1, .reusable = false}, SHIFT(3395), + [8084] = {.count = 1, .reusable = true}, SHIFT(3395), + [8086] = {.count = 1, .reusable = true}, SHIFT(3396), + [8088] = {.count = 1, .reusable = true}, SHIFT(3397), + [8090] = {.count = 1, .reusable = true}, SHIFT(3398), + [8092] = {.count = 1, .reusable = true}, SHIFT(3399), + [8094] = {.count = 1, .reusable = true}, SHIFT(3400), + [8096] = {.count = 1, .reusable = true}, SHIFT(3401), + [8098] = {.count = 1, .reusable = true}, SHIFT(3402), + [8100] = {.count = 1, .reusable = true}, SHIFT(3403), + [8102] = {.count = 1, .reusable = true}, SHIFT(3404), + [8104] = {.count = 1, .reusable = true}, SHIFT(3405), + [8106] = {.count = 1, .reusable = true}, SHIFT(3406), + [8108] = {.count = 1, .reusable = true}, SHIFT(3407), + [8110] = {.count = 1, .reusable = true}, SHIFT(3408), + [8112] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 4), + [8114] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), + [8116] = {.count = 1, .reusable = true}, SHIFT(3409), + [8118] = {.count = 1, .reusable = true}, SHIFT(3410), + [8120] = {.count = 1, .reusable = false}, SHIFT(3411), + [8122] = {.count = 1, .reusable = true}, SHIFT(3412), + [8124] = {.count = 1, .reusable = true}, SHIFT(3414), + [8126] = {.count = 1, .reusable = true}, SHIFT(3415), + [8128] = {.count = 1, .reusable = false}, SHIFT(3416), + [8130] = {.count = 1, .reusable = true}, SHIFT(3416), + [8132] = {.count = 1, .reusable = true}, SHIFT(3417), + [8134] = {.count = 1, .reusable = false}, SHIFT(3418), + [8136] = {.count = 1, .reusable = true}, SHIFT(3418), + [8138] = {.count = 1, .reusable = true}, SHIFT(3419), + [8140] = {.count = 1, .reusable = false}, SHIFT(3420), + [8142] = {.count = 1, .reusable = true}, SHIFT(3420), + [8144] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 5), + [8146] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 5), + [8148] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7), + [8150] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7), + [8152] = {.count = 1, .reusable = true}, SHIFT(3421), + [8154] = {.count = 1, .reusable = true}, SHIFT(3422), + [8156] = {.count = 1, .reusable = true}, SHIFT(3423), + [8158] = {.count = 1, .reusable = false}, SHIFT(3424), + [8160] = {.count = 1, .reusable = true}, SHIFT(3424), + [8162] = {.count = 1, .reusable = false}, SHIFT(3425), + [8164] = {.count = 1, .reusable = true}, SHIFT(3425), + [8166] = {.count = 1, .reusable = true}, SHIFT(3426), + [8168] = {.count = 1, .reusable = true}, SHIFT(3427), + [8170] = {.count = 1, .reusable = true}, SHIFT(3428), + [8172] = {.count = 1, .reusable = true}, SHIFT(3429), + [8174] = {.count = 1, .reusable = false}, SHIFT(3430), + [8176] = {.count = 1, .reusable = true}, SHIFT(3430), + [8178] = {.count = 1, .reusable = false}, SHIFT(3431), + [8180] = {.count = 1, .reusable = true}, SHIFT(3431), + [8182] = {.count = 1, .reusable = true}, SHIFT(3432), + [8184] = {.count = 1, .reusable = true}, SHIFT(3433), + [8186] = {.count = 1, .reusable = true}, SHIFT(3434), + [8188] = {.count = 1, .reusable = true}, SHIFT(3435), + [8190] = {.count = 1, .reusable = false}, SHIFT(3436), + [8192] = {.count = 1, .reusable = true}, SHIFT(3436), + [8194] = {.count = 1, .reusable = false}, SHIFT(3437), + [8196] = {.count = 1, .reusable = true}, SHIFT(3437), + [8198] = {.count = 1, .reusable = true}, SHIFT(3438), + [8200] = {.count = 1, .reusable = true}, SHIFT(3439), + [8202] = {.count = 1, .reusable = true}, SHIFT(3440), + [8204] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 8), + [8206] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 8), + [8208] = {.count = 1, .reusable = true}, SHIFT(3442), + [8210] = {.count = 1, .reusable = true}, SHIFT(3443), + [8212] = {.count = 1, .reusable = true}, SHIFT(3444), + [8214] = {.count = 1, .reusable = true}, SHIFT(3445), + [8216] = {.count = 1, .reusable = true}, SHIFT(3446), + [8218] = {.count = 1, .reusable = true}, SHIFT(3447), + [8220] = {.count = 1, .reusable = false}, SHIFT(3448), + [8222] = {.count = 1, .reusable = true}, SHIFT(3448), + [8224] = {.count = 1, .reusable = false}, SHIFT(3449), + [8226] = {.count = 1, .reusable = true}, SHIFT(3449), + [8228] = {.count = 1, .reusable = true}, SHIFT(3450), + [8230] = {.count = 1, .reusable = true}, SHIFT(3451), + [8232] = {.count = 1, .reusable = true}, SHIFT(3452), + [8234] = {.count = 1, .reusable = true}, SHIFT(3453), + [8236] = {.count = 1, .reusable = true}, SHIFT(3454), + [8238] = {.count = 1, .reusable = true}, SHIFT(3455), + [8240] = {.count = 1, .reusable = false}, SHIFT(3456), + [8242] = {.count = 1, .reusable = true}, SHIFT(3456), + [8244] = {.count = 1, .reusable = false}, SHIFT(3457), + [8246] = {.count = 1, .reusable = true}, SHIFT(3457), + [8248] = {.count = 1, .reusable = true}, SHIFT(3458), + [8250] = {.count = 1, .reusable = true}, SHIFT(3460), + [8252] = {.count = 1, .reusable = true}, SHIFT(3461), + [8254] = {.count = 1, .reusable = true}, SHIFT(3462), + [8256] = {.count = 1, .reusable = true}, SHIFT(3463), + [8258] = {.count = 1, .reusable = true}, SHIFT(3464), + [8260] = {.count = 1, .reusable = true}, SHIFT(3465), + [8262] = {.count = 1, .reusable = true}, SHIFT(3466), + [8264] = {.count = 1, .reusable = true}, SHIFT(3467), + [8266] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2595), + [8269] = {.count = 1, .reusable = false}, SHIFT(3468), + [8271] = {.count = 1, .reusable = true}, SHIFT(3469), + [8273] = {.count = 1, .reusable = false}, SHIFT(3470), + [8275] = {.count = 1, .reusable = true}, SHIFT(3471), + [8277] = {.count = 1, .reusable = true}, SHIFT(3473), + [8279] = {.count = 1, .reusable = true}, SHIFT(3474), + [8281] = {.count = 1, .reusable = false}, SHIFT(3476), + [8283] = {.count = 1, .reusable = true}, SHIFT(3476), + [8285] = {.count = 1, .reusable = true}, SHIFT(3475), + [8287] = {.count = 1, .reusable = false}, SHIFT(3478), + [8289] = {.count = 1, .reusable = true}, SHIFT(3478), + [8291] = {.count = 1, .reusable = true}, SHIFT(3477), + [8293] = {.count = 1, .reusable = true}, SHIFT(3479), + [8295] = {.count = 1, .reusable = true}, SHIFT(3480), + [8297] = {.count = 1, .reusable = false}, SHIFT(3481), + [8299] = {.count = 1, .reusable = true}, SHIFT(3481), + [8301] = {.count = 1, .reusable = true}, SHIFT(3482), + [8303] = {.count = 1, .reusable = true}, SHIFT(3483), + [8305] = {.count = 1, .reusable = true}, SHIFT(3484), + [8307] = {.count = 1, .reusable = true}, SHIFT(3485), + [8309] = {.count = 1, .reusable = false}, SHIFT(3486), + [8311] = {.count = 1, .reusable = true}, SHIFT(3487), + [8313] = {.count = 1, .reusable = true}, SHIFT(3489), + [8315] = {.count = 1, .reusable = true}, SHIFT(3490), + [8317] = {.count = 1, .reusable = false}, SHIFT(3491), + [8319] = {.count = 1, .reusable = true}, SHIFT(3491), + [8321] = {.count = 1, .reusable = true}, SHIFT(3492), + [8323] = {.count = 1, .reusable = false}, SHIFT(3493), + [8325] = {.count = 1, .reusable = true}, SHIFT(3493), + [8327] = {.count = 1, .reusable = true}, SHIFT(3494), + [8329] = {.count = 1, .reusable = false}, SHIFT(3495), + [8331] = {.count = 1, .reusable = true}, SHIFT(3495), + [8333] = {.count = 1, .reusable = true}, SHIFT(3496), + [8335] = {.count = 1, .reusable = true}, SHIFT(3497), + [8337] = {.count = 1, .reusable = false}, SHIFT(3498), + [8339] = {.count = 1, .reusable = true}, SHIFT(3499), + [8341] = {.count = 1, .reusable = true}, SHIFT(3501), + [8343] = {.count = 1, .reusable = true}, SHIFT(3502), + [8345] = {.count = 1, .reusable = false}, SHIFT(3503), + [8347] = {.count = 1, .reusable = true}, SHIFT(3503), + [8349] = {.count = 1, .reusable = true}, SHIFT(3504), + [8351] = {.count = 1, .reusable = false}, SHIFT(3505), + [8353] = {.count = 1, .reusable = true}, SHIFT(3505), + [8355] = {.count = 1, .reusable = true}, SHIFT(3506), + [8357] = {.count = 1, .reusable = false}, SHIFT(3507), + [8359] = {.count = 1, .reusable = true}, SHIFT(3507), + [8361] = {.count = 1, .reusable = true}, SHIFT(3508), + [8363] = {.count = 1, .reusable = true}, SHIFT(3509), + [8365] = {.count = 1, .reusable = true}, SHIFT(3510), + [8367] = {.count = 1, .reusable = false}, SHIFT(3511), + [8369] = {.count = 1, .reusable = true}, SHIFT(3511), + [8371] = {.count = 1, .reusable = false}, SHIFT(3512), + [8373] = {.count = 1, .reusable = true}, SHIFT(3512), + [8375] = {.count = 1, .reusable = true}, SHIFT(3513), + [8377] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2663), + [8380] = {.count = 1, .reusable = false}, SHIFT(3514), + [8382] = {.count = 1, .reusable = true}, SHIFT(3515), + [8384] = {.count = 1, .reusable = false}, SHIFT(3516), + [8386] = {.count = 1, .reusable = true}, SHIFT(3517), + [8388] = {.count = 1, .reusable = true}, SHIFT(3519), + [8390] = {.count = 1, .reusable = true}, SHIFT(3520), + [8392] = {.count = 1, .reusable = false}, SHIFT(3522), + [8394] = {.count = 1, .reusable = true}, SHIFT(3522), + [8396] = {.count = 1, .reusable = true}, SHIFT(3521), + [8398] = {.count = 1, .reusable = false}, SHIFT(3524), + [8400] = {.count = 1, .reusable = true}, SHIFT(3524), + [8402] = {.count = 1, .reusable = true}, SHIFT(3523), + [8404] = {.count = 1, .reusable = true}, SHIFT(3525), + [8406] = {.count = 1, .reusable = true}, SHIFT(3526), + [8408] = {.count = 1, .reusable = false}, SHIFT(3527), + [8410] = {.count = 1, .reusable = true}, SHIFT(3527), + [8412] = {.count = 1, .reusable = true}, SHIFT(3528), + [8414] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2681), + [8417] = {.count = 1, .reusable = false}, SHIFT(3529), + [8419] = {.count = 1, .reusable = true}, SHIFT(3530), + [8421] = {.count = 1, .reusable = false}, SHIFT(3531), + [8423] = {.count = 1, .reusable = true}, SHIFT(3532), + [8425] = {.count = 1, .reusable = true}, SHIFT(3534), + [8427] = {.count = 1, .reusable = true}, SHIFT(3535), + [8429] = {.count = 1, .reusable = false}, SHIFT(3537), + [8431] = {.count = 1, .reusable = true}, SHIFT(3537), + [8433] = {.count = 1, .reusable = true}, SHIFT(3536), + [8435] = {.count = 1, .reusable = false}, SHIFT(3539), + [8437] = {.count = 1, .reusable = true}, SHIFT(3539), + [8439] = {.count = 1, .reusable = true}, SHIFT(3538), + [8441] = {.count = 1, .reusable = true}, SHIFT(3540), + [8443] = {.count = 1, .reusable = true}, SHIFT(3541), + [8445] = {.count = 1, .reusable = false}, SHIFT(3542), + [8447] = {.count = 1, .reusable = true}, SHIFT(3542), + [8449] = {.count = 1, .reusable = true}, SHIFT(3543), + [8451] = {.count = 1, .reusable = true}, SHIFT(3544), + [8453] = {.count = 1, .reusable = true}, SHIFT(3545), + [8455] = {.count = 1, .reusable = false}, SHIFT(3547), + [8457] = {.count = 1, .reusable = false}, SHIFT(3548), + [8459] = {.count = 1, .reusable = true}, SHIFT(3549), + [8461] = {.count = 1, .reusable = true}, SHIFT(3550), + [8463] = {.count = 1, .reusable = true}, SHIFT(3551), + [8465] = {.count = 1, .reusable = false}, SHIFT(3552), + [8467] = {.count = 1, .reusable = true}, SHIFT(3552), + [8469] = {.count = 1, .reusable = true}, SHIFT(3553), + [8471] = {.count = 1, .reusable = false}, SHIFT(3555), + [8473] = {.count = 1, .reusable = true}, SHIFT(3555), + [8475] = {.count = 1, .reusable = true}, SHIFT(3554), + [8477] = {.count = 1, .reusable = true}, SHIFT(3556), + [8479] = {.count = 1, .reusable = false}, SHIFT(3558), + [8481] = {.count = 1, .reusable = true}, SHIFT(3558), + [8483] = {.count = 1, .reusable = true}, SHIFT(3557), + [8485] = {.count = 1, .reusable = true}, SHIFT(3559), + [8487] = {.count = 1, .reusable = true}, SHIFT(3560), + [8489] = {.count = 1, .reusable = true}, SHIFT(3561), + [8491] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2708), + [8494] = {.count = 1, .reusable = false}, SHIFT(3563), + [8496] = {.count = 1, .reusable = true}, SHIFT(3564), + [8498] = {.count = 1, .reusable = false}, SHIFT(3565), + [8500] = {.count = 1, .reusable = true}, SHIFT(3566), + [8502] = {.count = 1, .reusable = true}, SHIFT(3568), + [8504] = {.count = 1, .reusable = true}, SHIFT(3569), + [8506] = {.count = 1, .reusable = false}, SHIFT(3571), + [8508] = {.count = 1, .reusable = true}, SHIFT(3571), + [8510] = {.count = 1, .reusable = true}, SHIFT(3570), + [8512] = {.count = 1, .reusable = false}, SHIFT(3573), + [8514] = {.count = 1, .reusable = true}, SHIFT(3573), + [8516] = {.count = 1, .reusable = true}, SHIFT(3572), + [8518] = {.count = 1, .reusable = true}, SHIFT(3574), + [8520] = {.count = 1, .reusable = true}, SHIFT(3575), + [8522] = {.count = 1, .reusable = false}, SHIFT(3576), + [8524] = {.count = 1, .reusable = true}, SHIFT(3576), + [8526] = {.count = 1, .reusable = true}, SHIFT(3577), + [8528] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2724), + [8531] = {.count = 1, .reusable = false}, SHIFT(3578), + [8533] = {.count = 1, .reusable = true}, SHIFT(3579), + [8535] = {.count = 1, .reusable = false}, SHIFT(3580), + [8537] = {.count = 1, .reusable = true}, SHIFT(3581), + [8539] = {.count = 1, .reusable = true}, SHIFT(3583), + [8541] = {.count = 1, .reusable = true}, SHIFT(3584), + [8543] = {.count = 1, .reusable = false}, SHIFT(3586), + [8545] = {.count = 1, .reusable = true}, SHIFT(3586), + [8547] = {.count = 1, .reusable = true}, SHIFT(3585), + [8549] = {.count = 1, .reusable = false}, SHIFT(3588), + [8551] = {.count = 1, .reusable = true}, SHIFT(3588), + [8553] = {.count = 1, .reusable = true}, SHIFT(3587), + [8555] = {.count = 1, .reusable = true}, SHIFT(3589), + [8557] = {.count = 1, .reusable = true}, SHIFT(3590), + [8559] = {.count = 1, .reusable = false}, SHIFT(3591), + [8561] = {.count = 1, .reusable = true}, SHIFT(3591), + [8563] = {.count = 1, .reusable = true}, SHIFT(3592), + [8565] = {.count = 1, .reusable = true}, SHIFT(3593), + [8567] = {.count = 1, .reusable = true}, SHIFT(3594), + [8569] = {.count = 1, .reusable = false}, SHIFT(3595), + [8571] = {.count = 1, .reusable = true}, SHIFT(3596), + [8573] = {.count = 1, .reusable = true}, SHIFT(3598), + [8575] = {.count = 1, .reusable = true}, SHIFT(3599), + [8577] = {.count = 1, .reusable = false}, SHIFT(3600), + [8579] = {.count = 1, .reusable = true}, SHIFT(3600), + [8581] = {.count = 1, .reusable = true}, SHIFT(3601), + [8583] = {.count = 1, .reusable = false}, SHIFT(3602), + [8585] = {.count = 1, .reusable = true}, SHIFT(3602), + [8587] = {.count = 1, .reusable = true}, SHIFT(3603), + [8589] = {.count = 1, .reusable = false}, SHIFT(3604), + [8591] = {.count = 1, .reusable = true}, SHIFT(3604), + [8593] = {.count = 1, .reusable = true}, SHIFT(3606), + [8595] = {.count = 1, .reusable = true}, SHIFT(3607), + [8597] = {.count = 1, .reusable = true}, SHIFT(3608), + [8599] = {.count = 1, .reusable = false}, SHIFT(3609), + [8601] = {.count = 1, .reusable = true}, SHIFT(3610), + [8603] = {.count = 1, .reusable = true}, SHIFT(3612), + [8605] = {.count = 1, .reusable = true}, SHIFT(3613), + [8607] = {.count = 1, .reusable = false}, SHIFT(3614), + [8609] = {.count = 1, .reusable = true}, SHIFT(3614), + [8611] = {.count = 1, .reusable = true}, SHIFT(3615), + [8613] = {.count = 1, .reusable = false}, SHIFT(3616), + [8615] = {.count = 1, .reusable = true}, SHIFT(3616), + [8617] = {.count = 1, .reusable = true}, SHIFT(3617), + [8619] = {.count = 1, .reusable = false}, SHIFT(3618), + [8621] = {.count = 1, .reusable = true}, SHIFT(3618), + [8623] = {.count = 1, .reusable = true}, SHIFT(3619), + [8625] = {.count = 1, .reusable = true}, SHIFT(3620), + [8627] = {.count = 1, .reusable = false}, SHIFT(3621), + [8629] = {.count = 1, .reusable = true}, SHIFT(3622), + [8631] = {.count = 1, .reusable = true}, SHIFT(3624), + [8633] = {.count = 1, .reusable = true}, SHIFT(3625), + [8635] = {.count = 1, .reusable = false}, SHIFT(3626), + [8637] = {.count = 1, .reusable = true}, SHIFT(3626), + [8639] = {.count = 1, .reusable = true}, SHIFT(3627), + [8641] = {.count = 1, .reusable = false}, SHIFT(3628), + [8643] = {.count = 1, .reusable = true}, SHIFT(3628), + [8645] = {.count = 1, .reusable = true}, SHIFT(3629), + [8647] = {.count = 1, .reusable = false}, SHIFT(3630), + [8649] = {.count = 1, .reusable = true}, SHIFT(3630), + [8651] = {.count = 1, .reusable = true}, SHIFT(3631), + [8653] = {.count = 1, .reusable = true}, SHIFT(3632), + [8655] = {.count = 1, .reusable = true}, SHIFT(3633), + [8657] = {.count = 1, .reusable = false}, SHIFT(3634), + [8659] = {.count = 1, .reusable = true}, SHIFT(3634), + [8661] = {.count = 1, .reusable = false}, SHIFT(3635), + [8663] = {.count = 1, .reusable = true}, SHIFT(3635), + [8665] = {.count = 1, .reusable = true}, SHIFT(3636), + [8667] = {.count = 1, .reusable = true}, SHIFT(3637), + [8669] = {.count = 1, .reusable = true}, SHIFT(3638), + [8671] = {.count = 1, .reusable = true}, SHIFT(3639), + [8673] = {.count = 1, .reusable = true}, SHIFT(3640), + [8675] = {.count = 1, .reusable = false}, SHIFT(3641), + [8677] = {.count = 1, .reusable = true}, SHIFT(3642), + [8679] = {.count = 1, .reusable = true}, SHIFT(3643), + [8681] = {.count = 1, .reusable = true}, SHIFT(3644), + [8683] = {.count = 1, .reusable = true}, SHIFT(3645), + [8685] = {.count = 1, .reusable = true}, SHIFT(3646), + [8687] = {.count = 1, .reusable = true}, SHIFT(3647), + [8689] = {.count = 1, .reusable = true}, SHIFT(3648), + [8691] = {.count = 1, .reusable = false}, SHIFT(3650), + [8693] = {.count = 1, .reusable = false}, SHIFT(3651), + [8695] = {.count = 1, .reusable = true}, SHIFT(3653), + [8697] = {.count = 1, .reusable = true}, SHIFT(3654), + [8699] = {.count = 1, .reusable = false}, SHIFT(3655), + [8701] = {.count = 1, .reusable = true}, SHIFT(3655), + [8703] = {.count = 1, .reusable = true}, SHIFT(3656), + [8705] = {.count = 1, .reusable = true}, SHIFT(3657), + [8707] = {.count = 1, .reusable = true}, SHIFT(3658), + [8709] = {.count = 1, .reusable = false}, SHIFT(3659), + [8711] = {.count = 1, .reusable = true}, SHIFT(3659), + [8713] = {.count = 1, .reusable = false}, SHIFT(3663), + [8715] = {.count = 1, .reusable = true}, SHIFT(3664), + [8717] = {.count = 1, .reusable = false}, SHIFT(3666), + [8719] = {.count = 1, .reusable = false}, SHIFT(3667), + [8721] = {.count = 1, .reusable = true}, SHIFT(3669), + [8723] = {.count = 1, .reusable = true}, SHIFT(3670), + [8725] = {.count = 1, .reusable = false}, SHIFT(3671), + [8727] = {.count = 1, .reusable = true}, SHIFT(3671), + [8729] = {.count = 1, .reusable = true}, SHIFT(3672), + [8731] = {.count = 1, .reusable = true}, SHIFT(3673), + [8733] = {.count = 1, .reusable = true}, SHIFT(3674), + [8735] = {.count = 1, .reusable = false}, SHIFT(3675), + [8737] = {.count = 1, .reusable = true}, SHIFT(3675), + [8739] = {.count = 1, .reusable = false}, SHIFT(3679), + [8741] = {.count = 1, .reusable = true}, SHIFT(3680), + [8743] = {.count = 1, .reusable = false}, SHIFT(3682), + [8745] = {.count = 1, .reusable = false}, SHIFT(3683), + [8747] = {.count = 1, .reusable = true}, SHIFT(3684), + [8749] = {.count = 1, .reusable = true}, SHIFT(3685), + [8751] = {.count = 1, .reusable = true}, SHIFT(3686), + [8753] = {.count = 1, .reusable = false}, SHIFT(3687), + [8755] = {.count = 1, .reusable = true}, SHIFT(3687), + [8757] = {.count = 1, .reusable = true}, SHIFT(3688), + [8759] = {.count = 1, .reusable = false}, SHIFT(3690), + [8761] = {.count = 1, .reusable = true}, SHIFT(3690), + [8763] = {.count = 1, .reusable = true}, SHIFT(3689), + [8765] = {.count = 1, .reusable = true}, SHIFT(3691), + [8767] = {.count = 1, .reusable = false}, SHIFT(3693), + [8769] = {.count = 1, .reusable = true}, SHIFT(3693), + [8771] = {.count = 1, .reusable = true}, SHIFT(3692), + [8773] = {.count = 1, .reusable = true}, SHIFT(3694), + [8775] = {.count = 1, .reusable = true}, SHIFT(3695), + [8777] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), + [8779] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [8781] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [8783] = {.count = 1, .reusable = false}, SHIFT(3696), + [8785] = {.count = 1, .reusable = true}, SHIFT(3696), + [8787] = {.count = 1, .reusable = true}, SHIFT(3701), + [8789] = {.count = 1, .reusable = true}, SHIFT(3702), + [8791] = {.count = 1, .reusable = true}, SHIFT(3703), + [8793] = {.count = 1, .reusable = true}, SHIFT(3704), + [8795] = {.count = 1, .reusable = false}, SHIFT(3705), + [8797] = {.count = 1, .reusable = true}, SHIFT(3705), + [8799] = {.count = 1, .reusable = true}, SHIFT(3707), + [8801] = {.count = 1, .reusable = true}, SHIFT(3708), + [8803] = {.count = 1, .reusable = true}, SHIFT(3709), + [8805] = {.count = 1, .reusable = false}, SHIFT(3711), + [8807] = {.count = 1, .reusable = true}, SHIFT(3711), + [8809] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), + [8811] = {.count = 1, .reusable = true}, SHIFT(3714), + [8813] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), + [8815] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), + [8817] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), + [8819] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4), + [8821] = {.count = 1, .reusable = true}, SHIFT(3715), + [8823] = {.count = 1, .reusable = true}, SHIFT(3716), + [8825] = {.count = 1, .reusable = true}, SHIFT(3721), + [8827] = {.count = 1, .reusable = true}, SHIFT(3722), + [8829] = {.count = 1, .reusable = true}, SHIFT(3724), + [8831] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 2), + [8833] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 2), + [8835] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8), + [8837] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8), + [8839] = {.count = 1, .reusable = true}, SHIFT(3725), + [8841] = {.count = 1, .reusable = true}, SHIFT(3726), + [8843] = {.count = 1, .reusable = true}, SHIFT(3727), + [8845] = {.count = 1, .reusable = false}, SHIFT(3728), + [8847] = {.count = 1, .reusable = true}, SHIFT(3728), + [8849] = {.count = 1, .reusable = false}, SHIFT(3729), + [8851] = {.count = 1, .reusable = true}, SHIFT(3729), + [8853] = {.count = 1, .reusable = true}, SHIFT(3730), + [8855] = {.count = 1, .reusable = true}, SHIFT(3732), + [8857] = {.count = 1, .reusable = true}, SHIFT(3733), + [8859] = {.count = 1, .reusable = true}, SHIFT(3734), + [8861] = {.count = 1, .reusable = true}, SHIFT(3735), + [8863] = {.count = 1, .reusable = true}, SHIFT(3736), + [8865] = {.count = 1, .reusable = true}, SHIFT(3737), + [8867] = {.count = 1, .reusable = true}, SHIFT(3738), + [8869] = {.count = 1, .reusable = true}, SHIFT(3739), + [8871] = {.count = 1, .reusable = true}, SHIFT(3740), + [8873] = {.count = 1, .reusable = true}, SHIFT(3741), + [8875] = {.count = 1, .reusable = true}, SHIFT(3742), + [8877] = {.count = 1, .reusable = false}, SHIFT(3743), + [8879] = {.count = 1, .reusable = true}, SHIFT(3743), + [8881] = {.count = 1, .reusable = false}, SHIFT(3744), + [8883] = {.count = 1, .reusable = true}, SHIFT(3744), + [8885] = {.count = 1, .reusable = true}, SHIFT(3745), + [8887] = {.count = 1, .reusable = true}, SHIFT(3746), + [8889] = {.count = 1, .reusable = true}, SHIFT(3747), + [8891] = {.count = 1, .reusable = true}, SHIFT(3748), + [8893] = {.count = 1, .reusable = true}, SHIFT(3749), + [8895] = {.count = 1, .reusable = true}, SHIFT(3750), + [8897] = {.count = 1, .reusable = true}, SHIFT(3751), + [8899] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 9), + [8901] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 9), + [8903] = {.count = 1, .reusable = true}, SHIFT(3753), + [8905] = {.count = 1, .reusable = true}, SHIFT(3754), + [8907] = {.count = 1, .reusable = true}, SHIFT(3755), + [8909] = {.count = 1, .reusable = true}, SHIFT(3756), + [8911] = {.count = 1, .reusable = true}, SHIFT(3758), + [8913] = {.count = 1, .reusable = true}, SHIFT(3759), + [8915] = {.count = 1, .reusable = true}, SHIFT(3760), + [8917] = {.count = 1, .reusable = false}, SHIFT(3761), + [8919] = {.count = 1, .reusable = true}, SHIFT(3762), + [8921] = {.count = 1, .reusable = true}, SHIFT(3764), + [8923] = {.count = 1, .reusable = true}, SHIFT(3765), + [8925] = {.count = 1, .reusable = false}, SHIFT(3766), + [8927] = {.count = 1, .reusable = true}, SHIFT(3766), + [8929] = {.count = 1, .reusable = true}, SHIFT(3767), + [8931] = {.count = 1, .reusable = false}, SHIFT(3768), + [8933] = {.count = 1, .reusable = true}, SHIFT(3768), + [8935] = {.count = 1, .reusable = true}, SHIFT(3769), + [8937] = {.count = 1, .reusable = false}, SHIFT(3770), + [8939] = {.count = 1, .reusable = true}, SHIFT(3770), + [8941] = {.count = 1, .reusable = true}, SHIFT(3771), + [8943] = {.count = 1, .reusable = true}, SHIFT(3772), + [8945] = {.count = 1, .reusable = true}, SHIFT(3773), + [8947] = {.count = 1, .reusable = false}, SHIFT(3774), + [8949] = {.count = 1, .reusable = true}, SHIFT(3774), + [8951] = {.count = 1, .reusable = false}, SHIFT(3775), + [8953] = {.count = 1, .reusable = true}, SHIFT(3775), + [8955] = {.count = 1, .reusable = true}, SHIFT(3776), + [8957] = {.count = 1, .reusable = true}, SHIFT(3777), + [8959] = {.count = 1, .reusable = true}, SHIFT(3778), + [8961] = {.count = 1, .reusable = true}, SHIFT(3779), + [8963] = {.count = 1, .reusable = false}, SHIFT(3780), + [8965] = {.count = 1, .reusable = true}, SHIFT(3780), + [8967] = {.count = 1, .reusable = false}, SHIFT(3781), + [8969] = {.count = 1, .reusable = true}, SHIFT(3781), + [8971] = {.count = 1, .reusable = true}, SHIFT(3782), + [8973] = {.count = 1, .reusable = true}, SHIFT(3783), + [8975] = {.count = 1, .reusable = true}, SHIFT(3784), + [8977] = {.count = 1, .reusable = true}, SHIFT(3785), + [8979] = {.count = 1, .reusable = true}, SHIFT(3786), + [8981] = {.count = 1, .reusable = false}, SHIFT(3787), + [8983] = {.count = 1, .reusable = true}, SHIFT(3788), + [8985] = {.count = 1, .reusable = true}, SHIFT(3790), + [8987] = {.count = 1, .reusable = true}, SHIFT(3791), + [8989] = {.count = 1, .reusable = false}, SHIFT(3792), + [8991] = {.count = 1, .reusable = true}, SHIFT(3792), + [8993] = {.count = 1, .reusable = true}, SHIFT(3793), + [8995] = {.count = 1, .reusable = false}, SHIFT(3794), + [8997] = {.count = 1, .reusable = true}, SHIFT(3794), + [8999] = {.count = 1, .reusable = true}, SHIFT(3795), + [9001] = {.count = 1, .reusable = false}, SHIFT(3796), + [9003] = {.count = 1, .reusable = true}, SHIFT(3796), + [9005] = {.count = 1, .reusable = true}, SHIFT(3797), + [9007] = {.count = 1, .reusable = true}, SHIFT(3798), + [9009] = {.count = 1, .reusable = false}, SHIFT(3799), + [9011] = {.count = 1, .reusable = true}, SHIFT(3800), + [9013] = {.count = 1, .reusable = true}, SHIFT(3802), + [9015] = {.count = 1, .reusable = true}, SHIFT(3803), + [9017] = {.count = 1, .reusable = false}, SHIFT(3804), + [9019] = {.count = 1, .reusable = true}, SHIFT(3804), + [9021] = {.count = 1, .reusable = true}, SHIFT(3805), + [9023] = {.count = 1, .reusable = false}, SHIFT(3806), + [9025] = {.count = 1, .reusable = true}, SHIFT(3806), + [9027] = {.count = 1, .reusable = true}, SHIFT(3807), + [9029] = {.count = 1, .reusable = false}, SHIFT(3808), + [9031] = {.count = 1, .reusable = true}, SHIFT(3808), + [9033] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3186), + [9036] = {.count = 1, .reusable = false}, SHIFT(3809), + [9038] = {.count = 1, .reusable = true}, SHIFT(3810), + [9040] = {.count = 1, .reusable = false}, SHIFT(3811), + [9042] = {.count = 1, .reusable = true}, SHIFT(3812), + [9044] = {.count = 1, .reusable = true}, SHIFT(3814), + [9046] = {.count = 1, .reusable = true}, SHIFT(3815), + [9048] = {.count = 1, .reusable = false}, SHIFT(3817), + [9050] = {.count = 1, .reusable = true}, SHIFT(3817), + [9052] = {.count = 1, .reusable = true}, SHIFT(3816), + [9054] = {.count = 1, .reusable = false}, SHIFT(3819), + [9056] = {.count = 1, .reusable = true}, SHIFT(3819), + [9058] = {.count = 1, .reusable = true}, SHIFT(3818), + [9060] = {.count = 1, .reusable = true}, SHIFT(3820), + [9062] = {.count = 1, .reusable = true}, SHIFT(3821), + [9064] = {.count = 1, .reusable = false}, SHIFT(3822), + [9066] = {.count = 1, .reusable = true}, SHIFT(3822), + [9068] = {.count = 1, .reusable = true}, SHIFT(3823), + [9070] = {.count = 1, .reusable = true}, SHIFT(3824), + [9072] = {.count = 1, .reusable = true}, SHIFT(3825), + [9074] = {.count = 1, .reusable = true}, SHIFT(3826), + [9076] = {.count = 1, .reusable = false}, SHIFT(3827), + [9078] = {.count = 1, .reusable = true}, SHIFT(3828), + [9080] = {.count = 1, .reusable = true}, SHIFT(3830), + [9082] = {.count = 1, .reusable = true}, SHIFT(3831), + [9084] = {.count = 1, .reusable = false}, SHIFT(3832), + [9086] = {.count = 1, .reusable = true}, SHIFT(3832), + [9088] = {.count = 1, .reusable = true}, SHIFT(3833), + [9090] = {.count = 1, .reusable = false}, SHIFT(3834), + [9092] = {.count = 1, .reusable = true}, SHIFT(3834), + [9094] = {.count = 1, .reusable = true}, SHIFT(3835), + [9096] = {.count = 1, .reusable = false}, SHIFT(3836), + [9098] = {.count = 1, .reusable = true}, SHIFT(3836), + [9100] = {.count = 1, .reusable = true}, SHIFT(3837), + [9102] = {.count = 1, .reusable = true}, SHIFT(3838), + [9104] = {.count = 1, .reusable = false}, SHIFT(3839), + [9106] = {.count = 1, .reusable = true}, SHIFT(3840), + [9108] = {.count = 1, .reusable = true}, SHIFT(3842), + [9110] = {.count = 1, .reusable = true}, SHIFT(3843), + [9112] = {.count = 1, .reusable = false}, SHIFT(3844), + [9114] = {.count = 1, .reusable = true}, SHIFT(3844), + [9116] = {.count = 1, .reusable = true}, SHIFT(3845), + [9118] = {.count = 1, .reusable = false}, SHIFT(3846), + [9120] = {.count = 1, .reusable = true}, SHIFT(3846), + [9122] = {.count = 1, .reusable = true}, SHIFT(3847), + [9124] = {.count = 1, .reusable = false}, SHIFT(3848), + [9126] = {.count = 1, .reusable = true}, SHIFT(3848), + [9128] = {.count = 1, .reusable = true}, SHIFT(3849), + [9130] = {.count = 1, .reusable = true}, SHIFT(3850), + [9132] = {.count = 1, .reusable = true}, SHIFT(3851), + [9134] = {.count = 1, .reusable = false}, SHIFT(3852), + [9136] = {.count = 1, .reusable = true}, SHIFT(3852), + [9138] = {.count = 1, .reusable = false}, SHIFT(3853), + [9140] = {.count = 1, .reusable = true}, SHIFT(3853), + [9142] = {.count = 1, .reusable = true}, SHIFT(3854), + [9144] = {.count = 1, .reusable = true}, SHIFT(3855), + [9146] = {.count = 1, .reusable = true}, SHIFT(3856), + [9148] = {.count = 1, .reusable = true}, SHIFT(3857), + [9150] = {.count = 1, .reusable = false}, SHIFT(3858), + [9152] = {.count = 1, .reusable = true}, SHIFT(3858), + [9154] = {.count = 1, .reusable = false}, SHIFT(3859), + [9156] = {.count = 1, .reusable = true}, SHIFT(3859), + [9158] = {.count = 1, .reusable = true}, SHIFT(3860), + [9160] = {.count = 1, .reusable = true}, SHIFT(3861), + [9162] = {.count = 1, .reusable = true}, SHIFT(3862), + [9164] = {.count = 1, .reusable = true}, SHIFT(3863), + [9166] = {.count = 1, .reusable = false}, SHIFT(3864), + [9168] = {.count = 1, .reusable = true}, SHIFT(3864), + [9170] = {.count = 1, .reusable = false}, SHIFT(3865), + [9172] = {.count = 1, .reusable = true}, SHIFT(3865), + [9174] = {.count = 1, .reusable = true}, SHIFT(3866), + [9176] = {.count = 1, .reusable = true}, SHIFT(3867), + [9178] = {.count = 1, .reusable = true}, SHIFT(3868), + [9180] = {.count = 1, .reusable = true}, SHIFT(3869), + [9182] = {.count = 1, .reusable = true}, SHIFT(3871), + [9184] = {.count = 1, .reusable = false}, SHIFT(3873), + [9186] = {.count = 1, .reusable = false}, SHIFT(3874), + [9188] = {.count = 1, .reusable = true}, SHIFT(3876), + [9190] = {.count = 1, .reusable = true}, SHIFT(3877), + [9192] = {.count = 1, .reusable = false}, SHIFT(3878), + [9194] = {.count = 1, .reusable = true}, SHIFT(3878), + [9196] = {.count = 1, .reusable = true}, SHIFT(3879), + [9198] = {.count = 1, .reusable = true}, SHIFT(3880), + [9200] = {.count = 1, .reusable = true}, SHIFT(3881), + [9202] = {.count = 1, .reusable = false}, SHIFT(3882), + [9204] = {.count = 1, .reusable = true}, SHIFT(3882), + [9206] = {.count = 1, .reusable = true}, SHIFT(3886), + [9208] = {.count = 1, .reusable = true}, SHIFT(3887), + [9210] = {.count = 1, .reusable = true}, SHIFT(3888), + [9212] = {.count = 1, .reusable = true}, SHIFT(3889), + [9214] = {.count = 1, .reusable = true}, SHIFT(3890), + [9216] = {.count = 1, .reusable = false}, SHIFT(3892), + [9218] = {.count = 1, .reusable = false}, SHIFT(3893), + [9220] = {.count = 1, .reusable = true}, SHIFT(3894), + [9222] = {.count = 1, .reusable = true}, SHIFT(3895), + [9224] = {.count = 1, .reusable = true}, SHIFT(3896), + [9226] = {.count = 1, .reusable = false}, SHIFT(3897), + [9228] = {.count = 1, .reusable = true}, SHIFT(3897), + [9230] = {.count = 1, .reusable = true}, SHIFT(3898), + [9232] = {.count = 1, .reusable = false}, SHIFT(3900), + [9234] = {.count = 1, .reusable = true}, SHIFT(3900), + [9236] = {.count = 1, .reusable = true}, SHIFT(3899), + [9238] = {.count = 1, .reusable = true}, SHIFT(3901), + [9240] = {.count = 1, .reusable = false}, SHIFT(3903), + [9242] = {.count = 1, .reusable = true}, SHIFT(3903), + [9244] = {.count = 1, .reusable = true}, SHIFT(3902), + [9246] = {.count = 1, .reusable = true}, SHIFT(3904), + [9248] = {.count = 1, .reusable = true}, SHIFT(3905), + [9250] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3302), + [9253] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3303), + [9256] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3304), + [9259] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3305), + [9262] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3306), + [9265] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3307), + [9268] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3308), + [9271] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3309), + [9274] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3310), + [9277] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3663), + [9280] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3306), + [9283] = {.count = 1, .reusable = true}, SHIFT(3906), + [9285] = {.count = 1, .reusable = false}, SHIFT(3908), + [9287] = {.count = 1, .reusable = false}, SHIFT(3909), + [9289] = {.count = 1, .reusable = true}, SHIFT(3910), + [9291] = {.count = 1, .reusable = true}, SHIFT(3911), + [9293] = {.count = 1, .reusable = true}, SHIFT(3912), + [9295] = {.count = 1, .reusable = false}, SHIFT(3913), + [9297] = {.count = 1, .reusable = true}, SHIFT(3913), + [9299] = {.count = 1, .reusable = true}, SHIFT(3914), + [9301] = {.count = 1, .reusable = false}, SHIFT(3916), + [9303] = {.count = 1, .reusable = true}, SHIFT(3916), + [9305] = {.count = 1, .reusable = true}, SHIFT(3915), + [9307] = {.count = 1, .reusable = true}, SHIFT(3917), + [9309] = {.count = 1, .reusable = false}, SHIFT(3919), + [9311] = {.count = 1, .reusable = true}, SHIFT(3919), + [9313] = {.count = 1, .reusable = true}, SHIFT(3918), + [9315] = {.count = 1, .reusable = true}, SHIFT(3920), + [9317] = {.count = 1, .reusable = true}, SHIFT(3921), + [9319] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3313), + [9322] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3314), + [9325] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3315), + [9328] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3316), + [9331] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3317), + [9334] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3318), + [9337] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3319), + [9340] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3320), + [9343] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3679), + [9346] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3316), + [9349] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3322), + [9352] = {.count = 1, .reusable = false}, SHIFT(3922), + [9354] = {.count = 1, .reusable = true}, SHIFT(3923), + [9356] = {.count = 1, .reusable = false}, SHIFT(3924), + [9358] = {.count = 1, .reusable = true}, SHIFT(3925), + [9360] = {.count = 1, .reusable = true}, SHIFT(3927), + [9362] = {.count = 1, .reusable = true}, SHIFT(3928), + [9364] = {.count = 1, .reusable = false}, SHIFT(3930), + [9366] = {.count = 1, .reusable = true}, SHIFT(3930), + [9368] = {.count = 1, .reusable = true}, SHIFT(3929), + [9370] = {.count = 1, .reusable = false}, SHIFT(3932), + [9372] = {.count = 1, .reusable = true}, SHIFT(3932), + [9374] = {.count = 1, .reusable = true}, SHIFT(3931), + [9376] = {.count = 1, .reusable = true}, SHIFT(3933), + [9378] = {.count = 1, .reusable = true}, SHIFT(3934), + [9380] = {.count = 1, .reusable = false}, SHIFT(3935), + [9382] = {.count = 1, .reusable = true}, SHIFT(3935), + [9384] = {.count = 1, .reusable = true}, SHIFT(3936), + [9386] = {.count = 1, .reusable = true}, SHIFT(3937), + [9388] = {.count = 1, .reusable = true}, SHIFT(3938), + [9390] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3338), + [9393] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3342), + [9396] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3342), + [9399] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3343), + [9402] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(3346), + [9405] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(3347), + [9408] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2839), + [9411] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2840), + [9414] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(3348), + [9417] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2842), + [9420] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2843), + [9423] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2844), + [9426] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2845), + [9429] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(3348), + [9432] = {.count = 1, .reusable = false}, SHIFT(3940), + [9434] = {.count = 1, .reusable = true}, SHIFT(3940), + [9436] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), + [9438] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [9440] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [9442] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), + [9444] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), + [9446] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), + [9448] = {.count = 1, .reusable = true}, SHIFT(3941), + [9450] = {.count = 1, .reusable = true}, SHIFT(3946), + [9452] = {.count = 1, .reusable = true}, SHIFT(3948), + [9454] = {.count = 1, .reusable = true}, SHIFT(3949), + [9456] = {.count = 1, .reusable = true}, SHIFT(3951), + [9458] = {.count = 1, .reusable = true}, SHIFT(3952), + [9460] = {.count = 1, .reusable = true}, SHIFT(3953), + [9462] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 10), + [9464] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 10), + [9466] = {.count = 1, .reusable = true}, SHIFT(3955), + [9468] = {.count = 1, .reusable = true}, SHIFT(3956), + [9470] = {.count = 1, .reusable = true}, SHIFT(3957), + [9472] = {.count = 1, .reusable = false}, SHIFT(3958), + [9474] = {.count = 1, .reusable = true}, SHIFT(3958), + [9476] = {.count = 1, .reusable = false}, SHIFT(3959), + [9478] = {.count = 1, .reusable = true}, SHIFT(3959), + [9480] = {.count = 1, .reusable = true}, SHIFT(3960), + [9482] = {.count = 1, .reusable = true}, SHIFT(3961), + [9484] = {.count = 1, .reusable = true}, SHIFT(3962), + [9486] = {.count = 1, .reusable = true}, SHIFT(3963), + [9488] = {.count = 1, .reusable = true}, SHIFT(3964), + [9490] = {.count = 1, .reusable = true}, SHIFT(3965), + [9492] = {.count = 1, .reusable = true}, SHIFT(3966), + [9494] = {.count = 1, .reusable = true}, SHIFT(3967), + [9496] = {.count = 1, .reusable = false}, SHIFT(3968), + [9498] = {.count = 1, .reusable = true}, SHIFT(3968), + [9500] = {.count = 1, .reusable = false}, SHIFT(3969), + [9502] = {.count = 1, .reusable = true}, SHIFT(3969), + [9504] = {.count = 1, .reusable = true}, SHIFT(3970), + [9506] = {.count = 1, .reusable = true}, SHIFT(3971), + [9508] = {.count = 1, .reusable = true}, SHIFT(3972), + [9510] = {.count = 1, .reusable = true}, SHIFT(3973), + [9512] = {.count = 1, .reusable = false}, SHIFT(3974), + [9514] = {.count = 1, .reusable = true}, SHIFT(3974), + [9516] = {.count = 1, .reusable = false}, SHIFT(3975), + [9518] = {.count = 1, .reusable = true}, SHIFT(3975), + [9520] = {.count = 1, .reusable = true}, SHIFT(3976), + [9522] = {.count = 1, .reusable = true}, SHIFT(3977), + [9524] = {.count = 1, .reusable = true}, SHIFT(3978), + [9526] = {.count = 1, .reusable = false}, SHIFT(3979), + [9528] = {.count = 1, .reusable = true}, SHIFT(3980), + [9530] = {.count = 1, .reusable = true}, SHIFT(3982), + [9532] = {.count = 1, .reusable = true}, SHIFT(3983), + [9534] = {.count = 1, .reusable = false}, SHIFT(3984), + [9536] = {.count = 1, .reusable = true}, SHIFT(3984), + [9538] = {.count = 1, .reusable = true}, SHIFT(3985), + [9540] = {.count = 1, .reusable = false}, SHIFT(3986), + [9542] = {.count = 1, .reusable = true}, SHIFT(3986), + [9544] = {.count = 1, .reusable = true}, SHIFT(3987), + [9546] = {.count = 1, .reusable = false}, SHIFT(3988), + [9548] = {.count = 1, .reusable = true}, SHIFT(3988), + [9550] = {.count = 1, .reusable = true}, SHIFT(3989), + [9552] = {.count = 1, .reusable = true}, SHIFT(3990), + [9554] = {.count = 1, .reusable = true}, SHIFT(3991), + [9556] = {.count = 1, .reusable = false}, SHIFT(3992), + [9558] = {.count = 1, .reusable = true}, SHIFT(3992), + [9560] = {.count = 1, .reusable = false}, SHIFT(3993), + [9562] = {.count = 1, .reusable = true}, SHIFT(3993), + [9564] = {.count = 1, .reusable = true}, SHIFT(3994), + [9566] = {.count = 1, .reusable = true}, SHIFT(3995), + [9568] = {.count = 1, .reusable = true}, SHIFT(3996), + [9570] = {.count = 1, .reusable = true}, SHIFT(3997), + [9572] = {.count = 1, .reusable = false}, SHIFT(3998), + [9574] = {.count = 1, .reusable = true}, SHIFT(3998), + [9576] = {.count = 1, .reusable = false}, SHIFT(3999), + [9578] = {.count = 1, .reusable = true}, SHIFT(3999), + [9580] = {.count = 1, .reusable = true}, SHIFT(4000), + [9582] = {.count = 1, .reusable = true}, SHIFT(4001), + [9584] = {.count = 1, .reusable = true}, SHIFT(4002), + [9586] = {.count = 1, .reusable = true}, SHIFT(4003), + [9588] = {.count = 1, .reusable = true}, SHIFT(4004), + [9590] = {.count = 1, .reusable = true}, SHIFT(4005), + [9592] = {.count = 1, .reusable = true}, SHIFT(4006), + [9594] = {.count = 1, .reusable = true}, SHIFT(4007), + [9596] = {.count = 1, .reusable = true}, SHIFT(4008), + [9598] = {.count = 1, .reusable = false}, SHIFT(4010), + [9600] = {.count = 1, .reusable = false}, SHIFT(4011), + [9602] = {.count = 1, .reusable = true}, SHIFT(4012), + [9604] = {.count = 1, .reusable = true}, SHIFT(4013), + [9606] = {.count = 1, .reusable = true}, SHIFT(4014), + [9608] = {.count = 1, .reusable = false}, SHIFT(4015), + [9610] = {.count = 1, .reusable = true}, SHIFT(4015), + [9612] = {.count = 1, .reusable = true}, SHIFT(4016), + [9614] = {.count = 1, .reusable = false}, SHIFT(4018), + [9616] = {.count = 1, .reusable = true}, SHIFT(4018), + [9618] = {.count = 1, .reusable = true}, SHIFT(4017), + [9620] = {.count = 1, .reusable = true}, SHIFT(4019), + [9622] = {.count = 1, .reusable = false}, SHIFT(4021), + [9624] = {.count = 1, .reusable = true}, SHIFT(4021), + [9626] = {.count = 1, .reusable = true}, SHIFT(4020), + [9628] = {.count = 1, .reusable = true}, SHIFT(4022), + [9630] = {.count = 1, .reusable = true}, SHIFT(4023), + [9632] = {.count = 1, .reusable = true}, SHIFT(4024), + [9634] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3648), + [9637] = {.count = 1, .reusable = false}, SHIFT(4026), + [9639] = {.count = 1, .reusable = true}, SHIFT(4027), + [9641] = {.count = 1, .reusable = false}, SHIFT(4028), + [9643] = {.count = 1, .reusable = true}, SHIFT(4029), + [9645] = {.count = 1, .reusable = true}, SHIFT(4031), + [9647] = {.count = 1, .reusable = true}, SHIFT(4032), + [9649] = {.count = 1, .reusable = false}, SHIFT(4034), + [9651] = {.count = 1, .reusable = true}, SHIFT(4034), + [9653] = {.count = 1, .reusable = true}, SHIFT(4033), + [9655] = {.count = 1, .reusable = false}, SHIFT(4036), + [9657] = {.count = 1, .reusable = true}, SHIFT(4036), + [9659] = {.count = 1, .reusable = true}, SHIFT(4035), + [9661] = {.count = 1, .reusable = true}, SHIFT(4037), + [9663] = {.count = 1, .reusable = true}, SHIFT(4038), + [9665] = {.count = 1, .reusable = false}, SHIFT(4039), + [9667] = {.count = 1, .reusable = true}, SHIFT(4039), + [9669] = {.count = 1, .reusable = true}, SHIFT(4040), + [9671] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3664), + [9674] = {.count = 1, .reusable = false}, SHIFT(4041), + [9676] = {.count = 1, .reusable = true}, SHIFT(4042), + [9678] = {.count = 1, .reusable = false}, SHIFT(4043), + [9680] = {.count = 1, .reusable = true}, SHIFT(4044), + [9682] = {.count = 1, .reusable = true}, SHIFT(4046), + [9684] = {.count = 1, .reusable = true}, SHIFT(4047), + [9686] = {.count = 1, .reusable = false}, SHIFT(4049), + [9688] = {.count = 1, .reusable = true}, SHIFT(4049), + [9690] = {.count = 1, .reusable = true}, SHIFT(4048), + [9692] = {.count = 1, .reusable = false}, SHIFT(4051), + [9694] = {.count = 1, .reusable = true}, SHIFT(4051), + [9696] = {.count = 1, .reusable = true}, SHIFT(4050), + [9698] = {.count = 1, .reusable = true}, SHIFT(4052), + [9700] = {.count = 1, .reusable = true}, SHIFT(4053), + [9702] = {.count = 1, .reusable = false}, SHIFT(4054), + [9704] = {.count = 1, .reusable = true}, SHIFT(4054), + [9706] = {.count = 1, .reusable = true}, SHIFT(4055), + [9708] = {.count = 1, .reusable = true}, SHIFT(4056), + [9710] = {.count = 1, .reusable = true}, SHIFT(4057), + [9712] = {.count = 1, .reusable = false}, SHIFT(4058), + [9714] = {.count = 1, .reusable = true}, SHIFT(4059), + [9716] = {.count = 1, .reusable = true}, SHIFT(4061), + [9718] = {.count = 1, .reusable = true}, SHIFT(4062), + [9720] = {.count = 1, .reusable = false}, SHIFT(4063), + [9722] = {.count = 1, .reusable = true}, SHIFT(4063), + [9724] = {.count = 1, .reusable = true}, SHIFT(4064), + [9726] = {.count = 1, .reusable = false}, SHIFT(4065), + [9728] = {.count = 1, .reusable = true}, SHIFT(4065), + [9730] = {.count = 1, .reusable = true}, SHIFT(4066), + [9732] = {.count = 1, .reusable = false}, SHIFT(4067), + [9734] = {.count = 1, .reusable = true}, SHIFT(4067), + [9736] = {.count = 1, .reusable = true}, SHIFT(4070), + [9738] = {.count = 1, .reusable = true}, SHIFT(4071), + [9740] = {.count = 1, .reusable = true}, SHIFT(4073), + [9742] = {.count = 1, .reusable = true}, SHIFT(4074), + [9744] = {.count = 1, .reusable = true}, SHIFT(4075), + [9746] = {.count = 1, .reusable = true}, SHIFT(4076), + [9748] = {.count = 1, .reusable = true}, SHIFT(4077), + [9750] = {.count = 1, .reusable = true}, SHIFT(4078), + [9752] = {.count = 1, .reusable = true}, SHIFT(4079), + [9754] = {.count = 1, .reusable = true}, SHIFT(4080), + [9756] = {.count = 1, .reusable = true}, SHIFT(4081), + [9758] = {.count = 1, .reusable = false}, SHIFT(4082), + [9760] = {.count = 1, .reusable = true}, SHIFT(4082), + [9762] = {.count = 1, .reusable = false}, SHIFT(4083), + [9764] = {.count = 1, .reusable = true}, SHIFT(4083), + [9766] = {.count = 1, .reusable = true}, SHIFT(4084), + [9768] = {.count = 1, .reusable = true}, SHIFT(4085), + [9770] = {.count = 1, .reusable = true}, SHIFT(4086), + [9772] = {.count = 1, .reusable = true}, SHIFT(4087), + [9774] = {.count = 1, .reusable = true}, SHIFT(4088), + [9776] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3871), + [9779] = {.count = 1, .reusable = false}, SHIFT(4089), + [9781] = {.count = 1, .reusable = true}, SHIFT(4090), + [9783] = {.count = 1, .reusable = false}, SHIFT(4091), + [9785] = {.count = 1, .reusable = true}, SHIFT(4092), + [9787] = {.count = 1, .reusable = true}, SHIFT(4094), + [9789] = {.count = 1, .reusable = true}, SHIFT(4095), + [9791] = {.count = 1, .reusable = false}, SHIFT(4097), + [9793] = {.count = 1, .reusable = true}, SHIFT(4097), + [9795] = {.count = 1, .reusable = true}, SHIFT(4096), + [9797] = {.count = 1, .reusable = false}, SHIFT(4099), + [9799] = {.count = 1, .reusable = true}, SHIFT(4099), + [9801] = {.count = 1, .reusable = true}, SHIFT(4098), + [9803] = {.count = 1, .reusable = true}, SHIFT(4100), + [9805] = {.count = 1, .reusable = true}, SHIFT(4101), + [9807] = {.count = 1, .reusable = false}, SHIFT(4102), + [9809] = {.count = 1, .reusable = true}, SHIFT(4102), + [9811] = {.count = 1, .reusable = true}, SHIFT(4103), + [9813] = {.count = 1, .reusable = true}, SHIFT(4104), + [9815] = {.count = 1, .reusable = true}, SHIFT(4105), + [9817] = {.count = 1, .reusable = true}, SHIFT(4106), + [9819] = {.count = 1, .reusable = false}, SHIFT(4107), + [9821] = {.count = 1, .reusable = true}, SHIFT(4108), + [9823] = {.count = 1, .reusable = true}, SHIFT(4110), + [9825] = {.count = 1, .reusable = true}, SHIFT(4111), + [9827] = {.count = 1, .reusable = false}, SHIFT(4112), + [9829] = {.count = 1, .reusable = true}, SHIFT(4112), + [9831] = {.count = 1, .reusable = true}, SHIFT(4113), + [9833] = {.count = 1, .reusable = false}, SHIFT(4114), + [9835] = {.count = 1, .reusable = true}, SHIFT(4114), + [9837] = {.count = 1, .reusable = true}, SHIFT(4115), + [9839] = {.count = 1, .reusable = false}, SHIFT(4116), + [9841] = {.count = 1, .reusable = true}, SHIFT(4116), + [9843] = {.count = 1, .reusable = true}, SHIFT(4117), + [9845] = {.count = 1, .reusable = true}, SHIFT(4118), + [9847] = {.count = 1, .reusable = false}, SHIFT(4119), + [9849] = {.count = 1, .reusable = true}, SHIFT(4120), + [9851] = {.count = 1, .reusable = true}, SHIFT(4122), + [9853] = {.count = 1, .reusable = true}, SHIFT(4123), + [9855] = {.count = 1, .reusable = false}, SHIFT(4124), + [9857] = {.count = 1, .reusable = true}, SHIFT(4124), + [9859] = {.count = 1, .reusable = true}, SHIFT(4125), + [9861] = {.count = 1, .reusable = false}, SHIFT(4126), + [9863] = {.count = 1, .reusable = true}, SHIFT(4126), + [9865] = {.count = 1, .reusable = true}, SHIFT(4127), + [9867] = {.count = 1, .reusable = false}, SHIFT(4128), + [9869] = {.count = 1, .reusable = true}, SHIFT(4128), + [9871] = {.count = 1, .reusable = true}, SHIFT(4129), + [9873] = {.count = 1, .reusable = true}, SHIFT(4130), + [9875] = {.count = 1, .reusable = true}, SHIFT(4131), + [9877] = {.count = 1, .reusable = false}, SHIFT(4132), + [9879] = {.count = 1, .reusable = true}, SHIFT(4132), + [9881] = {.count = 1, .reusable = false}, SHIFT(4133), + [9883] = {.count = 1, .reusable = true}, SHIFT(4133), + [9885] = {.count = 1, .reusable = true}, SHIFT(4134), + [9887] = {.count = 1, .reusable = true}, SHIFT(4135), + [9889] = {.count = 1, .reusable = true}, SHIFT(4136), + [9891] = {.count = 1, .reusable = true}, SHIFT(4137), + [9893] = {.count = 1, .reusable = true}, SHIFT(4138), + [9895] = {.count = 1, .reusable = false}, SHIFT(4139), + [9897] = {.count = 1, .reusable = true}, SHIFT(4140), + [9899] = {.count = 1, .reusable = true}, SHIFT(4142), + [9901] = {.count = 1, .reusable = true}, SHIFT(4143), + [9903] = {.count = 1, .reusable = false}, SHIFT(4144), + [9905] = {.count = 1, .reusable = true}, SHIFT(4144), + [9907] = {.count = 1, .reusable = true}, SHIFT(4145), + [9909] = {.count = 1, .reusable = false}, SHIFT(4146), + [9911] = {.count = 1, .reusable = true}, SHIFT(4146), + [9913] = {.count = 1, .reusable = true}, SHIFT(4147), + [9915] = {.count = 1, .reusable = false}, SHIFT(4148), + [9917] = {.count = 1, .reusable = true}, SHIFT(4148), + [9919] = {.count = 1, .reusable = true}, SHIFT(4149), + [9921] = {.count = 1, .reusable = true}, SHIFT(4150), + [9923] = {.count = 1, .reusable = true}, SHIFT(4151), + [9925] = {.count = 1, .reusable = false}, SHIFT(4152), + [9927] = {.count = 1, .reusable = true}, SHIFT(4152), + [9929] = {.count = 1, .reusable = false}, SHIFT(4153), + [9931] = {.count = 1, .reusable = true}, SHIFT(4153), + [9933] = {.count = 1, .reusable = true}, SHIFT(4154), + [9935] = {.count = 1, .reusable = true}, SHIFT(4155), + [9937] = {.count = 1, .reusable = true}, SHIFT(4156), + [9939] = {.count = 1, .reusable = true}, SHIFT(4157), + [9941] = {.count = 1, .reusable = false}, SHIFT(4158), + [9943] = {.count = 1, .reusable = true}, SHIFT(4158), + [9945] = {.count = 1, .reusable = false}, SHIFT(4159), + [9947] = {.count = 1, .reusable = true}, SHIFT(4159), + [9949] = {.count = 1, .reusable = true}, SHIFT(4160), + [9951] = {.count = 1, .reusable = true}, SHIFT(4161), + [9953] = {.count = 1, .reusable = true}, SHIFT(4162), + [9955] = {.count = 1, .reusable = true}, SHIFT(4163), + [9957] = {.count = 1, .reusable = true}, SHIFT(4164), + [9959] = {.count = 1, .reusable = true}, SHIFT(4165), + [9961] = {.count = 1, .reusable = false}, SHIFT(4166), + [9963] = {.count = 1, .reusable = true}, SHIFT(4166), + [9965] = {.count = 1, .reusable = false}, SHIFT(4167), + [9967] = {.count = 1, .reusable = true}, SHIFT(4167), + [9969] = {.count = 1, .reusable = true}, SHIFT(4168), + [9971] = {.count = 1, .reusable = true}, SHIFT(4169), + [9973] = {.count = 1, .reusable = true}, SHIFT(4170), + [9975] = {.count = 1, .reusable = true}, SHIFT(4171), + [9977] = {.count = 1, .reusable = true}, SHIFT(4172), + [9979] = {.count = 1, .reusable = true}, SHIFT(4173), + [9981] = {.count = 1, .reusable = true}, SHIFT(4174), }; void *tree_sitter_bash_external_scanner_create();